plepe / openstreetbrowser-categories-main

Styles of the "Main" category of OpenStreetBrowser
5 stars 11 forks source link

Category idea: towers #72

Closed matthewbauer closed 1 month ago

matthewbauer commented 2 months ago

Can basically include any tower types (man_made=tower), but specifically I am interested in cellular towers (tower:type=communication).

plepe commented 2 months ago

Not sure, how this would fit into the categories structure. I would actually include it in the Infrastructure -> Buildings category.

I would suggest creating a custom category for this. As code, the following would suffice (14 is the minimum zoom level):

query:
  14: nwr[man_made=tower]

To only show communication towers, you have to quote the tower:type because of the colon, so:

query:
  14: nwr[man_made=tower]["tower:type"=communication]

To learn more about custom categories, check the tutorial

Do you think this suffices? Or shall I create a category in the main categories for this?

matthewbauer commented 1 month ago

Yep that works as a customer category!