有没有简单的解决方案来修复路由功能
var directionDisplay;
var directionsService = new google.maps.DirectionsService();
var map;
var digiLocation = { "lat" : "51.597336" , "long" : "-0.109035" };
$(document).ready(function() {
$("#direction-route").click(function(event){
event.preventDefault();
var locationStart = "turnpike lane"
calcRoute(locationStart)
});
var laLatLng;
initialize();
});
// Set pointer at the middle while resize
google.maps.event.addDomListener(window, "resize", function() {
var center = map.getCenter();
google.maps.event.trigger(map, "resize");
map.setCenter(center);
});
function calcRoute(locationStart){
var request = {
origin: locationStart,
destination:(digiLocation.lat, digiLocation.long),
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
myLatlng.setDirections(response);
}
});
}
function initialize() {
var myLatlng = new google.maps.LatLng(digiLocation.lat, digiLocation.long);
var myOptions = {
scrollwheel: false,
zoom: 16,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP,
styles: [ { "stylers": [{ "saturation": -100 } ]}]
};
map = new google.maps.Map(document.getElementById('digi-map'), myOptions);
marker = new google.maps.Marker({
position: myLatlng,
icon: 'img/digi-marker.png',
map: map
});
}
google.maps.event.addDomListener(window, 'load', initialize);
http://jsfiddle.net/sweetmaanu/qQjeB/
最佳答案
哦,男孩,这充满了错误! :-)
设置代码的方式myLatlng需要全局作用域,否则在calcRoute函数中不可用。
request.destination:new google.maps.LatLng(digiLocation.lat,digiLocation.long)
您永远不会设置directionsDisplay对象:
directionsDisplay = new google.maps.DirectionsRenderer();
directionsDisplay.setMap(map);
calcRoute应该包含以下行:directionsDisplay.setDirections(response);
参见工作提琴:http://jsfiddle.net/manishie/5fGEZ/
javascript:
var directionDisplay;
var directionsService = new google.maps.DirectionsService();
var map;
var digiLocation = {
"lat": "51.597336",
"long": "-0.109035"
};
var myLatlng = new google.maps.LatLng(digiLocation.lat, digiLocation.long);
$(document).ready(function () {
$("#direction-route").click(function (event) {
event.preventDefault();
var locationStart = "turnpike lane"
calcRoute(locationStart)
});
var laLatLng;
initialize();
});
// Set pointer at the middle while resize
google.maps.event.addDomListener(window, "resize", function () {
var center = map.getCenter();
google.maps.event.trigger(map, "resize");
map.setCenter(center);
});
function calcRoute(locationStart) {
var request = {
origin: locationStart,
destination: new google.maps.LatLng(digiLocation.lat, digiLocation.long),
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function (response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}
function initialize() {
var myOptions = {
scrollwheel: false,
zoom: 16,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP,
styles: [{
"stylers": [{
"saturation": -100
}]
}]
};
map = new google.maps.Map(document.getElementById('digi-map'), myOptions);
marker = new google.maps.Marker({
position: myLatlng,
icon: 'img/digi-marker.png',
map: map
});
directionsDisplay = new google.maps.DirectionsRenderer();
directionsDisplay.setMap(map);
}
google.maps.event.addDomListener(window, 'load', initialize);
关于javascript - 谷歌 map API:如何显示行车路线?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19193471/