Class ProximitySearches
-
Constructor Summary
ConstructorsConstructorDescriptionProximitySearches(OptimizedMapLayers optimizedMap) Creates aProximitySearchesfrom an Optimized Map for Location Library. -
Method Summary
Modifier and TypeMethodDescription<GC extends GeoCoordinateHolder>
ProximitySearch<GC,Vertex> Creates aProximitySearch.<GC> ProximitySearch<GC,Vertex> vertexGeometrySegments(GeoCoordinateAdapter<GC> adapter) Creates aProximitySearchusing aGeoCoordinateAdapter.static <GC extends GeoCoordinateHolder>
ProximitySearch<GC,Vertex> vertexGeometrySegments(GeometryLayer geometryLayer) static <GC> ProximitySearch<GC,Vertex> vertexGeometrySegments(GeometryLayer optimizedMap, GeoCoordinateAdapter<GC> adapter) <GC extends GeoCoordinateHolder>
ProximitySearch<GC,Vertex> vertices()Creates aProximitySearch.<GC> ProximitySearch<GC,Vertex> vertices(GeoCoordinateAdapter<GC> adapter) Creates aProximitySearchusing aGeoCoordinateAdapter.static <GC extends GeoCoordinateHolder>
ProximitySearch<GC,Vertex> vertices(GeometryLayer geometryLayer) static <GC> ProximitySearch<GC,Vertex> vertices(GeometryLayer optimizedMap, GeoCoordinateAdapter<GC> adapter)
-
Constructor Details
-
ProximitySearches
Creates aProximitySearchesfrom an Optimized Map for Location Library.
-
-
Method Details
-
vertices
Creates aProximitySearch.This search returns at most one result for a single vertex, the closest point on that vertex' geometry.
Use this overload of the method when the geographical coordinate type implements
GeoCoordinateHolder. -
vertices
Creates aProximitySearchusing aGeoCoordinateAdapter.This search returns at most one result for a single vertex, the closest point on that vertex' geometry.
Use this overload of the method when the geographical coordinate type does not implement
GeoCoordinateHolder. -
vertexGeometrySegments
Creates aProximitySearch.This search (possibly) returns multiple results for a single vertex, at most one per geometry segment (pair of points) in its geometry.
Use this overload of the method when the geographical coordinate type implements
GeoCoordinateHolder. -
vertexGeometrySegments
Creates aProximitySearchusing aGeoCoordinateAdapter.This search (possibly) returns multiple results for a single vertex, at most one per geometry segment (pair of points) in its geometry.
Use this overload of the method when the geographical coordinate type does not implement
GeoCoordinateHolder. -
vertices
public static <GC extends GeoCoordinateHolder> ProximitySearch<GC,Vertex> vertices(GeometryLayer geometryLayer) -
vertices
public static <GC> ProximitySearch<GC,Vertex> vertices(GeometryLayer optimizedMap, GeoCoordinateAdapter<GC> adapter) -
vertexGeometrySegments
public static <GC extends GeoCoordinateHolder> ProximitySearch<GC,Vertex> vertexGeometrySegments(GeometryLayer geometryLayer) -
vertexGeometrySegments
public static <GC> ProximitySearch<GC,Vertex> vertexGeometrySegments(GeometryLayer optimizedMap, GeoCoordinateAdapter<GC> adapter)
-