Enable high accuracy for watchPosition, possible fix for #444

This commit is contained in:
Pieter Vander Vennet 2021-07-26 09:46:54 +02:00
parent 088dad3b5c
commit df6a6bbbde

View file

@ -1,11 +1,11 @@
import * as L from "leaflet";
import { UIEventSource } from "../UIEventSource";
import { Utils } from "../../Utils";
import {UIEventSource} from "../UIEventSource";
import {Utils} from "../../Utils";
import Svg from "../../Svg";
import Img from "../../UI/Base/Img";
import { LocalStorageSource } from "../Web/LocalStorageSource";
import {LocalStorageSource} from "../Web/LocalStorageSource";
import LayoutConfig from "../../Customizations/JSON/LayoutConfig";
import { VariableUiElement } from "../../UI/Base/VariableUIElement";
import {VariableUiElement} from "../../UI/Base/VariableUIElement";
export default class GeoLocationHandler extends VariableUiElement {
/**
@ -148,7 +148,7 @@ export default class GeoLocationHandler extends VariableUiElement {
const map = self._leafletMap.data;
const newMarker = L.marker(location.latlng, { icon: icon });
const newMarker = L.marker(location.latlng, {icon: icon});
newMarker.addTo(map);
if (self._marker !== undefined) {
@ -168,7 +168,7 @@ export default class GeoLocationHandler extends VariableUiElement {
try {
navigator?.permissions
?.query({ name: "geolocation" })
?.query({name: "geolocation"})
?.then(function (status) {
console.log("Geolocation is already", status);
if (status.state === "granted") {
@ -256,6 +256,9 @@ export default class GeoLocationHandler extends VariableUiElement {
},
function () {
console.warn("Could not get location with navigator.geolocation");
},
{
enableHighAccuracy: true
}
);
}