0
我使用這段代碼獲取兩個地點之間的路線,但此代碼僅顯示地圖,並未繪製任何方向。Google地圖獲取路線
$('#map_canvas').gmap({
'center': new google.maps.LatLng(32.498467,74.542126)
});
$('#map_canvas').gmap('loadDirections', 'panel', {
'origin': new google.maps.LatLng(32.498467,74.542126),
'destination': new google.maps.LatLng(29.070574,76.112457),
'travelMode': google.maps.DirectionsTravelMode.DRIVING
});
等待幫助。
在此先感謝。
,使其接受兩個可以請你修改lat,lng值並顯示結果。 –
@ h_a86我剛剛在我們使用的一個頁面上測試了它,並且它也處理了經緯度值。 (例如:'32.498467,74.542126')。所以只需將其設置爲「原點」。它可能也適用於google.LatLng對象。 – Andy