Class MapMatchedCoordinates
Package com.here.sdk.routing
Class MapMatchedCoordinates
- java.lang.Object
-
- com.here.sdk.routing.MapMatchedCoordinates
-
public final class MapMatchedCoordinates extends java.lang.ObjectInformation about the user defined coordinates and where they match to the map.
-
-
Field Summary
Fields Modifier and Type Field Description GeoCoordinatesmatchedCoordinatesMap-matched geographic coordinates.GeoCoordinatesoriginalCoordinatesThe user defined geographic coordinates.
-
Constructor Summary
Constructors Constructor Description MapMatchedCoordinates(GeoCoordinates originalCoordinates, GeoCoordinates matchedCoordinates)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
-
originalCoordinates
@NonNull public GeoCoordinates originalCoordinates
The user defined geographic coordinates.
-
matchedCoordinates
@NonNull public GeoCoordinates matchedCoordinates
Map-matched geographic coordinates.
-
-
Constructor Detail
-
MapMatchedCoordinates
public MapMatchedCoordinates(@NonNull GeoCoordinates originalCoordinates, @NonNull GeoCoordinates matchedCoordinates)Creates a new instance.
- Parameters:
originalCoordinates-The user defined geographic coordinates.
matchedCoordinates-Map-matched geographic coordinates.
-
-