node(46.777, 6.653, 46.79, 6.66);
out;
node["emergency"="defibrillator"](46.777, 6.653, 46.79, 6.66);
out;
["key"]
: Objects with this key and any value[!"key"]
: Objects without this key and any value["key"="value"]
: Objects with this key and this value["key"!="value"]
: Objects with this key without this value["key"~"value"]
: Objects with this key and a value corresponding to this regular expression["key"!~"value"]
: Objects with this key and a value not match this regular expression
node["emergency"="defibrillator"]({{bbox}});
out;
Based on Nominatim
{{geocodeArea:"Yverdon-les-Bains"}}->.searchArea;
node["emergency"="defibrillator"](area.searchArea);
out;
node["emergency"="defibrillator"](newer:"{{date:1 month}}")({{bbox}});
out;
node["emergency"="defibrillator"](user:"<username>")({{bbox}});
out;
way["amenity"="restaurant"]({{bbox}});
out center;
way["amenity"="restaurant"]({{bbox}});
(._;>;);
out;
[bbox:{{bbox}}];
(
node["amenity"="restaurant"];
way["amenity"="restaurant"];
);
out center;
node["amenity"~"restaurant|bar"]({{bbox}});
out;
~
because several values are possible
node["amenity"="restaurant"]["cuisine"~"italian"]({{bbox}});
out;