Class NearbyPlace

java.lang.Object
com.here.sdk.search.NearbyPlace

public final class NearbyPlace extends Object

Represents the nearby place at the charging location. Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    The subset of the place's categories that are considered relevant as conveniences for drivers during EV charging.
    Approximate distance from the charging location to the place, in meters.
    Globally unique identifier of the HERE Place, enabling the client to fetch more information about the Place using the Lookup endpoint of the HERE Geocoding and Search API.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a new instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • placeID

      @NonNull public String placeID

      Globally unique identifier of the HERE Place, enabling the client to fetch more information about the Place using the Lookup endpoint of the HERE Geocoding and Search API.

    • categories

      @NonNull public List<String> categories

      The subset of the place's categories that are considered relevant as conveniences for drivers during EV charging. The set can include for example rest areas, cafes, and fast food restaurants. The set may be used for example to show icons associated with the EV charging location in a user interface. The categories are represented by ids defined in https://docs.here.com/geocoding-and-search/docs/places-category-system-full

    • distance

      @Nullable public Double distance

      Approximate distance from the charging location to the place, in meters.

  • Constructor Details

    • NearbyPlace

      public NearbyPlace()

      Creates a new instance.

  • Method Details