这种关系(https://nominatim.openstreetmap.org/details.php?place_id=198913696)是德国埃森(https://nominatim.openstreetmap.org/details.php?place_id=197694959)的8个较小的地区之一。
尽管如此:在搜索“埃森”时,Nominatim会为您提供这个小的子集作为第一个结果。这会导致一些意外的行为。例如,当使用立交桥涡轮在{{geocodeArea:Essen}}->。searchArea区域中搜索时;仅当您期望城市提供结果时,您才从这个小区域获得结果。如何改写Overdrive?还是我可以以某种方式纠正名词命题的行为?
[out:json][timeout:25];
// fetch area “Essen” to search in
{{geocodeArea:Essen}}->.searchArea;
// gather results
(
// query part for: “"andachtsstätte"”
node["amenity"="place_of_worship"](area.searchArea);
way["amenity"="place_of_worship"](area.searchArea);
relation["amenity"="place_of_worship"](area.searchArea);
);
// print results
out body;
>;
out skel qt;