我想用数据填充 GeoJson 图层,然后动态过滤要显示的功能。
我已经让过滤器功能工作,但我不知道如何更改过滤器然后刷新图层。
添加数据后,有什么方法可以更新过滤器?
我想用数据填充 GeoJson 图层,然后动态过滤要显示的功能。
我已经让过滤器功能工作,但我不知道如何更改过滤器然后刷新图层。
添加数据后,有什么方法可以更新过滤器?
我通过根据特征的属性将每种特征类型添加到不同的LayerGroup来做到这一点。例如
地理JSON
var data =[
{
type: "Feature",
properties: {
type: "type1"
},
geometry: {
type: "Point",
coordinates: [-1.252,52.107]
}
},
{
type: "Feature",
properties: {
type: "type2"
},
geometry: {
type: "Point",
coordinates: [-2.252,54.107]
}
}
];
创建GeoJSON层
//array to store layers for each feature type
var mapLayerGroups = [];
//draw GEOJSON - don't add the GEOJSON layer to the map here
L.geoJson(data, {onEachFeature: onEachFeature})//.addTo(map);
/*
*for all features create a layerGroup for each feature type and add the feature to the layerGroup
*/
function onEachFeature(feature, featureLayer) {
//does layerGroup already exist? if not create it and add to map
var lg = mapLayerGroups[feature.properties.type];
if (lg === undefined) {
lg = new L.layerGroup();
//add the layer to the map
lg.addTo(map);
//store layer
mapLayerGroups[feature.properties.type] = lg;
}
//add the feature to the layer
lg.addLayer(featureLayer);
}
然后您可以调用 Leaflet map.addLayer/removeLayer函数,例如
//Show layerGroup with feature of "type1"
showLayer("type1");
/*
* show/hide layerGroup
*/
function showLayer(id) {
var lg = mapLayerGroups[id];
map.addLayer(lg);
}
function hideLayer(id) {
var lg = mapLayerGroups[id];
map.removeLayer(lg);
}
在GeoJSON addData
方法中,首先检查数据是否是特征的集合,在这种情况下,每个特征都会调用该方法。
然后按如下方式应用过滤器:
var options = this.options;
if (options.filter && !options.filter(geojson)) { return; }
因此,如果过滤器在您添加数据时将其过滤掉,则不会在任何地方存储或记住它。更改过滤器不会使数据突然重新出现。
您可以保留对 geojson 的引用并在更改过滤器时重新初始化图层。
请参见下面的示例,您有一张地图和一个 myBus 图层。
map.removeLayer(myBus);
...add your data edit something ...
myBus.addTo(map);