在获得路线后,我试图在谷歌地图上获得一条折线。我想使用v3_epoly沿折线放置标记。
我找到了这篇文章,它有效,但我发现它并不完全准确。在图像中,谷歌方向是浅蓝色,折线是深蓝色:
你可以看到它非常不准确。
这是代码:
directions_service.route(req, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
path = response.routes[0].overview_path;
$(path).each(function(index, item) {
route.getPath().push(item);
bounds.extend(item);
});
route.setMap(map);
map.fitBounds(bounds);
directions_display.setDirections(response);
}
});
任何人都知道如何提高这种准确性或以另一种方式获得折线?
编辑:
我想添加让它工作的代码:
legs = response.routes[0].legs;
$(legs).each(function(index, item) {
steps = item.steps;
$(steps).each(function(index, item) {
path = item.path;
$(path).each(function(index, item) {
route.getPath().push(item);
counter++;
bounds.extend(item);
});
});
});