Je souhaite afficher l'emplacement d'une adresse dans Google Maps.
Comment obtenir la latitude et la longitude d'une adresse à l'aide de l'API Google Maps ?
Je souhaite afficher l'emplacement d'une adresse dans Google Maps.
Comment obtenir la latitude et la longitude d'une adresse à l'aide de l'API Google Maps ?
Une réponse au problème de Kandha ci-dessus :
Il jette le "java.io.IOException service non disponible" J'ai déjà donné ces permissions et inclus la bibliothèque... je peux obtenir la vue de la carte... il jette cette IOException au géocodeur...
J'ai juste ajouté un catch IOException après le try et cela a résolu le problème.
catch(IOException ioEx){
return null;
}
public void goToLocationFromAddress(String strAddress) {
//Create coder with Activity context - this
Geocoder coder = new Geocoder(this);
List<Address> address;
try {
//Get latLng from String
address = coder.getFromLocationName(strAddress, 5);
//check for null
if (address != null) {
//Lets take first possibility from the all possibilities.
try {
Address location = address.get(0);
LatLng latLng = new LatLng(location.getLatitude(), location.getLongitude());
//Animate and Zoon on that map location
mMap.moveCamera(CameraUpdateFactory.newLatLng(latLng));
mMap.animateCamera(CameraUpdateFactory.zoomTo(15));
} catch (IndexOutOfBoundsException er) {
Toast.makeText(this, "Location isn't available", Toast.LENGTH_SHORT).show();
}
}
} catch (IOException e) {
e.printStackTrace();
}
}
Geocoder coder = new Geocoder(this);
List<Address> addresses;
try {
addresses = coder.getFromLocationName(address, 5);
if (addresses == null) {
}
Address location = addresses.get(0);
double lat = location.getLatitude();
double lng = location.getLongitude();
Log.i("Lat",""+lat);
Log.i("Lng",""+lng);
LatLng latLng = new LatLng(lat,lng);
MarkerOptions markerOptions = new MarkerOptions();
markerOptions.position(latLng);
googleMap.addMarker(markerOptions);
googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng,12));
} catch (IOException e) {
e.printStackTrace();
}
public LatLang getLatLangFromAddress(String strAddress){
Geocoder coder = new Geocoder(this, Locale.getDefault());
List<Address> address;
try {
address = coder.getFromLocationName(strAddress,5);
if (address == null) {
return new LatLang(-10000, -10000);
}
Address location = address.get(0);
return new LatLang(location.getLatitude(), location.getLongitude());
} catch (IOException e) {
return new LatLang(-10000, -10000);
}
}
LatLang
est une classe pojo dans ce cas.
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
La permission n'est pas requise.
Je sais que j'arrive trop tard pour la contribution d'une question vieille de 10 ans, en l'an 2021. Le code suivant est un code complet et fonctionnel.
code pour activity_main.xml :-
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enter Address"
android:id="@+id/addressTV"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_alignParentStart="true" />
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/addressET"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/addressTV"
android:singleLine="true"
android:hint="1600 Pennsylvania Ave NW Washington DC 20502" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show Lat/Long"
android:id="@+id/addressButton"
android:layout_below="@+id/addressTV"
android:layout_toEndOf="@+id/addressTV"
android:layout_marginTop="50dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text=""
android:id="@+id/latLongTV"
android:layout_centerVertical="true"
android:layout_toEndOf="@+id/addressTV" />
AndroidManifest.xml Donnez la permission suivante :
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
MainActivity.java
public class MainActivity extends Activity {
Button addressButton;
TextView addressTV;
TextView latLongTV;
EditText addressET;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
addressET = findViewById(R.id.addressET);
addressTV = (TextView) findViewById(R.id.addressTV);
latLongTV = (TextView) findViewById(R.id.latLongTV);
addressButton = (Button) findViewById(R.id.addressButton);
addressButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
String address = addressET.getText().toString();
GeocodingLocation locationAddress = new GeocodingLocation();
locationAddress.getAddressFromLocation(address,
getApplicationContext(), new GeocoderHandler());
}
});
}
private class GeocoderHandler extends Handler {
@Override
public void handleMessage(Message message) {
String address;
switch (message.what) {
case 1:
Bundle bundle = message.getData();
address = bundle.getString("address");
break;
default:
address = null;
}
latLongTV.setText(address);
}
}
}
GeocodingLocation.java
public class GeocodingLocation {
public static void getAddressFromLocation(String locationAddress, Context context, Handler handler) {
Thread thread = new Thread() {
@Override
public void run() {
Geocoder geocoder = new Geocoder(context, Locale.getDefault());
String result = null;
try {
List addressList = geocoder.getFromLocationName(locationAddress,1);
if (addressList != null && addressList.size() > 0){
Address address = (Address) addressList.get(0);
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append(address.getLatitude()).append("\n");
stringBuilder.append(address.getLongitude()).append("\n");
result = stringBuilder.toString();
}
} catch (IOException e) {
e.printStackTrace();
} finally {
Message message = Message.obtain();
message.setTarget(handler);
if (result != null){
message.what = 1;
Bundle bundle = new Bundle();
result = "Address : "+locationAddress+
"\n\n\nLatitude and longitude\n"+result;
bundle.putString("address",result);
message.setData(bundle);
}
message.sendToTarget();
}
}
};
thread.start();
}
}
Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.
0 votes
J'ai eu le même problème. Regardez ma solution ici. stackoverflow.com/a/19170557/2621050