forked from MapComplete/MapComplete
Fix: actually include _all_ features
This commit is contained in:
parent
595503cfc3
commit
8f7b731d29
1 changed files with 3 additions and 3 deletions
|
@ -29,16 +29,16 @@ export default class NearbyFeatureSource implements FeatureSource {
|
||||||
|
|
||||||
this.features = Stores.ListStabilized(this._result)
|
this.features = Stores.ListStabilized(this._result)
|
||||||
|
|
||||||
sources.forEach((source, layer) => {})
|
sources.forEach((source, layer) => {
|
||||||
|
this.registerSource(source, layer)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
public registerSource(source: FeatureSource, layerId: string) {
|
public registerSource(source: FeatureSource, layerId: string) {
|
||||||
let minzoom = 999
|
|
||||||
const flayer = this._layerState?.filteredLayers.get(layerId)
|
const flayer = this._layerState?.filteredLayers.get(layerId)
|
||||||
if (!flayer) {
|
if (!flayer) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
minzoom = Math.min(minzoom, flayer.layerDef.minzoom)
|
|
||||||
const calcSource = this.createSource(
|
const calcSource = this.createSource(
|
||||||
source.features,
|
source.features,
|
||||||
flayer.layerDef.minzoom,
|
flayer.layerDef.minzoom,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue