If I want to share my geocoded points in javascript and java, how is this possible?
In Javascript, points are indicated as
var point = GPoint(76.27562,9.97943);
In Java they
GeoPoint point = new GeoPoint(45005000, -93228900);
It seems that these are two different formats, and how can I convert them from one to another?
Jakob source
share