类 Geometry

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

public class Geometry
extends java.lang.Object
implements java.io.Serializable
The geometry of a Geocoding result.
另请参阅:
序列化表格
  • 字段概要

    字段 
    修饰符和类型 字段 说明
    Bounds bounds
    The bounding box which can fully contain the returned result (optionally returned).
    LatLng location
    The geocoded latitude/longitude value.
    LocationType locationType
    The level of certainty of this geocoding result.
    Bounds viewport
    The recommended viewport for displaying the returned result.
  • 构造器概要

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

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

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

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

    • bounds

      public Bounds bounds
      The bounding box which can fully contain the returned result (optionally returned). Note that these bounds may not match the recommended viewport. (For example, San Francisco includes the Farallon islands, which are technically part of the city, but probably should not be returned in the viewport.)
    • location

      public LatLng location
      The geocoded latitude/longitude value. For normal address lookups, this field is typically the most important.
    • locationType

      public LocationType locationType
      The level of certainty of this geocoding result.
    • viewport

      public Bounds viewport
      The recommended viewport for displaying the returned result. Generally the viewport is used to frame a result when displaying it to a user.
  • 构造器详细资料

  • 方法详细资料

    • toString

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