Skip to content

Commit

Permalink
Themes: add extra questions to 'map' layer based on custom theme
Browse files Browse the repository at this point in the history
  • Loading branch information
pietervdvn committed Jul 8, 2023
1 parent a57dbe0 commit 10e0e27
Showing 1 changed file with 75 additions and 0 deletions.
75 changes: 75 additions & 0 deletions assets/layers/map/map.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,81 @@
},
"tagRenderings": [
"images",
{
"id": "map_type",
"question": {
"en": "What type of map is shown?",
"de": "Was für eine Karte ist das?"
},
"mappings": [
{
"if": "map_type=topo",
"then": {
"en": "Topographical map <p class='subtle'>The map contains contour lines. </p>"
}
},
{
"if": "map_type=street",
"then": {
"en": "A map with all streets or ways of an area. <p class='subtle'>The streets are mostly named; the angles, distances etc. are accurate</p>"
}
},
{
"if": "map_type=scheme",
"then": {
"en": "This is a schematic map. <p class='subtle'>A sketched map with only important ways and POIs. The angles, distances etc. are merely illustrative, not accurate.</p> "
}
},
{
"if": "map_type=toposcope",
"then": {
"en": "This is a toposcope. <p class='subtle'>A marker erected on high places which indicates the direction to notable landscape features which can be seen from that point<p>"
}
}
]
},
{
"id": "map_size",
"question": {
"en": "What is the size of the shown area on the map?",
"de": "Was wird von der Fläche abgedeckt?"
},
"mappings": [
{
"if": "map_size=building",
"then": {
"en": "A map of the romms within a building"
}
},
{
"if": "map_size=site",
"then": {
"en": "A map of special site, like of a historical castle, a park, a campus, a forest, ....",
"de": "Örtlichkeit (z.B. Burg)"
}
},
{
"if": "map_size=village",
"then": {
"en": "A map showing the village or town"
}
},
{
"if": "map_size=city",
"then": {
"en": " A map of a city.",
"de": "Stadt"
}
},
{
"if": "map_size=region",
"then": {
"en": "The map of an entire region, showing multiple cities and villages",
"de": "Region"
}
}
]
},
{
"labels": [
"map"
Expand Down

0 comments on commit 10e0e27

Please sign in to comment.