This is a static archive of our old OpenStreetMap Help Site. Please post any new questions and answers at community.osm.org.

Displaying two or more bus lines on the user end

0

Hello, I would like to know how to show multiple bus lines simultaneously on the map. For example, how to superpose these two bus lines : https://www.openstreetmap.org/relation/1255722 et https://www.openstreetmap.org/relation/9433940 ?

asked 12 Nov '20, 22:39

julef's gravatar image

julef
9111
accept rate: 0%


One Answer:

1

You could try this query at Overpass Turbo:

[out:xml][timeout:25];

(
relation(1255722);
relation(9433940);
);

out body;
>;
out skel qt;

answered 13 Nov '20, 00:50

InsertUser's gravatar image

InsertUser
11.0k1369185
accept rate: 19%

Very good, it works well enough for me. ;)

(13 Nov '20, 17:13) julef

Source code available on GitHub .