Class LocationDetails
Package com.here.sdk.search
Class LocationDetails
- java.lang.Object
-
- com.here.sdk.search.LocationDetails
-
public final class LocationDetails extends java.lang.ObjectContains geographical info about location
-
-
Field Summary
Fields Modifier and Type Field Description java.util.List<GeoCoordinates>accessPointsThe access points to the place, such as the points on a road or in a parking lot.GeoBoxboundingBoxThe geographic coordinates of the map bounding box containing the place.GeoCoordinatescoordinatesThe geographic coordinates of the place.booleancoordinatesInterpolatedTrueif has house number with coordinates interpolated from the address range.
-
Constructor Summary
Constructors Constructor Description LocationDetails(GeoCoordinates coordinates)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
coordinates
@NonNull public GeoCoordinates coordinates
The geographic coordinates of the place.
-
coordinatesInterpolated
public boolean coordinatesInterpolated
Trueif has house number with coordinates interpolated from the address range.
-
accessPoints
@NonNull public java.util.List<GeoCoordinates> accessPoints
The access points to the place, such as the points on a road or in a parking lot.
-
boundingBox
@Nullable public GeoBox boundingBox
The geographic coordinates of the map bounding box containing the place.
-
-
Constructor Detail
-
LocationDetails
public LocationDetails(@NonNull GeoCoordinates coordinates)Creates a new instance.
- Parameters:
coordinates-The geographic coordinates of the place.
-
-