मैं GeoJSON सुविधाओं के साथ संयुक्त पत्रक का उपयोग कर रहा हूं। वहाँ एक तरीका है GeoJSON सुविधाओं लेबल (इस मामले में - बहुभुज)? इससे लेबल मिलने चाहिए
feature.properties.name
यह मेरा कोड है जहां मुझे लगता है कि मैं लेबल सम्मिलित कर सकता हूं:
function style(feature) {
return {
weight: 2,
opacity: 1,
color: 'white',
dashArray: '3',
fillOpacity: 0.7,
fillColor: getColor(feature.properties.coloring)
};
}