我正在尝试在我的谷歌地图中使用经度纬度作为航点,但似乎无法正常工作。
这是我推动价值观的方式
waypts_mtlsheloc.push({
location: (45.658197,-73.636333), //I don't think I'm supposed to write this like that. But can't find the right way.
stopover: true
})
然后尝试像这样修改我的行
service.route({
origin: latlng_mtlsheloc[0],
destination: latlng_mtlsheloc[latlng_mtlsheloc.length - 1],
waypoints:waypts_mtlsheloc,
travelMode: google.maps.DirectionsTravelMode.DRIVING
}, function(result, status) {
console.log(status)
if (status == google.maps.DirectionsStatus.OK) {
path = path.concat(result.routes[0].overview_path);
line_mtlsheloc.setPath(result.routes[0].overview_path);
}
});
但它给了我一个错误“属性[航点]错误”,我尝试了不同的方法来记下位置,但似乎找不到正确的方法。