改变一个圆的位置?

时间:2013-07-17 15:01:29

标签: google-maps-api-3

我想要一个圆形物体来改变位置,我会想象我和标记一样做 -

marker.setPosition(latlng);

所以 -

circle.setPosition(latlng);

但这不起作用。标记会改变位置,但圆圈不会。我能找到的就是这个链接 - https://developers.google.com/maps/articles/mvcfun

这似乎是最好的解决方法吗?我没有准备好通过它,所以我将尝试实现上述。

2 个答案:

答案 0 :(得分:9)

您需要更改圆圈的中心属性才能移动它(it doesn't have a position property

circle.setCenter(latlng)

https://developers.google.com/maps/documentation/javascript/reference#Circle

答案 1 :(得分:0)

只是上述答案的延伸

composer update --no-scripts