Changes between Initial Version and Version 1 of Presets/BackyardObjects


Ignore:
Timestamp:
2025-06-29T20:02:34+02:00 (6 months ago)
Author:
Tre_brock
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Presets/BackyardObjects

    v1 v1  
     1== Backyard Objects presets ==
     2
     3This adds various object presets that could be in private backyards.
     4Currently it has sheds, garages, and private pools.
     5
     6=== The preset ===
     7
     8{{{
     9#!preset
     10<?xml version="1.0" encoding="UTF-8"?>
     11<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0" author="Tre_brock" version="[[revision]]_[[date]]">
     12  <group name="Backyard Objects" icon="presets/landmark/building.svg">
     13    <item name="Garage" type="node,closedway,relation" icon="presets/landuse/garages.svg">
     14      <label text="Garage"/>
     15      <key key="building" value="garage"/>
     16    </item>
     17    <item name="Shed" type="node,closedway,relation" icon="presets/landmark/building.svg">
     18      <label text="Shed"/>
     19      <key key="building" value="shed"/>
     20    </item>
     21    <item name="Private Swimming Pool" type="node,closedway,relation" icon="presets/sport/swimming.svg">
     22      <label text="Private Swimming Pool"/>
     23      <key key="leisure" value="swimming_pool"/>
     24      <key key="access" value="private"/>
     25    </item>
     26  </group>
     27</presets>
     28}}}