कैटलॉग में जियोजॉन लेयर पर डिफ़ॉल्ट शैली को बदलना?


9

मुझे एक अंक में शैली को बदलने की जरूरत है जार्जसन परत एक मानचित्र में।

मैं निम्नलिखित कोड का उपयोग कर रहा हूं:

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);                         

सभी काम कर रहे हैं लेकिन मेरे नक्शे पर हमेशा मानक डिफ़ॉल्ट नीला मार्कर है।

जवाबों:


15

बिंदु मार्करों को बदलने के लिए, आपको pointToLayerफ़ंक्शन का उपयोग करना चाहिए । उदाहरण पृष्ठ देखें ।

var geojsonMarkerOptions = {
    radius: 8,
    fillColor: "#ff7800",
    color: "#000",
    weight: 1,
    opacity: 1,
    fillOpacity: 0.8
};

L.geoJson(someGeojsonFeature, {
    pointToLayer: function (feature, latlng) {
        return L.circleMarker(latlng, geojsonMarkerOptions);
    }
}).addTo(map);
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.