是否可以从http://overpass-turbo.eu/(或直接从openstreetmap)获取JSON的结果?
我的要求是:
(
way
(around:2000,55.693309807744484,21.151986122131348)
[highway~"^(primary|secondary|tertiary|residential)$"]
[name];
>;);out;
答案 0 :(得分:4)
您需要在声明前添加此行:
[out:json]; ...
答案 1 :(得分:1)
这是查询:http://overpass-api.de/api/interpreter?data=[out:json]%20;%20(%20way%20(around:2000,55.693309807744484,21.151986122131348)%20[highway~%22 ^(主要|次要|大|住宅)$%22]%20 [名称];%20%3E;);%20out;
你的遗失:
[out:json]
;
<your part>
%20
之前和out;