此致
我只是想问一下Google Map Api密钥版本2是否有任何方法或类别,我可以通过纬度和经度来获取当前位置(地址)。在谷歌地图Api版本1中有类Geocoder,我们可以使用它来改变经纬度的纬度和经度。但我认为我们不能在Api v2中使用Geocoder类,因为它使用Fragment类。有人有解决方案吗?谢谢。
答案 0 :(得分:0)
Geocoder
不属于Maps API v1,您可以将其与API v2一起使用。
答案 1 :(得分:0)
是的,GeoCoder非常可怕。在某些设备上,这不能正常工作。你可以这样做,这是独立的...做一个json请求:
如果您需要其他方式,该代码将帮助您。 ADRESS - > LOCATION
public static JSONObject getLocationInfo(String address) {
HttpGet httpGet = new HttpGet("http://maps.google.com/maps/api/geocode/json?address=" +address+"&ka&sensor=false");
HttpClient client = new DefaultHttpClient();
HttpResponse response;
StringBuilder stringBuilder = new StringBuilder();
try {
response = client.execute(httpGet);
HttpEntity entity = response.getEntity();
InputStream stream = entity.getContent();
int b;
while ((b = stream.read()) != -1) {
stringBuilder.append((char) b);
}
} catch (ClientProtocolException e) {
} catch (IOException e) {
}
JSONObject jsonObject = new JSONObject();
try {
jsonObject = new JSONObject(stringBuilder.toString());
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return jsonObject;
}
public static GeoPoint getGeoPoint(JSONObject jsonObject) {
Double lon = new Double(0);
Double lat = new Double(0);
try {
lon = ((JSONArray)jsonObject.get("results")).getJSONObject(0)
.getJSONObject("geometry").getJSONObject("location")
.getDouble("lng");
lat = ((JSONArray)jsonObject.get("results")).getJSONObject(0)
.getJSONObject("geometry").getJSONObject("location")
.getDouble("lat");
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return new GeoPoint((int) (lat * 1E6), (int) (lon * 1E6));
}