Remove unnused imports

This commit is contained in:
Pieter Vander Vennet 2023-02-02 14:10:10 +01:00
parent d8d9487784
commit dfc7ba2114
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,6 @@ import Loc from "../../Models/Loc"
import BaseLayer from "../../Models/BaseLayer" import BaseLayer from "../../Models/BaseLayer"
import { UIEventSource } from "../../Logic/UIEventSource" import { UIEventSource } from "../../Logic/UIEventSource"
import { BBox } from "../../Logic/BBox" import { BBox } from "../../Logic/BBox"
import { deprecate } from "util"
export interface MinimapOptions { export interface MinimapOptions {
background?: UIEventSource<BaseLayer> background?: UIEventSource<BaseLayer>

View file

@ -23,7 +23,7 @@ import StrayClickHandler from "../../Logic/Actors/StrayClickHandler"
* The stray-click-hanlders adds a marker to the map if no feature was clicked. * The stray-click-hanlders adds a marker to the map if no feature was clicked.
* Shows the given uiToShow-element in the messagebox * Shows the given uiToShow-element in the messagebox
*/ */
export class StrayClickHandlerImplementation { class StrayClickHandlerImplementation {
private _lastMarker private _lastMarker
constructor( constructor(
@ -91,6 +91,7 @@ export class StrayClickHandlerImplementation {
}) })
} }
} }
export default class MinimapImplementation extends BaseUIElement implements MinimapObj { export default class MinimapImplementation extends BaseUIElement implements MinimapObj {
private static _nextId = 0 private static _nextId = 0
public readonly leafletMap: UIEventSource<Map> public readonly leafletMap: UIEventSource<Map>