diff --git a/assets/themes/velopark/velopark.json b/assets/themes/velopark/velopark.json index e56b1302a3..4bfcc87cd8 100644 --- a/assets/themes/velopark/velopark.json +++ b/assets/themes/velopark/velopark.json @@ -102,7 +102,7 @@ "type": "multi", "key": "_nearby_bicycle_parkings:props", "classes": "p-2 m-1 my-4 border-2 border-dashed border-black", - "tagrendering": "{id} ({_distance}m, {_velopark:id}) {minimap(20,id,_mr_id)} {tag_apply(ref:velopark=$_ref,Link this object.,link,id,_mr_id)}" + "tagrendering": "{id} ({_distance}m, {_velopark:id}, place for {capacity}, covered: {covered}) {minimap(20,id,_mr_id)} {tag_apply(ref:velopark=$_ref,Link this object.,link,id,_mr_id)}" } } }, @@ -132,7 +132,7 @@ "id": "title_manually_copy", "render": { "en": "

Manually link

Does the bicycle parking exist in OpenStreetMap but is it further then 25m away? Then:
  1. Copy the following URL: {ref:velopark}
  2. Select the correct bicycle parking on the map
  3. Paste the URL into the question What is the URL of the data path in Velopark?
  4. Mark this item as handled with the button below:
  5. ", - "nl": "

    Manueel linken

    " + "nl": "

    Manueel linken

    Bestaat de fietsenstalling in OpenStreetMap maar is staat deze meer dan 25m verder?In dit geval:
    1. Kopieer de volgende URL: {ref:velopark}
    2. Selecteer de juiste fietsenstalling op de kaart
    3. Plak de URL in de vraag Wat is de data-url van deze fietsenstalling in Velopark.be?
    4. Open deze fietsenstalling opnieuw en markeer deze als gelinkt met onderstaande knop:
    5. " } }, { @@ -319,12 +319,19 @@ } ], "+tagRenderings": [ + { + "id": "questions-intro", + "render": { + "en": "The question(s) below inquiry about attributes that are not yet known in OpenStreetMap", + "nl": "De vragen hieronder zijn attributen die nog niet gekend zijn in OpenStreetMap" + } + }, "questions", { + "id": "osm-block-title", "render": { "en": "

      Attributes from OpenStreetMap

      Editing below will make changes directly in OpenStreetMap", "nl": "

      Attributen uit OpenStreetMap

      Als je hieronder wijzigingen maakt, dan worden die direct in OpenStreetMap opgeslaan" - } } ], @@ -345,11 +352,12 @@ "doCount": false, "minzoom": 14, "+tagRenderings": [ - "questions",{ + "questions", + { + "id": "osm-block-title", "render": { "en": "

      Attributes from OpenStreetMap

      Editing below will make changes directly in OpenStreetMap", "nl": "

      Attributen uit OpenStreetMap

      Als je hieronder wijzigingen maakt, dan worden die direct in OpenStreetMap opgeslaan" - } } ], diff --git a/src/UI/Popup/AllTagsPanel.svelte b/src/UI/Popup/AllTagsPanel.svelte index 4c9f782dbb..c718f5e643 100644 --- a/src/UI/Popup/AllTagsPanel.svelte +++ b/src/UI/Popup/AllTagsPanel.svelte @@ -38,13 +38,13 @@ {#if !allCalculatedTags.has(key)} {key} - + {#if $tags[key] === undefined} undefined {:else if $tags[key] === ""} Empty string {:else if typeof $tags[key] === "object"} -
      {JSON.stringify($tags[key])}
      +
      {JSON.stringify($tags[key])}
      {:else} {$tags[key]} {/if}