类 GeolocationResult

java.lang.Object
ai.nextbillion.maps.model.GeolocationResult
所有已实现的接口:
java.io.Serializable

public class GeolocationResult
extends java.lang.Object
implements java.io.Serializable
A Geolocation API result.

A successful geolocation request will return a result defining a location and radius.

Please see Geolocation responses for more detail.

另请参阅:
序列化表格
  • 字段概要

    字段 
    修饰符和类型 字段 说明
    double accuracy
    The accuracy of the estimated location, in meters.
    LatLng location
    The user’s estimated latitude and longitude.
  • 构造器概要

    构造器 
    构造器 说明
    GeolocationResult()  
  • 方法概要

    修饰符和类型 方法 说明
    java.lang.String toString()  

    从类继承的方法 java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • 字段详细资料

    • location

      public LatLng location
      The user’s estimated latitude and longitude.
    • accuracy

      public double accuracy
      The accuracy of the estimated location, in meters. This represents the radius of a circle around the returned location.
  • 构造器详细资料

  • 方法详细资料

    • toString

      public java.lang.String toString()
      覆盖:
      toString 在类中 java.lang.Object