So i was wondering if this edition is able to do such a thing. Currently, im drawing a bus route in blue with illustrated waypoints and that is fine so far.
The passanger needs to walk his way up to the bus stop and i want to illustrate that route as ' traced lines ' or traced dots. is it possible to do it using the object : *MapPolylineStyle mapPolylineStyle = new MapPolylineStyle();
///////////////////////////////////////////////////////////////////////////////////////////////////////////// edit in the future : well for anyone running into this issue as of now. thanks to the user @datasun i was able to update from Heremaps Lite edition to Explorer Edition where they have a lot more features regarding the maps and polylines.
you can pretty much do the following code to achieve dashedLines to illustrate a pedestrian route :
DashPattern dashPattern = new DashPattern(2,10);
routeMapPolyline.setDashPattern(dashPattern);
where the first parameter means firstGapLength and the second firstDashLength.