用户使用向我的地图添加标记的 Google 地点 API 搜索我的地图。我在每个标记信息窗口内都有一个单击事件,以获取到该标记的方向。 如何将所选标记的坐标传递给我的 google 路线服务请求?
到目前为止,我声明var placeLoc = null;
为一个全局变量。我placeLoc=place.geometry.location;
在我的创建标记函数中定义。然后我有:
function calcRoute() {
var start = myLatLng;
var end = placeLoc;
var request = {
origin: start,
destination: end,
travelMode: google.maps.DirectionsTravelMode.BICYCLING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}
该函数将方向呈现到错误的标记。我猜它只是为搜索后返回的数组中的第一个标记提供方向,而不是我选择的实际标记。我如何提供路线请求选定标记的坐标?
下面是将搜索结果放入 place 变量的代码:
google.maps.event.addListener(searchBox, 'places_changed', function() {
var places = searchBox.getPlaces();
// alert("getPlaces returns "+places.length+" places");
for (var i = 0; i < gmarkers.length; i++) {
gmarkers[i].setMap(null);
}
gmarkers = [];
var bounds = new google.maps.LatLngBounds();
for (var i = 0, place; place = places[i]; i++) {
var place = places[i];
createMarker(place);
bounds.extend(place.geometry.location);
}
map.fitBounds(bounds);
// if (markers.length == 1) map.setZoom(17);
});