Bir broşür haritasında bir nokta GeoJSON katmanı üzerinde tarzı değiştirmek gerekiyor.
Aşağıdaki kodu kullanıyorum:
function onEachFeature(feature, layer) {
if (feature.properties && feature.properties.popupContent) {
layer.bindPopup(feature.properties.popupContent);
}
}
var myStyle = {
"color": "#ff7800",
"weight": 5,
"opacity": 0.65
};
myGeoJSONLayer = L.geoJson(myGeoJSON, {
style: myStyle,
onEachFeature: onEachFeature,
});
myGeoJSONLayer.addTo(map);
Her şey çalışıyor, ancak haritamda her zaman standart varsayılan mavi işaretçi var.