开发者

Android getting best location

I want the exact location of user. So I created two listeners as:

locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, mGPSListener);
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, mNetworkListener);

I am listening for location updates from both the network and gps providers and wanted to check the accurary of locations obtained by both so that I can pick the accurate location. I just want to ask am I using the right way of acheiving that...??? if not, please provide some guideline how to do thi开发者_Go百科s...???

My example code is:

if(MyGPSListener.currentLocation != null) {
        if(MyNetworkListener.currentLocation != null) {
            if(MyGPSListener.currentLocation.getAccuracy() <= MyNetworkListener.currentLocation.getAccuracy()) {
                useGPSLocation();

            }
            else if(MyGPSListener.currentLocation.getAccuracy() > MyNetworkListener.currentLocation.getAccuracy()) {
                useNetworkLocation();

            }
        }
        else {
            useGPSLocation();

        }

    }
    else if(MyNetworkListener.currentLocation != null){
        useNetworkLocation();

    }


You should take a look at: http://developer.android.com/guide/topics/location/obtaining-user-location.html Especially the function: isBetterLocation

I would probably use something like the isBetterLocation. Since it's actually quite important to see how old the location updates are. At least if you really want to know where the user is know and not where the user were.

But you can surely implement a time check in your own function which you described.


You can use https://github.com/balwinderSingh1989/androidBestLocationTracker

Android Best Location Tracker is an Android library that helps you get user best location with a object named BaseLocationStrategy that would give a accurate location using accuracy alogrithm.

It has added support till latest android api levels and can fetch location in background with ease.

For usage, refer "READ ME" of project.


You can check Google's offical document. Define a model for the best performance

And Validate the accuracy of a location fix:

  1. Check if the location retrieved is significantly newer than the previous estimate.
  2. Check if the accuracy claimed by the location is better or worse than the previous estimate.
  3. Check which provider the new location is from and determine if you trust it more.

Android getting best location

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜