Leaflet 맵에서 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);
모두 작동하지만 내지도에는 항상 표준 기본 파란색 마커가 있습니다.