I posted this yesterday, but as I don't see it show up I'll try again: When I use https://overpass-turbo.eu/ on my phone in a webbrowser (Motorola, android 9, firefox chrome) it says "map intentionally left blank (received empty dataset)". If I run exactly the same query on the same area on my laptop it does return a dataset. I tried different queries in different browsers and for different areas but the problem persists. What can this be? How can I fix this? asked 15 May '23, 13:33 Silent
showing 5 of 8
show 3 more comments
|
Open overpass turbo on your device with the desired query. Go to export -> raw data directly from Overpass API. Save the result and take a look at it. Does it contain any error message? Or is it really empty?
Maybe you can share your query? It works for me with this one, on Motorola, Android 9 and Firefox. ;-)
Just to add to this, I regularly create queries on desktop, and share them with myself by email fro later use on mobile. I've not seen a problem yet...
Thanks for the replies so far.
No error is shown, just the usual header and then an empty elements. Full text of the returned raw data:
{ "version": 0.6, "generator": "Overpass API 0.7.60.2 e4cf9f7a", "osm3s": { "timestamp_osm_base": "2023-05-15T16:08:09Z", "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL." }, "elements": [
] }
Sure, but intuitively I'ld say it's not the query as I tried different queries and for each exactly the same query works on my laptop, but not on my phone. One example query is:
/ This has been generated by the overpass-turbo wizard. The original search was: “shop = bicycle” / [out:json][timeout:25]; // gather results ( // query part for: “shop=bicycle” node"shop"="bicycle"; way"shop"="bicycle"; relation"shop"="bicycle"; ); // print results out body;
Typing this made me think that maybe the issue is that the bound box fails to define. But makes no difference, works on laptop but not on phone. Code used:
/ This has been generated by the overpass-turbo wizard. The original search was: “shop = bicycle in Eindhoven” / [out:json][timeout:25]; // fetch area “Eindhoven” to search in {{geocodeArea:Eindhoven}}->.searchArea; // gather results ( // query part for: “shop=bicycle” node"shop"="bicycle"; way"shop"="bicycle"; relation"shop"="bicycle"; ); // print results out body;
Unfortunately parts of your query aren't visible due to bad formatting. It might be better to share a link to it instead (via the share button at overpass-turbo).
https://overpass-turbo.eu/s/1v3W
Works on my phone, the results are displayed after tapping run (Firefox 113, Android 10).