这是我的代码:
var request = {
origin: start,
destination: end,
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function (response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
现在,我想在点origin: start
200公里后放一个标记:是否可能?
答案 0 :(得分:1)
这是一个在路线上放置两个标记的示例(一个在9.5km处,一个在64.8km处):
http://www.geocodezip.com/v3_GoogleEx_directions-waypoints_kmmarkersC.html
(所以,是的,有可能)
此示例是在geometry library发布之前创建的,可能可以重写以使用它。