diff --git a/src/assets/openmaptiles.json b/src/assets/openmaptiles.json index 82a7e34..f7ced15 100644 --- a/src/assets/openmaptiles.json +++ b/src/assets/openmaptiles.json @@ -32,6 +32,10 @@ "type": "vector", "url": "https://1.{mapServer}.map.sotl.as/data/regions.json" }, + "az": { + "type": "vector", + "url": "https://1.{mapServer}.map.sotl.as/data/az.json" + }, "openmaptiles": { "type": "vector", "url": "https://0.{mapServer}.map.sotl.as/data/osm-sotlas.json" @@ -324,6 +328,39 @@ "layout": {"visibility": "visible"}, "paint": {"fill-color": "rgba(103, 166, 196, 1)"} }, + { + "id": "summits_az", + "type": "fill", + "metadata": { + "sotlas-map-option": "az" + }, + "source": "az", + "source-layer": "az", + "layout": {"visibility": "none"}, + "minzoom": 12, + "paint": { + "fill-antialias": false, + "fill-color": "rgba(50, 255, 0, 0.4)", + "fill-opacity": {"stops": [[12, 0], [12.5, 0.5]]} + } + }, + { + "id": "summits_az_border", + "type": "line", + "metadata": { + "sotlas-map-option": "az" + }, + "source": "az", + "source-layer": "az", + "layout": {"visibility": "none"}, + "minzoom": 12, + "paint": { + "line-color": "rgba(50, 150, 0, 1)", + "line-opacity": {"stops": [[12, 0], [12.5, 0.5]]}, + "line-width": {"stops": [[12, 1], [16, 2]]}, + "line-dasharray": [1,1] + } + }, { "id": "aeroway_fill", "type": "fill", diff --git a/src/components/MapOptionsControl.vue b/src/components/MapOptionsControl.vue index 5e4ee65..20f16ea 100644 --- a/src/components/MapOptionsControl.vue +++ b/src/components/MapOptionsControl.vue @@ -21,7 +21,7 @@ Hillshading - + Activation zones @@ -194,7 +194,7 @@ export default { event.preventDefault() this.$buefy.dialog.alert({ title: 'Activation zones', - message: '

The activation zones for HB/HB0 have been calculated using swissALTI3D data from swisstopo (spatial resolution 0.5 m, accuracy ± 0.3 – 3 m (1σ) depending on the region).

The activation zones for OE have been calculated using BEV ALS DTM data (spatial resolution 1 m, accuracy generally ± 0.5 m, may vary in high altitude).

The activator is always responsible for ensuring that the operation takes place within the activation zone.

', + message: '

Activation zone boundaries are currently available for the following associations:

  • HB/HB0
    Calculated using swissALTI3D data from swisstopo (spatial resolution 0.5 m, accuracy ± 0.3 – 3 m (1σ) depending on the region).
  • OE
    Calculated using BEV ALS DTM data (spatial resolution 1 m, accuracy generally ± 0.5 m, may vary in high altitude).

The activator is always responsible for ensuring that the operation takes place within the activation zone.

', type: 'is-info', hasIcon: true, icon: 'info-circle', @@ -205,7 +205,7 @@ export default { event.preventDefault() this.$buefy.dialog.alert({ title: 'Hiking difficulty', - message: '

The hiking difficulty grading uses the SAC scale. Colors shown are as follows:

  • Yellow: T1
  • Red: T2…T3
  • Blue: T4…T6
', + message: '

The hiking difficulty grading uses the SAC scale. Colors shown are as follows:

  • Yellow: T1
  • Red: T2…T3
  • Blue: T4…T6
', type: 'is-info', hasIcon: true, icon: 'info-circle',