我正在網絡應用程序中,我需要添加取貨地址,送客地址和一個訪問區域的數組,通過它用戶將在拾取和下降之間移動地址。我所做的是路線圖,並計算出取車和下車地址之間的距離,但我無法將取車和下車的訪問地點匹配。 這裏是我的代碼,如果我任何人都可以給我一個想法如何做到這一點:計算距離並顯示路線谷歌地圖上的航點
Web表單
<form class="uk-form" name="myForm" id="myForm">
<input id="pickup" class="controls" name="pickup" type="text"/>
<input id="dropoff" class="controls" name="dropoff" type="text"/>
<input id="visitarea" class="controls" name="visitarea" type="text"/>
<input id="calculatefare" class="calculatefare" type="button" value="Calculate Fare" />
</form>
JavaScript函數
function initAutocomplete() {
var origin_place_id = null;
var destination_place_id = null;
var visitarea_place_id = null;
var travel_mode = google.maps.TravelMode.DRIVING;
var map = new google.maps.Map(document.getElementById('map-canvas'), {
mapTypeControl: false,
center: {lat: 30.3753, lng: 69.3451},
zoom: 7,
scrollwheel: false,
navigationControl: false,
mapTypeControl: false,
scaleControl: false
});
var directionsService = new google.maps.DirectionsService;
var directionsDisplay = new google.maps.DirectionsRenderer;
directionsDisplay.setMap(map);
var pickup = document.getElementById('pickup');
var dropoff = document.getElementById('dropoff');
var visitarea = document.getElementById('visitarea');
var options = {
componentRestrictions: {country: 'pk'}//Pakistan only
};
var origin_autocomplete = new google.maps.places.Autocomplete(pickup,options);
origin_autocomplete.bindTo('bounds', map);
var destination_autocomplete = new google.maps.places.Autocomplete(dropoff,options);
destination_autocomplete.bindTo('bounds', map);
var destination_autocomplete = new google.maps.places.Autocomplete(visitarea,options);
destination_autocomplete.bindTo('bounds', map);
// Sets a listener on a radio button to change the filter type on Places
// Autocomplete.
function expandViewportToFitPlace(map, place) {
if (place.geometry.viewport) {
map.fitBounds(place.geometry.viewport);
} else {
map.setCenter(place.geometry.location);
map.setZoom(17);
}
}
origin_autocomplete.addListener('place_changed', function() {
var place = origin_autocomplete.getPlace();
if (!place.geometry) {
window.alert("Autocomplete's returned place contains no geometry");
return;
}
expandViewportToFitPlace(map, place);
// If the place has a geometry, store its place ID and route if we have
// the other place ID
origin_place_id = place.place_id;
route(origin_place_id, destination_place_id, visitarea_place_id, travel_mode,
directionsService, directionsDisplay);
});
destination_autocomplete.addListener('place_changed', function() {
var place = destination_autocomplete.getPlace();
if (!place.geometry) {
window.alert("Autocomplete's returned place contains no geometry");
return;
}
expandViewportToFitPlace(map, place);
// If the place has a geometry, store its place ID and route if we have
// the other place ID
destination_place_id = place.place_id;
route(origin_place_id, destination_place_id, visitarea_place_id, travel_mode,
directionsService, directionsDisplay);
});
visitarea_autocomplete.addListener('place_changed', function() {
var place = visitarea_autocomplete.getPlace();
if (!place.geometry) {
window.alert("Autocomplete's returned place contains no geometry");
return;
}
expandViewportToFitPlace(map, place);
// If the place has a geometry, store its place ID and route if we have
// the other place ID
visitarea_place_id = place.place_id;
route(origin_place_id, destination_place_id, visitarea_place_id, travel_mode,
directionsService, directionsDisplay);
});
function route(origin_place_id, destination_place_id, visitarea_place_id, travel_mode,
directionsService, directionsDisplay) {
if (!origin_place_id || !destination_place_id) {
return;
}
directionsService.route({
origin: {'placeId': origin_place_id},
destination: {'placeId': destination_place_id},
visitarea: {'placeId': visitarea_place_id},
optimizeWaypoints: true,
travelMode: travel_mode
}, function(response, status) {
if (status === google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
var d = response.routes[0].legs[0].distance.text;
document.getElementById('km').value = d;
} else {
window.alert('Directions request failed due to ' + status);
}
});
}
}
此代碼不能正常工作由於網頁表單中的訪問區域輸入字段以及javascript函數中的所有其他相關內容,但是如果刪除了所有與訪問區域相關的內容,則拾取和下載地址ss工作正常,並給我所需的輸出。
在這方面的任何幫助?
很不錯的!如果您沒有輸入航點,則會發出錯誤,但除此之外,完美地起作用。 –