Will it be possible to add more than one polyline to MapView?
According to API :
setPolyline(polyline)
Add MapPolyline object to be rendered on the map.
but in reality it allows to SET, not ADD - will it stay like that? According to the name - it is likely, but would be good to clarify.
Or course I'd love to have possibility to add more than one polyline :)
What I tried:
var p1 = new Ui.MapPolyline();
p1.addLocation(...
p1.addLocation(...
MapView.setPolyline(p1);
var p2 = new Ui.MapPolyline();
p2.addLocation(..
p2.addLocation(...
MapView.setPolyline(p2);
and only p2 is visible