Remove obsolete console.logs
This commit is contained in:
parent
7ca7612960
commit
95d6244008
2 changed files with 1 additions and 3 deletions
|
@ -64,7 +64,6 @@ export default class ReplaceGeometryAction extends OsmChangeAction {
|
||||||
for (let j = i + 1; j < coordinates.length; j++) {
|
for (let j = i + 1; j < coordinates.length; j++) {
|
||||||
const d = GeoOperations.distanceBetween(coordinates[i], coordinates[j])
|
const d = GeoOperations.distanceBetween(coordinates[i], coordinates[j])
|
||||||
if (d < 0.1) {
|
if (d < 0.1) {
|
||||||
console.log("Identical coordinates detected: ", i, " and ", j, ": ", coordinates[i], coordinates[j], "distance is", d)
|
|
||||||
this.identicalTo[j] = i
|
this.identicalTo[j] = i
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -77,7 +76,7 @@ export default class ReplaceGeometryAction extends OsmChangeAction {
|
||||||
|
|
||||||
public async getPreview(): Promise<FeatureSource> {
|
public async getPreview(): Promise<FeatureSource> {
|
||||||
const {closestIds, allNodesById} = await this.GetClosestIds();
|
const {closestIds, allNodesById} = await this.GetClosestIds();
|
||||||
console.log("Generating preview, identicals are ",)
|
console.debug("Generating preview, identicals are ",)
|
||||||
const preview = closestIds.map((newId, i) => {
|
const preview = closestIds.map((newId, i) => {
|
||||||
if (this.identicalTo[i] !== undefined) {
|
if (this.identicalTo[i] !== undefined) {
|
||||||
return undefined
|
return undefined
|
||||||
|
|
|
@ -62,7 +62,6 @@ export default class LeftControls extends Combine {
|
||||||
const elem = currentViewFL.layerDef.mapRendering[0]?.GenerateLeafletStyle(new UIEventSource(tags), false, {
|
const elem = currentViewFL.layerDef.mapRendering[0]?.GenerateLeafletStyle(new UIEventSource(tags), false, {
|
||||||
noSize: true
|
noSize: true
|
||||||
})?.html
|
})?.html
|
||||||
console.log("Elem is ", elem, "for", tags)
|
|
||||||
if (elem === undefined) {
|
if (elem === undefined) {
|
||||||
return defaultIcon
|
return defaultIcon
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue