为了使用,我的应用需要一个位置API。 我打算使用Mapbox平台来定制它的设计(自谷歌地图以来) 就我而言,它不提供这种级别的定制。
文档说我们应该在构建位置时使用Google Play API 应用:
Google Play服务位置API优于Android 框架位置API(android.location)作为一种添加方式 对您的应用的位置感知。如果您目前正在使用Android 框架位置API,强烈建议您切换到 Google Play尽快提供服务位置API。
我的问题是: 在GPS准确度方面,Google Play API是最有效的API吗? 或者我应该使用LocationManager和LocationListener的方式吗?
我需要准确性。我应该使用哪一个? 感谢。
答案 0 :(得分:10)
在android中也有三种类型的位置:
所以,根据我的编码经验,我开始知道如果你使用:
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 5000, 10, new MyLocationListener());
您将获得精确到14位以上的小数位。
但如果你像这样使用它们的融合:
LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, my_google_listener);
您将获得精确到6到7位小数。试试吧 !!! reference
但请注意,GPS提供商需要时间来获取位置,而谷歌位置的速度要快得多,因为它会将API调用数据传输到谷歌服务器数据库。
当谷歌提供商通过移动或wifi数据获取位置时,GPS可脱机工作。
答案 1 :(得分:5)
使用FusedLocationProviderApi并将LocationRequest优先级设置为PRIORITY_HIGH_ACCURACY
这是用于准确定位的最新API,谷歌建议使用相同的。
检查准确度详情here。
基本上,Google Play服务API具有通过融合GPS + NetworkProvider +被动提供商来获取准确位置的智能。
答案 2 :(得分:1)
您应该使用LocationManager来提高准确性。 你也可以使用这个类。
//GPSTracker.java
import android.app.AlertDialog;
import android.app.Service;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.IBinder;
import android.provider.Settings;
import android.util.Log;
public class GPSTracker extends Service implements LocationListener {
private final Context mContext;
// flag for GPS status
boolean isGPSEnabled = false;
// flag for network status
boolean isNetworkEnabled = false;
// flag for GPS status
boolean canGetLocation = false;
Location location; // location
double latitude; // latitude
double longitude; // longitude
float bearing; // bearing
// The minimum distance to change Updates in meters
private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10; // 10 meters
// The minimum time between updates in milliseconds
private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute
// Declaring a Location Manager
protected LocationManager locationManager;
public GPSTracker(Context context) {
this.mContext = context;
getLocation();
}
public Location getLocation() {
try {
locationManager = (LocationManager) mContext
.getSystemService(LOCATION_SERVICE);
// getting GPS status
isGPSEnabled = locationManager
.isProviderEnabled(LocationManager.GPS_PROVIDER);
// getting network status
isNetworkEnabled = locationManager
.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if (!isGPSEnabled && !isNetworkEnabled) {
// no network provider is enabled
} else {
this.canGetLocation = true;
if (isNetworkEnabled) {
locationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
Log.d("Network", "Network");
if (locationManager != null) {
location = locationManager
.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
bearing = location.getBearing();
}
}
}
// if GPS Enabled get lat/long using GPS Services
if (isGPSEnabled) {
if (location == null) {
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
Log.d("GPS Enabled", "GPS Enabled");
if (locationManager != null) {
location = locationManager
.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
bearing = location.getBearing();
}
}
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
return location;
}
/**
* Stop using GPS listener
* Calling this function will stop using GPS in your app
* */
public void stopUsingGPS(){
if(locationManager != null){
locationManager.removeUpdates(GPSTracker.this);
}
}
/**
* Function to get latitude
* */
public double getLatitude(){
if(location != null){
latitude = location.getLatitude();
}
// return latitude
return latitude;
}
/**
* Function to get longitude
* */
public double getLongitude(){
if(location != null){
longitude = location.getLongitude();
}
// return longitude
return longitude;
}
public float getBearing() {
if (location != null) {
bearing = location.getBearing();
}
return bearing;
}
/**
* Function to check GPS/wifi enabled
* @return boolean
* */
public boolean canGetLocation() {
return this.canGetLocation;
}
/**
* Function to show settings alert dialog
* On pressing Settings button will lauch Settings Options
* */
public void showSettingsAlert(){
AlertDialog.Builder alertDialog = new AlertDialog.Builder(mContext);
// Setting Dialog Title
alertDialog.setTitle("GPS is settings");
// Setting Dialog Message
alertDialog.setMessage("GPS is not enabled. Do you want to go to settings menu?");
// On pressing Settings button
alertDialog.setPositiveButton("Settings", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int which) {
Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
mContext.startActivity(intent);
}
});
// on pressing cancel button
alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
// Showing Alert Message
alertDialog.show();
}
@Override
public void onLocationChanged(Location location) {
}
@Override
public void onProviderDisabled(String provider) {
}
@Override
public void onProviderEnabled(String provider) {
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public IBinder onBind(Intent arg0) {
return null;
}
}
//MainActivity.java
GPSTracker gps = new GPSTracker(MainActivity.this);
答案 3 :(得分:1)
FusedLocationProviderApi。您应该使用FusedLocationProviderClient,并且应该添加ACCESS_FINE_LOCATION
权限,而不是ACCESS_COARSE_LOCATION
以获得最准确的位置。
阅读this文章,了解为什么FusedLocationProviderClient
是最佳解决方案。
答案 4 :(得分:0)
根据我的经验,Google服务位置API最好在以下方面使用:
根据我的经验,使用Google服务,在许多情况下,准确度足以满足地图应用程序(即几十米)的位置不需要GPS数据。但是,FusedLocationProvider也可能出现这种情况,可能是电池使用数量有例外。
总而言之,如果您没有不使用Google服务的论据(例如 - 您定位到无法使用的国家/地区,或想要通过其他市场进行分发),则应使用其位置API。< / p>