diff --git a/src/assets/images/dynmap.ico b/src/assets/images/dynmap.ico deleted file mode 100644 index 035da52..0000000 Binary files a/src/assets/images/dynmap.ico and /dev/null differ diff --git a/src/leaflet/marker/DynmapMarker.ts b/src/leaflet/marker/DynmapMarker.ts deleted file mode 100644 index 3ce119c..0000000 --- a/src/leaflet/marker/DynmapMarker.ts +++ /dev/null @@ -1,25 +0,0 @@ -import L, {LatLng} from "leaflet"; - -export class DynmapMarker extends L.Marker { - options: { - image: null, - showLabel: true, - label: "", - minZoom: 0, - maxZoom: Infinity, - } - - constructor(latlng: LatLng, options) { - options.icon = new LabelledIcon(player, { - smallFace: options.smallFace, - showSkinFace: options.showSkinFace, - showBody: options.showBody, - showHealth: options.showHealth, - }); - super(latlng, options); - } - - update() { - - } -}