Changes between Initial Version and Version 1 of Ticket #16188, comment 10
- Timestamp:
- 2018-04-23T23:44:09+02:00 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16188, comment 10
initial v1 1 1 Replying to [comment:9 marxin]: 2 2 > {{{ 3 > #!java 3 4 > p.get("landuse") == "residential" 4 5 > }}} … … 6 7 > is different from 7 8 > {{{ 9 > #!java 8 10 > p.hasKey("landuse", "residential") 9 11 > }}} 10 12 11 Yes the good call is `p.hasTag("landuse", "residential")`. 13 Yes the good call is: 14 {{{ 15 #!java 16 p.hasTag("landuse", "residential") 17 }}} 18 12 19 `p.hasKey("landuse", "residential")` means `p` has `landuse=*` or `residential=*`