można uzyskać adres z adresem i uzyskać szerokość i długość geograficzna:
Geocoder coder = new Geocoder(this);
List<Address> address;
try {
address = coder.getFromLocationName(strAddress,5);
if (address == null) {
return null;
}
Address location = address.get(0);
location.getLatitude();
location.getLongitude();
}
, a następnie porównać je z umieszczeniem
if (distance(mylocation.latitude, mylocation.longitude, location.getLatitude(), location.getLongitude()) < 0.1) { // if distance < 0.1
// launch the activity
}else {
finish();
}
/** calculates the distance between two locations in MILES */
private double distance(double lat1, double lng1, double lat2, double lng2) {
double earthRadius = 3958.75; // in miles, change to 6371 for kilometers
double dLat = Math.toRadians(lat2-lat1);
double dLng = Math.toRadians(lng2-lng1);
double sindLat = Math.sin(dLat/2);
double sindLng = Math.sin(dLng/2);
double a = Math.pow(sindLat, 2) + Math.pow(sindLng, 2)
* Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2));
double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
double dist = earthRadius * c;
return dist;
}
EDIT: Jak mówił @FelipeMosso możesz także użyć wartości distanceBetween, która oblicza przybliżoną odległość w metrach między dwiema lokalizacjami lub distanceTo, która daje odległość między miejscem, w którym się znajdujesz a destination ..
Co się stanie, gdy użytkownik próbował uruchomić aplikację i nie było w żądanym zakresie? – Prmths
Może to może pomóc: http://stackoverflow.com/questions/3652951/google-maps-api-get-coordinates-of-address. Zasadniczo musisz porównać dwa zestawy współrzędnych i ustalić, czy te dwie pary są wystarczająco blisko siebie. – Izmaki
@ Prima, aplikacja po prostu się nie otworzy :) –