forked from MapComplete/MapComplete
Merge pull request #1592 from pietervdvn/RobinLinde-patch-1
Add some vending options
This commit is contained in:
commit
7d9192dd26
9 changed files with 864 additions and 631 deletions
|
@ -32,7 +32,9 @@
|
|||
"mappings": [
|
||||
{
|
||||
"if": "name~*",
|
||||
"then": "Bicycle tube vending machine {name}"
|
||||
"then": {
|
||||
"en": "Bicycle tube vending machine {name}"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -70,8 +72,7 @@
|
|||
},
|
||||
"tags": [
|
||||
"amenity=vending_machine",
|
||||
"vending=bicycle_tube",
|
||||
"vending:bicycle_tube=yes"
|
||||
"vending=bicycle_tube"
|
||||
]
|
||||
}
|
||||
],
|
||||
|
@ -176,65 +177,62 @@
|
|||
"id": "Still in use?"
|
||||
},
|
||||
{
|
||||
"question": "How much does a bicycle tube cost?",
|
||||
"render": "A bicycle tube costs {charge}",
|
||||
"question": {
|
||||
"en": "How much does a bicycle tube cost?"
|
||||
},
|
||||
"render": {
|
||||
"en": "A bicycle tube costs {charge}"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "charge"
|
||||
},
|
||||
"id": "bicycle_tube_vending_machine-charge"
|
||||
},
|
||||
"payment-options-split",
|
||||
{
|
||||
"id": "vending-machine-payment-methods",
|
||||
"question": "How can one pay at this tube vending machine?",
|
||||
"mappings": [
|
||||
{
|
||||
"if": "payment:coins=yes",
|
||||
"ifnot": "payment:coins=no",
|
||||
"then": "Payment with coins is possible"
|
||||
},
|
||||
{
|
||||
"if": "payment:notes=yes",
|
||||
"ifnot": "payment:notes=no",
|
||||
"then": "Payment with notes is possible"
|
||||
},
|
||||
{
|
||||
"if": "payment:cards=yes",
|
||||
"ifnot": "payment:cards=no",
|
||||
"then": "Payment with cards is possible"
|
||||
}
|
||||
],
|
||||
"multiAnswer": true
|
||||
},
|
||||
{
|
||||
"question": "Which brand of tubes are sold here?",
|
||||
"question": {
|
||||
"en": "Which brand of tubes are sold here?"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "brand"
|
||||
},
|
||||
"render": "{brand} tubes are sold here",
|
||||
"render": {
|
||||
"en": "{brand} tubes are sold here"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "brand=Continental",
|
||||
"then": "Continental tubes are sold here"
|
||||
"then": {
|
||||
"en": "Continental tubes are sold here"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "brand=Schwalbe",
|
||||
"then": "Schwalbe tubes are sold here"
|
||||
"then": {
|
||||
"en": "Schwalbe tubes are sold here"
|
||||
}
|
||||
}
|
||||
],
|
||||
"multiAnswer": true,
|
||||
"id": "bicycle_tube_vending_machine-brand"
|
||||
},
|
||||
{
|
||||
"question": "Who maintains this vending machine?",
|
||||
"question": {
|
||||
"en": "Who maintains this vending machine?"
|
||||
},
|
||||
"render": "This vending machine is maintained by {operator}",
|
||||
"mappings": [
|
||||
{
|
||||
"if": "operator=Schwalbe",
|
||||
"then": "Maintained by Schwalbe"
|
||||
"then": {
|
||||
"en": "Maintained by Schwalbe"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "operator=Continental",
|
||||
"then": "Maintained by Continental"
|
||||
"then": {
|
||||
"en": "Maintained by Continental"
|
||||
}
|
||||
}
|
||||
],
|
||||
"freeform": {
|
||||
|
@ -243,33 +241,52 @@
|
|||
"id": "bicycle_tube_vending_machine-operator"
|
||||
},
|
||||
{
|
||||
"id": "bicycle_tube_vending_maching-other-items",
|
||||
"question": "Are other bicycle bicycle accessories sold here?",
|
||||
"id": "other-items-vending",
|
||||
"question": {
|
||||
"en": "Are other biycle accessories sold here?"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "vending:bicycle_light=yes",
|
||||
"ifnot": "vending:bicycle_light=no",
|
||||
"then": "Bicycle lights are sold here"
|
||||
"if": "vending=bicycle_tube",
|
||||
"then": {
|
||||
"en": "Bicycle inner tubes are sold here",
|
||||
"nl": "Fietsbinnenbanden worden hier verkocht"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "vending:gloves=yes",
|
||||
"ifnot": "vending:gloves=no",
|
||||
"then": "Gloves are sold here"
|
||||
"if": "vending=bicycle_light",
|
||||
"then": {
|
||||
"en": "Bicycle lights are sold here",
|
||||
"nl": "Fietslampjes worden hier verkocht"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "vending:bicycle_repair_kit=yes",
|
||||
"ifnot": "vending:bicycle_repair_kit=no",
|
||||
"then": "Bicycle repair kits are sold here"
|
||||
"if": "vending=gloves",
|
||||
"then": {
|
||||
"en": "Gloves are sold here",
|
||||
"nl": "Handschoenen worden hier verkocht"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "vending:bicycle_pump=yes",
|
||||
"ifnot": "vending:bicycle_pump=no",
|
||||
"then": "Bicycle pumps are sold here"
|
||||
"if": "vending=bicycle_repair_kit",
|
||||
"then": {
|
||||
"en": "Bicycle repair kits are sold here",
|
||||
"nl": "Fietsreparatiesets worden hier verkocht"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "vending:bicycle_lock=yes",
|
||||
"ifnot": "vending:bicycle_lock=no",
|
||||
"then": "Bicycle locks are sold here"
|
||||
"if": "vending=bicycle_pump",
|
||||
"then": {
|
||||
"en": "Bicycle pumps are sold here",
|
||||
"nl": "Fietspompen worden hier verkocht"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "vending=bicycle_lock",
|
||||
"then": {
|
||||
"en": "Bicycle locks are sold here",
|
||||
"nl": "Fietssloten worden hier verkocht"
|
||||
}
|
||||
}
|
||||
],
|
||||
"multiAnswer": true
|
||||
|
@ -322,4 +339,4 @@
|
|||
"cs": "Vrstva zobrazující automaty na cyklistické duše (buď speciální automaty na cyklistické duše, nebo klasické automaty s cyklistickými dušemi a případně dalšími předměty souvisejícími s jízdními koly, jako jsou světla, rukavice, zámky, ...)",
|
||||
"ca": "Una capa que mostra màquines expenedores per a tubs de bicicleta (ja siguin màquines expenedores de tubs de bicicleta o màquines expenedores clàssiques amb tubs de bicicleta i opcionalment objectes addicionals relacionats amb la bicicleta com ara llums, guants, panys, ...)"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -242,6 +242,14 @@
|
|||
},
|
||||
"icon": "./assets/layers/vending_machine/potato.svg"
|
||||
},
|
||||
{
|
||||
"if": "vending=meat",
|
||||
"then": {
|
||||
"en": "Meat is sold",
|
||||
"nl": "Vlees wordt verkocht"
|
||||
},
|
||||
"icon": "./assets/layers/id_presets/temaki-meat.svg"
|
||||
},
|
||||
{
|
||||
"if": "vending=flowers",
|
||||
"then": {
|
||||
|
@ -282,12 +290,39 @@
|
|||
"icon": "./assets/themes/stations/public_transport_tickets.svg"
|
||||
},
|
||||
{
|
||||
"if": "vending=meat",
|
||||
"if": "vending=bicycle_light",
|
||||
"then": {
|
||||
"en": "Meat products are being sold",
|
||||
"nl": "Vleesproducten worden hier verkocht"
|
||||
},
|
||||
"icon": "./assets/layers/id_presets/temaki-meat.svg"
|
||||
"en": "Bicycle lights are sold",
|
||||
"nl": "Fietslampjes worden verkocht"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "vending=gloves",
|
||||
"then": {
|
||||
"en": "Gloves are sold",
|
||||
"nl": "Handschoenen worden verkocht"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "vending=bicycle_repair_kit",
|
||||
"then": {
|
||||
"en": "Bicycle repair kits are sold",
|
||||
"nl": "Fietsreparatiesets worden verkocht"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "vending=bicycle_pump",
|
||||
"then": {
|
||||
"en": "Bicycle pumps are sold",
|
||||
"nl": "Fietspompen worden verkocht"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "vending=bicycle_lock",
|
||||
"then": {
|
||||
"en": "Bicycle locks are sold",
|
||||
"nl": "Fietssloten worden verkocht"
|
||||
}
|
||||
}
|
||||
],
|
||||
"multiAnswer": true
|
||||
|
@ -453,6 +488,10 @@
|
|||
"if": "vending=potatoes",
|
||||
"then": "circle:white;./assets/layers/vending_machine/potato.svg"
|
||||
},
|
||||
{
|
||||
"if": "vending=meat",
|
||||
"then": "./assets/layers/id_presets/temaki-meat.svg"
|
||||
},
|
||||
{
|
||||
"if": "vending=flowers",
|
||||
"then": "circle:white;./assets/layers/id_presets/maki-florist.svg"
|
||||
|
@ -792,6 +831,14 @@
|
|||
},
|
||||
"osmTags": "vending~i~.*potatoes.*"
|
||||
},
|
||||
{
|
||||
"question": {
|
||||
"en": "Sale of meat",
|
||||
"nl": "Verkoop van vlees",
|
||||
"de": "Verkauf von Fleisch"
|
||||
},
|
||||
"osmTags": "vending~i~.*meat.*"
|
||||
},
|
||||
{
|
||||
"question": {
|
||||
"en": "Sale of flowers",
|
||||
|
@ -805,7 +852,7 @@
|
|||
{
|
||||
"osmTags": "vending~i~.*parking_tickets.*",
|
||||
"question": {
|
||||
"en": "Sale of parking"
|
||||
"en": "Sale of parking tickets"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -821,9 +868,38 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"osmTags": "vending=meat",
|
||||
"osmTags": "vending=bicycle_light",
|
||||
"question": {
|
||||
"en": "Sale of meat products"
|
||||
"en": "Sale of bicycle lights",
|
||||
"nl": "Verkoop van fietslampjes"
|
||||
}
|
||||
},
|
||||
{
|
||||
"osmTags": "vending=gloves",
|
||||
"question": {
|
||||
"en": "Sale of gloves",
|
||||
"nl": "Verkoop van handschoenen"
|
||||
}
|
||||
},
|
||||
{
|
||||
"osmTags": "vending=bicycle_repair_kit",
|
||||
"question": {
|
||||
"en": "Sale of bicycle repair kits",
|
||||
"nl": "Verkoop van fietsreparatiesets"
|
||||
}
|
||||
},
|
||||
{
|
||||
"osmTags": "vending=bicycle_pump",
|
||||
"question": {
|
||||
"en": "Sale of bicycle pumps",
|
||||
"nl": "Verkoop van fietspompen"
|
||||
}
|
||||
},
|
||||
{
|
||||
"osmTags": "vending=bicycle_lock",
|
||||
"question": {
|
||||
"en": "Sale of bicycle locks",
|
||||
"nl": "Verkoop van fietssloten"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -834,4 +910,4 @@
|
|||
"enableRelocation": true
|
||||
},
|
||||
"deletion": true
|
||||
}
|
||||
}
|
|
@ -8073,7 +8073,7 @@
|
|||
"15": {
|
||||
"question": "Venda de patates"
|
||||
},
|
||||
"16": {
|
||||
"17": {
|
||||
"question": "Venda de flors"
|
||||
}
|
||||
}
|
||||
|
@ -8154,16 +8154,16 @@
|
|||
"14": {
|
||||
"then": "Es venen papes"
|
||||
},
|
||||
"15": {
|
||||
"16": {
|
||||
"then": "Es venen flors"
|
||||
},
|
||||
"16": {
|
||||
"17": {
|
||||
"then": "Es venen tiquets d'aparcament"
|
||||
},
|
||||
"17": {
|
||||
"18": {
|
||||
"then": "Es venen cèntims premsats"
|
||||
},
|
||||
"18": {
|
||||
"19": {
|
||||
"then": "Es venen bitllets de transport públic"
|
||||
}
|
||||
},
|
||||
|
|
|
@ -9762,6 +9762,9 @@
|
|||
"question": "Verkauf von Kartoffeln"
|
||||
},
|
||||
"16": {
|
||||
"question": "Verkauf von Fleisch"
|
||||
},
|
||||
"17": {
|
||||
"question": "Verkauf von Blumen"
|
||||
}
|
||||
}
|
||||
|
@ -9842,13 +9845,13 @@
|
|||
"14": {
|
||||
"then": "Kartoffeln werden verkauft"
|
||||
},
|
||||
"15": {
|
||||
"16": {
|
||||
"then": "Blumen werden verkauft"
|
||||
},
|
||||
"16": {
|
||||
"17": {
|
||||
"then": "Parkscheine werden verkauft"
|
||||
},
|
||||
"18": {
|
||||
"19": {
|
||||
"then": "Fahrscheine werden verkauft"
|
||||
}
|
||||
},
|
||||
|
|
|
@ -1034,9 +1034,64 @@
|
|||
},
|
||||
"question": "Is this vending machine still operational?",
|
||||
"render": "The operational status is <i>{operational_status}</i>"
|
||||
},
|
||||
"bicycle_tube_vending_machine-brand": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Continental tubes are sold here"
|
||||
},
|
||||
"1": {
|
||||
"then": "Schwalbe tubes are sold here"
|
||||
}
|
||||
},
|
||||
"question": "Which brand of tubes are sold here?",
|
||||
"render": "{brand} tubes are sold here"
|
||||
},
|
||||
"bicycle_tube_vending_machine-charge": {
|
||||
"question": "How much does a bicycle tube cost?",
|
||||
"render": "A bicycle tube costs {charge}"
|
||||
},
|
||||
"bicycle_tube_vending_machine-operator": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Maintained by Schwalbe"
|
||||
},
|
||||
"1": {
|
||||
"then": "Maintained by Continental"
|
||||
}
|
||||
},
|
||||
"question": "Who maintains this vending machine?"
|
||||
},
|
||||
"other-items-vending": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Bicycle inner tubes are sold here"
|
||||
},
|
||||
"1": {
|
||||
"then": "Bicycle lights are sold here"
|
||||
},
|
||||
"2": {
|
||||
"then": "Gloves are sold here"
|
||||
},
|
||||
"3": {
|
||||
"then": "Bicycle repair kits are sold here"
|
||||
},
|
||||
"4": {
|
||||
"then": "Bicycle pumps are sold here"
|
||||
},
|
||||
"5": {
|
||||
"then": "Bicycle locks are sold here"
|
||||
}
|
||||
},
|
||||
"question": "Are other biycle accessories sold here?"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Bicycle tube vending machine {name}"
|
||||
}
|
||||
},
|
||||
"render": "Bicycle tube vending machine"
|
||||
}
|
||||
},
|
||||
|
@ -9900,19 +9955,34 @@
|
|||
"question": "Sale of potatoes"
|
||||
},
|
||||
"16": {
|
||||
"question": "Sale of flowers"
|
||||
"question": "Sale of meat"
|
||||
},
|
||||
"17": {
|
||||
"question": "Sale of parking"
|
||||
"question": "Sale of flowers"
|
||||
},
|
||||
"18": {
|
||||
"question": "Sale of pressed pennies"
|
||||
"question": "Sale of parking tickets"
|
||||
},
|
||||
"19": {
|
||||
"question": "Sale of public transport tickets"
|
||||
"question": "Sale of pressed pennies"
|
||||
},
|
||||
"20": {
|
||||
"question": "Sale of meat products"
|
||||
"question": "Sale of public transport tickets"
|
||||
},
|
||||
"21": {
|
||||
"question": "Sale of bicycle lights"
|
||||
},
|
||||
"22": {
|
||||
"question": "Sale of gloves"
|
||||
},
|
||||
"23": {
|
||||
"question": "Sale of bicycle repair kits"
|
||||
},
|
||||
"24": {
|
||||
"question": "Sale of bicycle pumps"
|
||||
},
|
||||
"25": {
|
||||
"question": "Sale of bicycle locks"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -9999,19 +10069,34 @@
|
|||
"then": "Potatoes are sold"
|
||||
},
|
||||
"15": {
|
||||
"then": "Flowers are sold"
|
||||
"then": "Meat is sold"
|
||||
},
|
||||
"16": {
|
||||
"then": "Parking tickets are sold"
|
||||
"then": "Flowers are sold"
|
||||
},
|
||||
"17": {
|
||||
"then": "Pressed pennies are sold"
|
||||
"then": "Parking tickets are sold"
|
||||
},
|
||||
"18": {
|
||||
"then": "Public transport tickets are sold"
|
||||
"then": "Pressed pennies are sold"
|
||||
},
|
||||
"19": {
|
||||
"then": "Meat products are being sold"
|
||||
"then": "Public transport tickets are sold"
|
||||
},
|
||||
"20": {
|
||||
"then": "Bicycle lights are sold"
|
||||
},
|
||||
"21": {
|
||||
"then": "Gloves are sold"
|
||||
},
|
||||
"22": {
|
||||
"then": "Bicycle repair kits are sold"
|
||||
},
|
||||
"23": {
|
||||
"then": "Bicycle pumps are sold"
|
||||
},
|
||||
"24": {
|
||||
"then": "Bicycle locks are sold"
|
||||
}
|
||||
},
|
||||
"question": "What does this vending machine sell?",
|
||||
|
|
|
@ -6576,7 +6576,7 @@
|
|||
"15": {
|
||||
"question": "Vente de pommes de terre"
|
||||
},
|
||||
"16": {
|
||||
"17": {
|
||||
"question": "Vente de fleurs"
|
||||
}
|
||||
}
|
||||
|
@ -6657,7 +6657,7 @@
|
|||
"14": {
|
||||
"then": "Vent des pommes de terre"
|
||||
},
|
||||
"15": {
|
||||
"16": {
|
||||
"then": "Vent des fleurs"
|
||||
}
|
||||
},
|
||||
|
|
|
@ -930,6 +930,28 @@
|
|||
},
|
||||
"question": "Is deze verkoopsautomaat nog steeds werkende?",
|
||||
"render": "Deze verkoopsautomaat is <i>{operational_status}</i>"
|
||||
},
|
||||
"other-items-vending": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Fietsbinnenbanden worden hier verkocht"
|
||||
},
|
||||
"1": {
|
||||
"then": "Fietslampjes worden hier verkocht"
|
||||
},
|
||||
"2": {
|
||||
"then": "Handschoenen worden hier verkocht"
|
||||
},
|
||||
"3": {
|
||||
"then": "Fietsreparatiesets worden hier verkocht"
|
||||
},
|
||||
"4": {
|
||||
"then": "Fietspompen worden hier verkocht"
|
||||
},
|
||||
"5": {
|
||||
"then": "Fietssloten worden hier verkocht"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
|
@ -9055,7 +9077,25 @@
|
|||
"question": "Verkoop van aardappelen"
|
||||
},
|
||||
"16": {
|
||||
"question": "Verkoop van vlees"
|
||||
},
|
||||
"17": {
|
||||
"question": "Verkoop van bloemen"
|
||||
},
|
||||
"21": {
|
||||
"question": "Verkoop van fietslampjes"
|
||||
},
|
||||
"22": {
|
||||
"question": "Verkoop van handschoenen"
|
||||
},
|
||||
"23": {
|
||||
"question": "Verkoop van fietsreparatiesets"
|
||||
},
|
||||
"24": {
|
||||
"question": "Verkoop van fietspompen"
|
||||
},
|
||||
"25": {
|
||||
"question": "Verkoop van fietssloten"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -9136,16 +9176,31 @@
|
|||
"then": "Aardappelen worden verkocht"
|
||||
},
|
||||
"15": {
|
||||
"then": "Bloemen worden verkocht"
|
||||
"then": "Vlees wordt verkocht"
|
||||
},
|
||||
"16": {
|
||||
"then": "Bloemen worden verkocht"
|
||||
},
|
||||
"17": {
|
||||
"then": "Parkeerkaarten worden verkocht"
|
||||
},
|
||||
"18": {
|
||||
"19": {
|
||||
"then": "Openbaar vervoerkaartjes worden verkocht"
|
||||
},
|
||||
"19": {
|
||||
"then": "Vleesproducten worden hier verkocht"
|
||||
"20": {
|
||||
"then": "Fietslampjes worden verkocht"
|
||||
},
|
||||
"21": {
|
||||
"then": "Handschoenen worden verkocht"
|
||||
},
|
||||
"22": {
|
||||
"then": "Fietsreparatiesets worden verkocht"
|
||||
},
|
||||
"23": {
|
||||
"then": "Fietspompen worden verkocht"
|
||||
},
|
||||
"24": {
|
||||
"then": "Fietssloten worden verkocht"
|
||||
}
|
||||
},
|
||||
"question": "Wat verkoopt deze verkoopautomaat?",
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,44 +1,45 @@
|
|||
<script lang="ts">
|
||||
import Translations from "../i18n/Translations";
|
||||
import Svg from "../../Svg";
|
||||
import Tr from "../Base/Tr.svelte";
|
||||
import NextButton from "../Base/NextButton.svelte";
|
||||
import Geosearch from "./Geosearch.svelte";
|
||||
import ToSvelte from "../Base/ToSvelte.svelte";
|
||||
import ThemeViewState from "../../Models/ThemeViewState";
|
||||
import { Store, UIEventSource } from "../../Logic/UIEventSource";
|
||||
import { SearchIcon } from "@rgossiaux/svelte-heroicons/solid";
|
||||
import { twJoin } from "tailwind-merge";
|
||||
import { Utils } from "../../Utils";
|
||||
import type { GeolocationPermissionState } from "../../Logic/State/GeoLocationState";
|
||||
import Translations from "../i18n/Translations"
|
||||
import Svg from "../../Svg"
|
||||
import Tr from "../Base/Tr.svelte"
|
||||
import NextButton from "../Base/NextButton.svelte"
|
||||
import Geosearch from "./Geosearch.svelte"
|
||||
import ToSvelte from "../Base/ToSvelte.svelte"
|
||||
import ThemeViewState from "../../Models/ThemeViewState"
|
||||
import { Store, UIEventSource } from "../../Logic/UIEventSource"
|
||||
import { SearchIcon } from "@rgossiaux/svelte-heroicons/solid"
|
||||
import { twJoin } from "tailwind-merge"
|
||||
import { Utils } from "../../Utils"
|
||||
import type { GeolocationPermissionState } from "../../Logic/State/GeoLocationState"
|
||||
|
||||
/**
|
||||
* The theme introduction panel
|
||||
*/
|
||||
export let state: ThemeViewState;
|
||||
let layout = state.layout;
|
||||
let selectedElement = state.selectedElement;
|
||||
let selectedLayer = state.selectedLayer;
|
||||
export let state: ThemeViewState
|
||||
let layout = state.layout
|
||||
let selectedElement = state.selectedElement
|
||||
let selectedLayer = state.selectedLayer
|
||||
|
||||
let triggerSearch: UIEventSource<any> = new UIEventSource<any>(undefined);
|
||||
let searchEnabled = false;
|
||||
let triggerSearch: UIEventSource<any> = new UIEventSource<any>(undefined)
|
||||
let searchEnabled = false
|
||||
|
||||
let geopermission: Store<GeolocationPermissionState> = state.geolocation.geolocationState.permission;
|
||||
let currentGPSLocation = state.geolocation.geolocationState.currentGPSLocation;
|
||||
let geopermission: Store<GeolocationPermissionState> =
|
||||
state.geolocation.geolocationState.permission
|
||||
let currentGPSLocation = state.geolocation.geolocationState.currentGPSLocation
|
||||
|
||||
geopermission.addCallback(perm => console.log(">>>> Permission", perm));
|
||||
geopermission.addCallback((perm) => console.log(">>>> Permission", perm))
|
||||
|
||||
function jumpToCurrentLocation() {
|
||||
const glstate = state.geolocation.geolocationState;
|
||||
const glstate = state.geolocation.geolocationState
|
||||
if (glstate.currentGPSLocation.data !== undefined) {
|
||||
const c: GeolocationCoordinates = glstate.currentGPSLocation.data;
|
||||
state.guistate.themeIsOpened.setData(false);
|
||||
const coor = { lon: c.longitude, lat: c.latitude };
|
||||
state.mapProperties.location.setData(coor);
|
||||
const c: GeolocationCoordinates = glstate.currentGPSLocation.data
|
||||
state.guistate.themeIsOpened.setData(false)
|
||||
const coor = { lon: c.longitude, lat: c.latitude }
|
||||
state.mapProperties.location.setData(coor)
|
||||
}
|
||||
if (glstate.permission.data !== "granted") {
|
||||
glstate.requestPermission();
|
||||
return;
|
||||
glstate.requestPermission()
|
||||
return
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -69,13 +70,13 @@
|
|||
</button>
|
||||
<!-- No geolocation granted - we don't show the button -->
|
||||
{:else if $geopermission === "requested"}
|
||||
<button class="flex w-full items-center gap-x-2 disabled" on:click={jumpToCurrentLocation}>
|
||||
<button class="disabled flex w-full items-center gap-x-2" on:click={jumpToCurrentLocation}>
|
||||
<!-- Even though disabled, when clicking we request the location again in case the contributor dismissed the location popup -->
|
||||
<ToSvelte construct={Svg.crosshair_svg().SetClass("w-8 h-8").SetStyle("animation: 3s linear 0s infinite normal none running spin;")} />
|
||||
<Tr t={Translations.t.general.waitingForGeopermission} />
|
||||
</button>
|
||||
{:else if $geopermission === "denied"}
|
||||
<button class="flex w-full items-center gap-x-2 disabled">
|
||||
<button class="disabled flex w-full items-center gap-x-2">
|
||||
<ToSvelte construct={Svg.location_refused_svg().SetClass("w-8 h-8")} />
|
||||
<Tr t={Translations.t.general.geopermissionDenied} />
|
||||
</button>
|
||||
|
@ -84,7 +85,6 @@
|
|||
<ToSvelte construct={Svg.crosshair_svg().SetClass("w-8 h-8").SetStyle("animation: 3s linear 0s infinite normal none running spin;")} />
|
||||
<Tr t={Translations.t.general.waitingForLocation} />
|
||||
</button>
|
||||
|
||||
{/if}
|
||||
|
||||
<div class=".button low-interaction m-1 flex w-full items-center gap-x-2 rounded border p-2">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue