标签: google-maps google-polyline
我是首发。
看看这个:
poly = new google.maps.Polyline({map: map}); poly.setOptions({strokeColor: 'blue', strokeOpacity: 0.5, strokeWeight: 4}); poly.setPath(path);
此代码为我绘制折线。但据我所知,我们必须通过setMap(map)绘制。 那么setMap和setPath有什么区别? 谢谢。