是否可以在DirectionsService路线的起点之后的某个“km”之后放置一个标记?

时间:2012-10-02 14:57:46

标签: google-maps google-maps-api-3

这是我的代码:

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公里后放一个标记:是否可能?

1 个答案:

答案 0 :(得分:1)

这是一个在路线上放置两个标记的示例(一个在9.5km处,一个在64.8km处):

http://www.geocodezip.com/v3_GoogleEx_directions-waypoints_kmmarkersC.html

(所以,是的,有可能)

此示例是在geometry library发布之前创建的,可能可以重写以使用它。