LiveAtlas/src/util/points.ts

83 lines
2.2 KiB
TypeScript
Raw Normal View History

2022-01-14 20:51:47 +00:00
/*
2022-02-21 21:53:49 +00:00
* Copyright 2022 James Lyne
2022-01-14 20:51:47 +00:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {LeafletMouseEvent, Marker} from "leaflet";
import {GenericIcon} from "@/leaflet/icon/GenericIcon";
import {GenericMarker} from "@/leaflet/marker/GenericMarker";
import {LiveAtlasPointMarker} from "@/index";
2022-01-15 18:45:01 +00:00
export const createPointLayer = (options: LiveAtlasPointMarker, converter: Function): Marker => {
2022-01-14 20:51:47 +00:00
const marker = new GenericMarker(converter(options.location), options);
marker.on('click', (e: LeafletMouseEvent) => {
if(!e.target.getPopup() || e.target.isPopupOpen()) {
e.target._map.panTo(e.target.getLatLng());
}
});
if(options.popup) {
marker.bindPopup(() => createPopup(options));
}
return marker;
};
2022-01-15 18:45:01 +00:00
export const updatePointLayer = (marker: Marker | undefined, options: LiveAtlasPointMarker, converter: Function): Marker => {
2022-01-14 20:51:47 +00:00
if (!marker) {
2022-01-15 18:45:01 +00:00
return createPointLayer(options, converter);
2022-01-14 20:51:47 +00:00
}
const oldLocation = marker.getLatLng(),
newLocation = converter(options.location);
if(!oldLocation.equals(newLocation)) {
marker.setLatLng(newLocation);
}
if(marker instanceof GenericMarker) {
const icon = marker.getIcon();
if(icon && icon instanceof GenericIcon) {
icon.update({
icon: options.icon,
label: options.tooltipHTML || options.tooltip,
2022-01-14 20:51:47 +00:00
iconSize: options.dimensions,
isHtml: !!options.tooltipHTML,
});
}
}
marker.closePopup();
marker.unbindPopup();
if(options.popup) {
marker.bindPopup(() => createPopup(options));
}
return marker;
};
const createPopup = (options: LiveAtlasPointMarker) => {
const popup = document.createElement('span');
if (options.popup) {
popup.classList.add('MarkerPopup');
popup.insertAdjacentHTML('afterbegin', options.popup);
}
return popup;
}