ฉันต้องการเปลี่ยนสไตล์บนเลเยอร์จุด GeoJSON ในแผนที่แผ่นพับ
ฉันใช้รหัสต่อไปนี้:
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);
ทุกอย่างทำงานได้ แต่มีเครื่องหมายสีน้ำเงินมาตรฐานเริ่มต้นบนแผนที่ของฉันเสมอ