1
リーフレットのポイントGeoJSONレイヤーのデフォルトスタイルを変更しますか?
リーフレットマップのポイント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); すべてが機能していますが、マップには常に標準のデフォルトの青いマーカーがあります。