2020-10-02 19:00:24 +02:00
|
|
|
import * as L from "leaflet";
|
2020-08-17 17:23:15 +02:00
|
|
|
import {UIEventSource} from "../UIEventSource";
|
2020-07-30 00:59:08 +02:00
|
|
|
import {UIElement} from "../../UI/UIElement";
|
2020-07-31 04:58:58 +02:00
|
|
|
import {Utils} from "../../Utils";
|
2020-11-05 12:28:02 +01:00
|
|
|
import Svg from "../../Svg";
|
2021-01-03 00:19:42 +01:00
|
|
|
import Img from "../../UI/Base/Img";
|
2020-06-28 02:42:22 +02:00
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
export default class GeoLocationHandler extends UIElement {
|
2020-06-28 02:42:22 +02:00
|
|
|
|
2020-08-30 01:13:18 +02:00
|
|
|
private readonly _isActive: UIEventSource<boolean> = new UIEventSource<boolean>(false);
|
|
|
|
private readonly _permission: UIEventSource<string> = new UIEventSource<string>("");
|
2021-01-02 21:03:40 +01:00
|
|
|
private _marker: L.Marker;
|
2020-08-30 01:13:18 +02:00
|
|
|
private readonly _hasLocation: UIEventSource<boolean>;
|
2021-01-02 21:03:40 +01:00
|
|
|
private readonly _currentGPSLocation: UIEventSource<{ latlng: any; accuracy: number }>;
|
|
|
|
private readonly _leafletMap: UIEventSource<L.Map>;
|
2020-06-28 02:42:22 +02:00
|
|
|
|
2021-01-02 21:03:40 +01:00
|
|
|
constructor(currentGPSLocation: UIEventSource<{ latlng: any; accuracy: number }>,
|
2021-01-04 04:06:21 +01:00
|
|
|
leafletMap: UIEventSource<L.Map>) {
|
2020-06-28 02:42:22 +02:00
|
|
|
super(undefined);
|
2021-01-02 21:03:40 +01:00
|
|
|
this._currentGPSLocation = currentGPSLocation;
|
|
|
|
this._leafletMap = leafletMap;
|
|
|
|
this._hasLocation = currentGPSLocation.map((location) => location !== undefined);
|
2021-02-21 03:38:12 +01:00
|
|
|
this.dumbMode = false;
|
2021-01-04 04:06:21 +01:00
|
|
|
const self = this;
|
2020-11-20 11:29:57 +01:00
|
|
|
import("../../vendor/Leaflet.AccuratePosition.js").then(() => {
|
|
|
|
self.init();
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public init() {
|
2020-07-31 01:45:54 +02:00
|
|
|
this.ListenTo(this._hasLocation);
|
2020-06-28 02:42:22 +02:00
|
|
|
this.ListenTo(this._isActive);
|
2020-06-28 23:33:48 +02:00
|
|
|
this.ListenTo(this._permission);
|
2020-06-28 02:42:22 +02:00
|
|
|
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
|
|
|
|
function onAccuratePositionProgress(e) {
|
2021-01-02 21:03:40 +01:00
|
|
|
self._currentGPSLocation.setData({latlng: e.latlng, accuracy: e.accuracy});
|
2020-06-28 02:42:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function onAccuratePositionFound(e) {
|
2021-01-02 21:03:40 +01:00
|
|
|
self._currentGPSLocation.setData({latlng: e.latlng, accuracy: e.accuracy});
|
2020-06-28 02:42:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function onAccuratePositionError(e) {
|
|
|
|
console.log("onerror", e.message);
|
2020-07-31 01:45:54 +02:00
|
|
|
|
2020-06-28 02:42:22 +02:00
|
|
|
}
|
|
|
|
|
2021-01-02 21:03:40 +01:00
|
|
|
const map = this._leafletMap.data;
|
2020-07-31 01:45:54 +02:00
|
|
|
map.on('accuratepositionprogress', onAccuratePositionProgress);
|
|
|
|
map.on('accuratepositionfound', onAccuratePositionFound);
|
|
|
|
map.on('accuratepositionerror', onAccuratePositionError);
|
2020-06-28 02:42:22 +02:00
|
|
|
|
2020-11-17 02:22:48 +01:00
|
|
|
|
2021-01-02 21:03:40 +01:00
|
|
|
this._currentGPSLocation.addCallback((location) => {
|
2020-11-17 02:22:48 +01:00
|
|
|
|
|
|
|
const color = getComputedStyle(document.body).getPropertyValue("--catch-detail-color")
|
|
|
|
const icon = L.icon(
|
|
|
|
{
|
|
|
|
iconUrl: Img.AsData(Svg.crosshair.replace(/#000000/g, color)),
|
|
|
|
iconSize: [40, 40], // size of the icon
|
|
|
|
iconAnchor: [20, 20], // point of the icon which will correspond to marker's location
|
|
|
|
})
|
2021-01-02 21:03:40 +01:00
|
|
|
|
2020-06-28 02:42:22 +02:00
|
|
|
const newMarker = L.marker(location.latlng, {icon: icon});
|
2020-08-08 02:16:42 +02:00
|
|
|
newMarker.addTo(map);
|
2020-06-28 02:42:22 +02:00
|
|
|
|
|
|
|
if (self._marker !== undefined) {
|
2020-07-31 01:45:54 +02:00
|
|
|
map.removeLayer(self._marker);
|
2020-06-28 02:42:22 +02:00
|
|
|
}
|
|
|
|
self._marker = newMarker;
|
|
|
|
});
|
|
|
|
|
2020-07-29 20:55:25 +02:00
|
|
|
navigator?.permissions?.query({name: 'geolocation'})
|
|
|
|
?.then(function (status) {
|
2020-06-28 23:33:48 +02:00
|
|
|
console.log("Geolocation is already", status)
|
|
|
|
if (status.state === "granted") {
|
|
|
|
self.StartGeolocating();
|
|
|
|
}
|
|
|
|
self._permission.setData(status.state);
|
|
|
|
status.onchange = function () {
|
|
|
|
self._permission.setData(status.state);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this.HideOnEmpty(true);
|
2020-06-28 02:42:22 +02:00
|
|
|
}
|
|
|
|
|
2020-07-26 02:01:34 +02:00
|
|
|
InnerRender(): string {
|
2020-07-31 01:45:54 +02:00
|
|
|
if (this._hasLocation.data) {
|
2020-11-05 12:28:02 +01:00
|
|
|
return Svg.crosshair_blue_img;
|
2020-06-28 02:42:22 +02:00
|
|
|
}
|
|
|
|
if (this._isActive.data) {
|
2020-11-05 12:28:02 +01:00
|
|
|
return Svg.crosshair_blue_center_img;
|
2020-06-28 02:42:22 +02:00
|
|
|
}
|
|
|
|
|
2020-11-05 12:28:02 +01:00
|
|
|
return Svg.crosshair_img;
|
2020-06-28 02:42:22 +02:00
|
|
|
}
|
|
|
|
|
2021-01-02 21:03:40 +01:00
|
|
|
InnerUpdate(htmlElement: HTMLElement) {
|
|
|
|
super.InnerUpdate(htmlElement);
|
|
|
|
|
|
|
|
const self = this;
|
|
|
|
htmlElement.onclick = function () {
|
|
|
|
self.StartGeolocating(19);
|
|
|
|
}
|
|
|
|
|
|
|
|
htmlElement.oncontextmenu = function (e) {
|
|
|
|
self.StartGeolocating(15);
|
|
|
|
e.preventDefault();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-12-14 00:04:53 +01:00
|
|
|
private StartGeolocating(zoomlevel = 19) {
|
2020-06-28 02:42:22 +02:00
|
|
|
const self = this;
|
2021-02-21 03:38:12 +01:00
|
|
|
console.log("Starting geolocation")
|
2021-01-04 04:06:21 +01:00
|
|
|
const map: any = this._leafletMap.data;
|
2020-06-28 23:33:48 +02:00
|
|
|
if (self._permission.data === "denied") {
|
|
|
|
return "";
|
|
|
|
}
|
2021-01-02 21:03:40 +01:00
|
|
|
if (this._currentGPSLocation.data !== undefined) {
|
|
|
|
this._leafletMap.data.setView(
|
|
|
|
this._currentGPSLocation.data.latlng, zoomlevel
|
2020-11-20 11:31:11 +01:00
|
|
|
);
|
2020-06-28 02:42:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
console.log("Searching location using GPS")
|
2020-07-31 01:45:54 +02:00
|
|
|
map.findAccuratePosition({
|
2020-06-28 23:33:48 +02:00
|
|
|
maxWait: 10000, // defaults to 10000
|
|
|
|
desiredAccuracy: 50 // defaults to 20
|
2020-06-28 02:42:22 +02:00
|
|
|
});
|
2021-01-02 21:03:40 +01:00
|
|
|
|
|
|
|
|
2020-06-28 23:33:48 +02:00
|
|
|
if (!self._isActive.data) {
|
|
|
|
self._isActive.setData(true);
|
2020-07-31 04:58:58 +02:00
|
|
|
Utils.DoEvery(60000, () => {
|
2020-07-31 01:45:54 +02:00
|
|
|
|
|
|
|
if (document.visibilityState !== "visible") {
|
2020-07-26 02:01:34 +02:00
|
|
|
console.log("Not starting gps: document not visible")
|
|
|
|
return;
|
|
|
|
}
|
2020-07-31 01:45:54 +02:00
|
|
|
|
|
|
|
map.findAccuratePosition({
|
2020-06-28 23:33:48 +02:00
|
|
|
maxWait: 10000, // defaults to 10000
|
|
|
|
desiredAccuracy: 50 // defaults to 20
|
|
|
|
});
|
|
|
|
})
|
|
|
|
}
|
2020-06-28 02:42:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|