A repository for testing purposes.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
523 B

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "en": "First Category"
  5. },
  6. "query": {
  7. "16": [
  8. "(",
  9. "way[highway];",
  10. ")"
  11. ]
  12. },
  13. "feature": {
  14. "style": {
  15. "width": [
  16. "{% if tags.highway in [ 'footway', 'cycleway' ] %}",
  17. "1.5",
  18. "{% else %}",
  19. "4",
  20. "{% endif %}"
  21. ],
  22. "color": "#ff0000",
  23. "text": "{{ tags.name }}"
  24. }
  25. }
  26. }