Add friendly confirm message on newly created points

This commit is contained in:
Pieter Vander Vennet 2022-11-07 23:12:31 +01:00
parent 5c28ce2995
commit ccf3bb3993
6 changed files with 63 additions and 30 deletions

View file

@ -3,9 +3,11 @@
*/
import { UIEventSource } from "./UIEventSource"
import { GeoJSONObject } from "@turf/turf"
import {Feature, Point} from "geojson";
import {OsmTags} from "../Models/OsmFeature";
export class ElementStorage {
public ContainingFeatures = new Map<string, any>()
public ContainingFeatures = new Map<string, Feature<Point, OsmTags >>()
private _elements = new Map<string, UIEventSource<any>>()
constructor() {}