forked from MapComplete/MapComplete
Fix changeset reuse for automaton
This commit is contained in:
parent
90fc0e0840
commit
0ae78f19f3
4 changed files with 50 additions and 49 deletions
|
@ -105,7 +105,9 @@ export default class OsmFeatureSource {
|
|||
// We only keep what is needed
|
||||
|
||||
geojson.features = geojson.features.filter(feature => this.allowedTags.matchesProperties(feature.properties))
|
||||
geojson.features.forEach(f => f.properties["_backend"] = this._backend)
|
||||
geojson.features.forEach(f => {
|
||||
f.properties["_backend"] = this._backend
|
||||
})
|
||||
|
||||
const index = Tiles.tile_index(z, x, y);
|
||||
new PerLayerFeatureSourceSplitter(this.filteredLayers,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue