Google Maps Api将多边形更改为圆形

时间:2019-04-06 09:09:53

标签: javascript google-maps google-api leaflet

我有一些带有绘制多边形的点的代码。

代码如下:

  app.pts = [
    [33.644631, -70.610453],
    [33.637884, -70.608253],
    [33.637566, -70.608704],
    [33.638933, -70.610935],
    [33.641044, -70.614036],
    [33.641386, -70.614176]
 ];

 app.map = L.map('map').setView(app.pt, 15);


 app.polygon = L.polygon(app.pts, {
    color: '#00ff00',
    opacity: 0.6,
    fillOpacity: 0.2
 });

我想要的是一个圆圈,所以我的问题是:

如何修改此代码,以便可以绘制圆形而不是多边形?

该圆的半径为50米,并以33.644631,-70.610453为中心

1 个答案:

答案 0 :(得分:1)

the documentation

app.circle = L.circle([33.644631, -70.610453], {radius: 50});