Dim*_*ris 14 android google-maps-android-api-2
我想在我的应用程序中使用map api 2进行反向地理编码.但我不知道该怎么做?有什么想法吗?
ian*_*ake 15
使用地理编码器:
Geocoder geoCoder = new Geocoder(context);
List<Address> matches = geoCoder.getFromLocation(latitude, longitude, 1);
Address bestMatch = (matches.isEmpty() ? null : matches.get(0));
Run Code Online (Sandbox Code Playgroud)
您可以通过两种方式进行反向地理编码
地理编码器 它应该在一个单独的线程中执行:
private class FindPlaces extends AsyncTask<String, Void, List<Address>> {
@Override
protected List<Address> doInBackground(String... params) {
if (act == null)
this.cancel(true);
Geocoder geocoder = new Geocoder(act, Locale.getDefault());
try {
addresses = geocoder.getFromLocation(
Double.parseDouble(params[0]),
Double.parseDouble(params[1]), result);
} catch (IOException e) {
e.printStackTrace();
}
return addresses;
}
@Override
protected void onPostExecute(List<Address> addresses) {
super.onPostExecute(addresses);
if (act == null)
return;
if (addresses == null || addresses.size() == 0) {
Toast.makeText(act, "No location found", Toast.LENGTH_SHORT)
.show();
return;
}
address = addresses.get(0);
String aLine = "";
for (int addr = 0; addr <= address.getMaxAddressLineIndex() - 2; addr++) {
aLine = aLine.length() > 0 ? aLine + ", "
+ String.valueOf(address.getAddressLine(addr)) : String
.valueOf(address.getAddressLine(addr));
}
address.setAddressLine(0, aLine);
if (act == null)
return;
}
}
Run Code Online (Sandbox Code Playgroud)
Google API 1)在Google控制台中启用Google Maps Geocoding API 2)在此网址中连接您的latlong https://maps.googleapis.com/maps/api/geocode/json?latlng=
例如:https://maps.googleapis.com/maps/api/geocode/json ? latlng = yourlatitude,yoururlongitude & key = yourrapikey
用你的latlog调用下面的asyntask这对我有用..
public class ReverseGecoding extends AsyncTask<Double, Void, String> {
Context context;**
private Address address;
private String GEOCODINGKEY = "&key=YourKey";
private String REVERSE_GEOCODING_URL = "https://maps.googleapis.com/maps/api/geocode/json?latlng=";
public ReverseGecoding(Context context) {
this.context = context;
this.listener = listener;
}
@Override
protected String doInBackground(Double... params) {
if (params[0] != null) {
String result = "";
try {
String mUrl = REVERSE_GEOCODING_URL + params[0] + ","
+ params[1] + GEOCODINGKEY;
URL url = new URL(mUrl);
HttpURLConnection httpsURLConnection = (HttpURLConnection) url.openConnection();
httpsURLConnection.setReadTimeout(10000);
httpsURLConnection.setConnectTimeout(15000);
httpsURLConnection.setDoInput(true);
httpsURLConnection.setRequestMethod("GET");
httpsURLConnection.connect();
int mStatus = httpsURLConnection.getResponseCode();
if (mStatus == 200)
return readResponse(httpsURLConnection.getInputStream()).toString();
return result;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
private static StringBuilder readResponse(InputStream inputStream) throws IOException, NullPointerException {
BufferedReader r = new BufferedReader(new InputStreamReader(inputStream));
StringBuilder stringBuilder = new StringBuilder();
String line;
while ((line = r.readLine()) != null) {
stringBuilder.append(line);
}
return stringBuilder;
}
}
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
17771 次 |
最近记录: |