2020-12-16 16:54:41 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2020 James Lyne
|
|
|
|
*
|
|
|
|
* Some portions of this file were taken from https://github.com/webbukkit/dynmap.
|
|
|
|
* These portions are Copyright 2020 Dynmap Contributors.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-05-25 22:31:03 +00:00
|
|
|
import {LeafletMouseEvent, Marker} from "leaflet";
|
2021-07-23 21:28:06 +00:00
|
|
|
import {GenericIcon} from "@/leaflet/icon/GenericIcon";
|
2020-12-14 15:48:58 +00:00
|
|
|
import {GenericMarker} from "@/leaflet/marker/GenericMarker";
|
2021-07-24 03:06:19 +00:00
|
|
|
import {LiveAtlasMarker} from "@/index";
|
2020-12-14 00:27:49 +00:00
|
|
|
|
2021-07-24 03:06:19 +00:00
|
|
|
export const createMarker = (options: LiveAtlasMarker, converter: Function): Marker => {
|
2021-07-23 19:32:15 +00:00
|
|
|
const marker = new GenericMarker(converter(options.location.x, options.location.y, options.location.z), {
|
2021-07-23 21:28:06 +00:00
|
|
|
icon: new GenericIcon({
|
2020-12-14 00:27:49 +00:00
|
|
|
icon: options.icon,
|
|
|
|
label: options.label,
|
|
|
|
iconSize: options.dimensions,
|
|
|
|
isHtml: options.isHTML,
|
|
|
|
}),
|
2020-12-18 20:25:34 +00:00
|
|
|
maxZoom: options.maxZoom,
|
|
|
|
minZoom: options.minZoom,
|
2020-12-14 00:27:49 +00:00
|
|
|
});
|
2021-01-26 14:32:48 +00:00
|
|
|
|
2021-05-25 22:31:03 +00:00
|
|
|
marker.on('click', (e: LeafletMouseEvent) => {
|
|
|
|
e.target._map.panTo(e.target.getLatLng());
|
|
|
|
});
|
|
|
|
|
2021-01-26 14:32:48 +00:00
|
|
|
if(options.popupContent) {
|
|
|
|
marker.bindPopup(() => createPopup(options));
|
|
|
|
}
|
|
|
|
|
|
|
|
return marker;
|
2020-12-14 00:27:49 +00:00
|
|
|
};
|
|
|
|
|
2021-07-24 03:06:19 +00:00
|
|
|
export const updateMarker = (marker: Marker | undefined, options: LiveAtlasMarker, converter: Function): Marker => {
|
2020-12-14 00:27:49 +00:00
|
|
|
if (!marker) {
|
2021-07-23 19:32:15 +00:00
|
|
|
return createMarker(options, converter);
|
2020-12-14 00:27:49 +00:00
|
|
|
}
|
|
|
|
|
2020-12-16 11:59:09 +00:00
|
|
|
const oldLocation = marker.getLatLng(),
|
2021-07-23 19:32:15 +00:00
|
|
|
newLocation = converter(options.location.x, options.location.y, options.location.z);
|
2020-12-16 11:59:09 +00:00
|
|
|
|
|
|
|
if(!oldLocation.equals(newLocation)) {
|
|
|
|
marker.setLatLng(newLocation);
|
|
|
|
}
|
2020-12-14 00:27:49 +00:00
|
|
|
|
2020-12-18 18:01:37 +00:00
|
|
|
if(marker instanceof GenericMarker) {
|
|
|
|
const icon = marker.getIcon();
|
|
|
|
|
2021-07-23 21:28:06 +00:00
|
|
|
if(icon && icon instanceof GenericIcon) {
|
2020-12-18 18:01:37 +00:00
|
|
|
icon.update({
|
|
|
|
icon: options.icon,
|
|
|
|
label: options.label,
|
|
|
|
iconSize: options.dimensions,
|
|
|
|
isHtml: options.isHTML,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-26 14:42:31 +00:00
|
|
|
marker.closePopup();
|
2021-01-26 14:32:48 +00:00
|
|
|
marker.unbindPopup();
|
|
|
|
|
|
|
|
if(options.popupContent) {
|
|
|
|
marker.bindPopup(() => createPopup(options));
|
|
|
|
}
|
|
|
|
|
2020-12-14 00:27:49 +00:00
|
|
|
return marker;
|
2020-12-16 11:59:09 +00:00
|
|
|
};
|
2021-01-26 14:32:48 +00:00
|
|
|
|
2021-07-24 03:06:19 +00:00
|
|
|
export const createPopup = (options: LiveAtlasMarker) => {
|
2021-01-26 14:32:48 +00:00
|
|
|
const popup = document.createElement('span');
|
|
|
|
|
|
|
|
if (options.popupContent) {
|
|
|
|
popup.classList.add('MarkerPopup');
|
|
|
|
popup.insertAdjacentHTML('afterbegin', options.popupContent);
|
|
|
|
} else if (options.isHTML) {
|
|
|
|
popup.classList.add('MarkerPopup');
|
|
|
|
popup.insertAdjacentHTML('afterbegin', options.label);
|
|
|
|
} else {
|
|
|
|
popup.textContent = options.label;
|
|
|
|
}
|
|
|
|
|
|
|
|
return popup;
|
|
|
|
}
|