{ "type": "overpass", "name": { "de": "Gebäudehöhen", "en": "Building height" }, "query": { "16": [ "(", " way[building];", " relation[building];", ")" ] }, "feature": { "pre": [ "{% if tags.height %}", "{% set approxHeight = tags.height %}", "{% elseif attribute(tags, 'building:levels') %}", "{% set approxHeight = attribute(tags, 'building:levels') * 3.5 %}", "{% endif %}", "", "{% if approxHeight <= 50 %}", "{% set color = colorInterpolate(['green', 'red'], approxHeight / 50) %}", "{% elseif approxHeight %}", "{% set color = colorInterpolate(['red', 'yellow'], (approxHeight - 50) / 250) %} ", "{% else %}", "{% set color = '#7f7f7f' %}", "{% endif %}" ], "description": [ "{% if tags.height %}", "{{ tags.height }}m", "{% endif %}", "", "{% if attribute(tags, 'building:levels') %}", "{{ attribute(tags, 'building:levels') }} {{ keyTrans('building:levels') }}", "{% endif %}" ], "markerSymbol": null, "listMarkerSymbol": "{{ markerCircle({fillColor: color})|raw }}", "priority": "{{ (approxHeight|default(0)) * -1 }}", "style": { "width": "1", "color": "#000000", "fillColor": "{{ color }}", "fillOpacity": "1" } }, "info": [ "
", "{{ tagTrans('height') }}", "", " ", " ", " ", " ", "{% for i in range(0, 50, 10) %}", " ", " ", " ", " ", "{% endfor %}", "{% for i in range(100, 250, 50) %}", " ", " ", " ", " ", "{% endfor %}", " ", " ", " ", " ", "
{{ markerCircle({ 'fillColor': '#7f7f7f' })|raw }}{{ trans('unknown') }}
{{ markerCircle({ 'fillColor': colorInterpolate(['green', 'red'], i / 50) })|raw }}{{ i }}m
{{ markerCircle({ 'fillColor': colorInterpolate(['red', 'yellow'], (i - 50) / 250) })|raw }}{{ i }}m
{{ markerCircle({ 'fillColor': 'yellow' })|raw }}≥300m
", "
", "", "
", "{{ tagTrans('building:levels') }}", "", " ", " ", " ", " ", "{% for i in range(0, 12, 3) %}", " ", " ", " ", " ", "{% endfor %}", "{% for i in range(15, 84, 15) %}", " ", " ", " ", " ", "{% endfor %}", " ", " ", " ", " ", "
{{ markerCircle({ 'fillColor': '#7f7f7f' })|raw }}{{ trans('unknown') }}
{{ markerCircle({ 'fillColor': colorInterpolate(['green', 'red'], (i * 3.5) / 50) })|raw }}{{ i }}
{{ markerCircle({ 'fillColor': colorInterpolate(['red', 'yellow'], (i * 3.5 - 50) / 250) })|raw }}{{ i }}
{{ markerCircle({ 'fillColor': 'yellow' })|raw }}≥85
", "", "
" ] }