类 GeolocationPayload

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

public class GeolocationPayload
extends java.lang.Object
implements java.io.Serializable
Request body.

Please see Geolocation Requests and Request Body for more detail.

The following fields are supported, and all fields are optional:

另请参阅:
序列化表格
  • 嵌套类概要

    嵌套类 
    修饰符和类型 说明
    static class  GeolocationPayload.GeolocationPayloadBuilder  
  • 字段概要

    字段 
    修饰符和类型 字段 说明
    java.lang.String carrier
    The carrier name.
    CellTower[] cellTowers
    An array of cell tower objects.
    java.lang.Boolean considerIp
    Specifies whether to fall back to IP geolocation if wifi and cell tower signals are not available.
    java.lang.Integer homeMobileCountryCode
    The mobile country code (MCC) for the device's home network.
    java.lang.Integer homeMobileNetworkCode
    The mobile network code (MNC) for the device's home network.
    java.lang.String radioType
    The mobile radio type.
    WifiAccessPoint[] wifiAccessPoints
    An array of WiFi access point objects.
  • 构造器概要

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

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

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

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

    • homeMobileCountryCode

      public java.lang.Integer homeMobileCountryCode
      The mobile country code (MCC) for the device's home network.
    • homeMobileNetworkCode

      public java.lang.Integer homeMobileNetworkCode
      The mobile network code (MNC) for the device's home network.
    • radioType

      public java.lang.String radioType
      The mobile radio type. Supported values are "lte", "gsm", "cdma", and "wcdma". While this field is optional, it should be included if a value is available, for more accurate results.
    • carrier

      public java.lang.String carrier
      The carrier name.
    • considerIp

      public java.lang.Boolean considerIp
      Specifies whether to fall back to IP geolocation if wifi and cell tower signals are not available. Note that the IP address in the request header may not be the IP of the device. Defaults to true. Set considerIp to false to disable fall back.
    • cellTowers

      public CellTower[] cellTowers
      An array of cell tower objects. See CellTower.
    • wifiAccessPoints

      public WifiAccessPoint[] wifiAccessPoints
      An array of WiFi access point objects. See WifiAccessPoint.
  • 构造器详细资料

  • 方法详细资料

    • toString

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