I need help to put markers on Android Map. I am receiving a JSON string from a WebService that use GeoJSON. I could parse it, but the coordinate system is not the traditional, and I don't know how to put the markers on map.
This is the example that I am using:
double latitude = 5441638.1188548915 // this value came from WS
double longitude = 6352789.023657421 // this value came from WS
map.addMarker(new MarkerOptions()
.title(jsonObj.getString("Restaurants"))
.position(new LatLng(
latitude,
longitude
))
);
What i want to know if is there is any method to convert the coordinates to the classic system (ex: -30.5645, -50.2328) , or an Android method to work with the other system of coordinates. I hope you can help me, Thanks!