(ANdroid JNI) Bugfix - onLocationGetHorizontalAccuracy should return
double, not float
This commit is contained in:
parent
be5609269a
commit
2b5ece3804
|
@ -224,7 +224,7 @@ implements ConnectionCallbacks, OnConnectionFailedListener, LocationListener
|
||||||
*
|
*
|
||||||
* @return the horizontal accuracy of the current position.
|
* @return the horizontal accuracy of the current position.
|
||||||
*/
|
*/
|
||||||
public float onLocationGetHorizontalAccuracy()
|
public double onLocationGetHorizontalAccuracy()
|
||||||
{
|
{
|
||||||
return mCurrentLocation.getAccuracy();
|
return mCurrentLocation.getAccuracy();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue