我想在点击时更改我的出发地和目的地(纬度和经度),这是我的实际代码
ser.route({ 'origin': new google.maps.LatLng(-23.563594, -46.654129), 'destination': new google.maps.LatLng(
-23.563672, -46.640396), 'travelMode': google.maps.DirectionsTravelMode.DRIVING},function(res,sts) {
if(sts=='OK')ren.setDirections(res);
})
我想改变这个值来绘制一条路径,例如,我点击一个点,他们点击另一个点,所以它得到这个值并绘制一条路径。
我有一条路径,但只有 A 点和 B 点,我想在地图上创建这些点。