小叶同心圆(角2)

时间:2018-02-28 15:09:53

标签: javascript angular leaflet

我需要绘制以映射5个同心圆,如甜甜圈,并在每个多边形的“鼠标悬停”上使用事件处理程序。 我不能用circle()方法做到这一点,所以我认为通过GeoJSON来做 我该怎么做? 我有这个,但这不起作用 尝试学习这种方法以进一步实现

    let mp = {
  "type": "Feature",
  "geometry": {
    "type": "Point",
    "coordinates": [
      [
        [
          [43.30467224121094, 56.696589064251185],
        ],

      ]
    ]
  },
  "properties": {
    'radius': 10000,
    'style': {
      color: "black",
      opacity: 1,
      fillColor: "red",
      fillOpacity: 1
    },
  }
};

L.GeoJSON(mp, {
  style: function(feature) {
    return feature.properties.style
  }
}).addTo(this.MAP);

0 个答案:

没有答案