overpass-turbo
overpass-turbo copied to clipboard
Option to turn off nodes
Ability to turn off nodes to visualize roadways without the clutter.
Simply use out geom
[out:json][timeout:25];
{{geocodeArea:Innsbruck}}->.searchArea;
way["highway"="cycleway"](area.searchArea);
out geom;
It doesn't appear to make a difference. I still see nodes between segments.
The connecting nodes are not rendered by themselves. Two semi-transparent lines rendered above each other give rise to this visual impression.
You may want to customize the style using MapCSS as follows:
[out:json][timeout:25];
{{geocodeArea:Innsbruck}}->.searchArea;
way["highway"="cycleway"](area.searchArea);
out geom;
{{style:
way { opacity: 1 }
}}
I think what @RevitArkitek means is that short pieces of way get rendered as what looks like nodes unless you zoom all the way in. Unfortunately what seems to count as a small piece changes depending on the zoom level, so making them invisible just hides sections of your output. Using the above example I get:
And closer to the bridge:
The issues are the red circles. I do not know how to tell it not to try and be clever, and to just render everything as a line.
Any ideas?
@JamesMolson Thank you for succinctly describing what I'm seeing with images.
@RevitArkitek @JamesMolson
{{style:
way:placeholder, relation:placeholder
{
fill-opacity:0;
opacity:0;
}
}}
You can do this, but it leaves gap between the lines.
[edit] Forgot in settings, there is the option "Don't display small features as POIs"