public class GeolocationResult
extends java.lang.Object
A successful geolocation request will return a result defining a location and radius.
Please see Geolocation results for more detail.
Modifier and Type | Field and Description |
---|---|
double |
accuracy
accuracy : The accuracy of the estimated location, in meters. |
LatLng |
location
location : The user’s estimated latitude and longitude, in degrees. |
Constructor and Description |
---|
GeolocationResult() |
public LatLng location
location
: The user’s estimated latitude and longitude, in degrees. Contains one lat and
one lng subfield.public double accuracy
accuracy
: The accuracy of the estimated location, in meters. This represents the radius
of a circle around the given location
.