0
我正試圖在校園之間提供建築物之間的步行路線。當我使用下面的代碼時,開始和結束座標被放置在最近的命名道路上,而不是指定的特定路徑。Google地圖步行路線與javascript
var request = {
origin: "34.23974770397957,-118.53099968624116",
destination: "34.240064785369974,-118.52827992630006",
travelMode: google.maps.DirectionsTravelMode.WALKING
};
directionsService = new google.maps.DirectionsService();
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
你可以在這裏http://www.csun.edu/~kjm39451/maps/mapsError/main.html通過選擇下拉在這兩個領域看到任何問題。
我如何使用谷歌地圖API發出指令就像谷歌地圖呢?
非常感謝你。 –