I have found that Google map provides PolylineOptions but I haven't been able to find anything for Osmdroid.
If any one can suggest a solution with an example it would be very helpfull.
I have found that Google map provides PolylineOptions but I haven't been able to find anything for Osmdroid.
If any one can suggest a solution with an example it would be very helpfull.
Copyright © 2021 Jogjafile Inc.
You may not be able to draw a real curved line, but you should be able to create a Polyline which would appear to be curved. Polyline composes from straight line segments which are not curved.
It's seems that also the Google Map API you are referring to supports only Polylines without curves. See Google Map documentation
Polylines and Polygons are supported by the Osmdroid library. Detail can be found in the Osmdroid documentation.
You can create Polyline easily:
The tricky part would be to compute the points between your two known coordinates.