我正在使用 Google Maps API 级别 10 开发 2.3.3。
我使用下面的代码来获取 USER 输入的位置。
我使用的 URL 属于 Google MAPs API v2 或 v3。
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;
}
执行此操作后,另一个方法将该 JSONObject 转换为 GeoPoint。
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));
}
使用上面的代码 - 我无法通过 PIN 码搜索获得位置。如何通过 PIN 码搜索获得位置?