-1

这是我的代码:

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);
    }
});

现在,我想在距离该点 200 公里后放置一个标记origin: start:这可能吗?

4

1 回答 1

2

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

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

(所以,是的,这是可能的)

此示例是在几何库发布之前创建的,并且可能可以重写以使用它。

于 2012-10-02T15:18:54.627 回答