Remove unused things

This commit is contained in:
James Lyne 2020-12-12 22:05:09 +00:00
parent b9b58399f6
commit ac9e52ac96
2 changed files with 0 additions and 25 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -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() {
}
}