forked from MapComplete/MapComplete
Chore: remove import and console log
This commit is contained in:
parent
1a8c63ad95
commit
2a65a9f761
1 changed files with 11 additions and 10 deletions
|
@ -9,7 +9,6 @@ import { IndexedFeatureSource } from "./FeatureSource/FeatureSource"
|
|||
import OsmObjectDownloader from "./Osm/OsmObjectDownloader"
|
||||
import { Utils } from "../Utils"
|
||||
import { Store, UIEventSource } from "./UIEventSource"
|
||||
import { selectDefault } from "../Utils/selectDefault"
|
||||
|
||||
/**
|
||||
* Metatagging adds various tags to the elements, e.g. lat, lon, surface area, ...
|
||||
|
@ -130,7 +129,7 @@ export default class MetaTagging {
|
|||
state.featureProperties,
|
||||
{
|
||||
includeDates: !lightUpdate,
|
||||
evaluateStrict: !lightUpdate,
|
||||
evaluateStrict: !lightUpdate
|
||||
}
|
||||
)
|
||||
}
|
||||
|
@ -198,7 +197,7 @@ export default class MetaTagging {
|
|||
for (let i = 0; i < features.length; i++) {
|
||||
const feature = features[i]
|
||||
const tags = featurePropertiesStores?.getStore(feature.properties.id)
|
||||
if(!tags){
|
||||
if (!tags) {
|
||||
continue
|
||||
}
|
||||
let somethingChanged = false
|
||||
|
@ -281,7 +280,9 @@ export default class MetaTagging {
|
|||
atLeastOneFeatureChanged = true
|
||||
}
|
||||
}
|
||||
if (strictlyEvaluated > 0) {
|
||||
console.debug("Strictly evaluated ", strictlyEvaluated, " values") // Do not remove this
|
||||
}
|
||||
return atLeastOneFeatureChanged
|
||||
}
|
||||
|
||||
|
@ -304,7 +305,7 @@ export default class MetaTagging {
|
|||
return []
|
||||
}
|
||||
return [state.perLayer.get(layerId).GetFeaturesWithin(bbox)]
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue