在Leaflet中将自定义ID添加到LayerGroup选择器复选框

时间:2019-02-06 15:38:56

标签: javascript jquery leaflet gis

我的传单版本为1.0.0 我正在尝试将ID添加到图层组选择器。 如何将自定义ID或任何其他属性添加到选择器复选框?

enter image description here

这是我的代码:

var parkingExisting = new L.LayerGroup();

// Existing Parking
var parkingExistingStyle = {
    color: "#418532",
    fillColor: "#418532",
    fillOpacity: 0.4,
    weight: 1
};

function parkingExistingJSONLoaded(){
    L.geoJSON(parkingExistingDataSet, {
        style: parkingExistingStyle,
    }).addTo(parkingExisting);
}

0 个答案:

没有答案