String jsom ="{\"type\": \"Point\", \"coordinates\": [12596650.650729451, 2578687.1412320784]}"
GeoPoint geoPoint = new GeoPoint();
geoPoint.fromGeoJSON(json);
double latitude = geoPoint.getX();
double longitude = geoPoint.getY();
为什么转换出来的latitude值为1.2596650650729451,而不是12596650.650729451?