Fel*_*sso 9 java gps android google-maps geofencing
我正在开发一个接收给定地址的Android应用程序.我想只允许应用程序在设备上运行,如果用户在该地址上,或者更接近它.
这可能只与google maps api有关吗?
您可以获取地址并从地址获取经度和纬度:
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();
}
Run Code Online (Sandbox Code Playgroud)
然后将其与您的位置进行比较:
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;
}
Run Code Online (Sandbox Code Playgroud)
编辑: 正如@FelipeMosso所说,你也可以使用distanceBetween来计算两个位置之间的近似距离(米)或距离,以便给出你所在位置和目的地之间的距离.