我怎样才能在立交桥 Turbo 中获得特定区域的所有住宅节点?

how can i get all the residential nodes in a specific region in overpass turbo?

我是 osm 查询的新手,我使用 overpass turbo 探索它,所以我正在尝试使用预定义 ID 获取特定方法代码看起来像这样如果有人想测试

[bbox:40.73112,-73.89061,40.73391,-73.88807];
// gather results
(
  way(5703091);
);
// print results
out body;
>;
out skel qt;

当我在数据视图中浏览 XML 文件时,我看到这条路包含了所有这些节点

  <way id="5703091">
    <nd ref="42839143"/>
    <nd ref="8219742075"/>
    <nd ref="42807002"/>
    <nd ref="42839146"/>
    <nd ref="42839155"/>
    <nd ref="42839161"/>
    <nd ref="42839168"/>
    <nd ref="2875111804"/>
    <nd ref="42839172"/>

有没有一种方法可以在地图视图中显示这些节点,而无需为每个节点单独分配查询 我尝试使用节点(5703091);但是办公室没用,因为这是一种方式

在立交桥涡轮增压中试试这个

way(5703091)->.Way;
node(w.Way);
out center;
.Way out geom;