import {Img} from "../../UI/Img"; import {Tag} from "../../Logic/Tags"; import {TagRenderingOptions} from "../TagRenderingOptions"; export class OsmLink extends TagRenderingOptions { static options = { freeform: { key: "id", template: "$$$", renderTemplate: "" + Img.osmAbstractLogo + "", placeholder: "", }, mappings: [ {k: new Tag("id", "node/-1"), txt: "Uploading"} ] } constructor() { super(OsmLink.options); } }