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?