This commit is contained in:
James Lyne 2021-05-24 18:24:15 +01:00
parent 025ecf6148
commit 6dfaaabf70

View File

@ -51,7 +51,7 @@ export default defineComponent({
currentZoom = computed(() => store.state.currentZoom),
location = computed(() => {
if(!event.value) {
if (!event.value) {
return {x: 0, y: 0, z: 0}
}
@ -70,7 +70,7 @@ export default defineComponent({
//Url to copy
url = computed(() => {
if(!currentWorld.value || !currentMap.value) {
if (!currentWorld.value || !currentMap.value) {
return '';
}
@ -81,7 +81,7 @@ export default defineComponent({
}),
style = computed(() => {
if(!menuElement.value || !event.value) {
if (!menuElement.value || !event.value) {
return {};
}
@ -101,7 +101,6 @@ export default defineComponent({
});
const handleEsc = (e: KeyboardEvent) => {
console.log(e);
if (e.key === "Escape") {
closeContextMenu();
}
@ -110,13 +109,13 @@ export default defineComponent({
event.value = null;
},
pan = () => {
if(event.value) {
if (event.value) {
props.leaflet.panTo(event.value.latlng);
}
};
watch(menuVisible, visible => {
if(visible) {
if (visible) {
requestAnimationFrame(() => locationButton.value && locationButton.value.focus());
}
});