From this call:
I'm trying to get a JSON return. Reading the API, I don't know where to put the [out:json]:
Answer
You can't get a JSON result from the XAPI-compatibility endpoint. Instead, use the standard Overpass API (“interpreter
”) endpoint and put the [out:json];
at the very start of your ql query:
https://www.overpass-api.de/api/interpreter?data=[out:json];node[highway=speed_camera](43.46669501043081,-5.708215989569187,43.588927989569186,-5.605835010430813);out%20meta;
(note the different ordering of the bbox coordinates compared to the xapi request!)
No comments:
Post a Comment