传递给onEachFeature的标题未显示,并且没有错误

时间:2019-09-17 13:30:40

标签: leaflet ngx-leaflet

我正在尝试标记我的geojson,但是它们没有出现,并且控制台中没有错误,我使用的是angular 8和ngx-leaflet。

 this.maGeo  = {
          id: 'geoJSON',
          name: 'managementArea',
          enabled: true,

          layer: geoJSON(this.ma as any, { onEachFeature: (feature, layer: any) => {
            console.log('hello');
            marker(layer.getBounds().getCenter(), {
                icon: divIcon({
                  className: 'text-labels',
                  html: 'hello',
                  iconSize: [100,40]
                }),
                zIndexOffset: 9999
              });
          }})

        };

我只希望我的geojson /多边形带有标题标签,并且样式函数可以与onEachFeature一起使用。

0 个答案:

没有答案