0
Sample displayed route on mapdirectionsService.route結果獲取所有標記的緯度經度值
我在google地圖上使用directionsService。如何獲取此路線上顯示的標記的緯度和經度值,我遇到了麻煩?
var request = {
origin: nodes[0],
destination: nodes[0],
waypoints: waypts,
optimizeWaypoints: true,
travelMode: google.maps.TravelMode[$('#travel-type').val()],
avoidHighways: parseInt($('#avoid-highways').val()) > 0 ? true : false,
avoidTolls: false
};
markerID = true;
directionsService.routes(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});;
你得到的錯誤是什麼? – oneNiceFriend
我沒有得到錯誤,我只是有一個問題,如何獲取我的地圖上顯示的directionsService上的每個標記latlng值。我嘗試了'response.routes [index] .overview_path',但它返回了很多latlng值。我不知道沿着路線標記的確切位置在哪裏 – emman