I want to draw a polyline on my map
My coordinates taken from google maps is
log lat
23.63733 | 37.94721 |
23.63762 | 37.94672 |
23.63704 | 37.94333 |
i am trying to draw a polyline with function
Polyline lineGeometry = new Polyline();
lineGeometry.startPath(x,y);
lineGeometry.lineTo(x,y);
lineGeometry.lineTo(x,y);
i dont now how to convert the coordinates from table to x,y values to represent the correct points on map?
If it's making sure that your line is in the correct spatial reference (the one of your map), I've just replied to your other post in a different thread, so I won't duplicate it here. If there's something else that's not working, let me know.
~elise