LiveAtlas/src/leaflet/marker/GenericMarker.ts

13 lines
296 B
TypeScript
Raw Normal View History

2020-12-14 15:48:58 +00:00
import {MarkerOptions, Marker, Util, LatLngExpression} from 'leaflet';
export class GenericMarker extends Marker {
constructor(latLng: LatLngExpression, options: MarkerOptions) {
super(latLng, options);
Util.setOptions(this, options);
}
_resetZIndex() {
//Don't change the zindex
}
}