我正在研究 GMap 定制。我想要一个浮动圆圈穿过一条折线。我的问题是,我们能否在特定间隔后获得折线中的所有 LatLng 点,例如,所有 LatLng 间隔为 100 米。我的折线代码是:
/** polyline **/
var tpath = [
new google.maps.LatLng(15.508718,73.839337),
new google.maps.LatLng(15.511457,73.839165)
];
var travelPath = new google.maps.Polyline({
path : tpath,
map : map,
geodesic : true,
strokeColor : '#000',
strokeOpacity : 0.7,
strokeWeight : 1
});
我只得到最后的 LatLng 值。我想要跨折线的值。
提前致谢。