gpt4 book ai didi

jquery - GMaps.js : Trace route between two markers set by geocoding

转载 作者:行者123 更新时间:2023-12-01 01:17:10 24 4
gpt4 key购买 nike

我正在使用这个:http://hpneo.github.com/gmaps/examples.html

我有两个输入,我在其中输入了地址,并且想要跟踪两点之间的路线。我可以添加两个标记,但我不知道如何绘制路线。

知道如何做到这一点吗?

谢谢!

这是我的代码...

    GMaps.geocode({
address: address_from,
callback: function(results, status) {
if (status == 'OK') {
var address_from = results[0].geometry.location;
map.addMarker({
lat: address_from.lat(),
lng: address_from.lng()
});
}
}
});

GMaps.geocode({
address: address_to,
callback: function(results, status) {
if (status == 'OK') {
var address_to = results[0].geometry.location;
map.addMarker({
lat: address_to.lat(),
lng: address_to.lng()
});
}
}
});

map.drawRoute({
origin: [address_from.lat(), address_from.lng()],
destination: [address_to.lat(), address_to.lng()],
travelMode: 'driving',
strokeColor: '#131540',
strokeOpacity: 0.6,
strokeWeight: 6
});

最佳答案

This example从这里similar question通过点击获取 map 上两个标记之间的方向(直接使用 Google Maps API v3)。

关于jquery - GMaps.js : Trace route between two markers set by geocoding,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11832458/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com