我的传单版本为1.0.0 我正在尝试将ID添加到图层组选择器。 如何将自定义ID或任何其他属性添加到选择器复选框?
这是我的代码:
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);
}