我正在尝试标记我的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一起使用。