Class PickMapItemsResult
Package com.here.sdk.mapview
Class PickMapItemsResult
- java.lang.Object
-
- com.here.NativeBase
-
- com.here.sdk.mapview.PickMapItemsResult
-
public final class PickMapItemsResult extends NativeBase
Carries results from the picking of map items on the map scene.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<MapMarkerCluster.Grouping>getClusteredMarkers()Gets list of clustered marker groups at the location of picking.java.util.List<MapMarker>getMarkers()Gets list of markers at the location of picking.java.util.List<MapMarker3D>getMarkers3d()Gets list of 3d markers at the location of picking.java.util.List<MapPolygon>getPolygons()Gets list of polygons at the location of picking.java.util.List<MapPolyline>getPolylines()Gets list of polylines at the location of picking.
-
-
-
Method Detail
-
getClusteredMarkers
@NonNull public java.util.List<MapMarkerCluster.Grouping> getClusteredMarkers()
Gets list of clustered marker groups at the location of picking.
- Returns:
List of marker groups (represented by a single cluster marker) or individual markers belonging to a cluster at the location of picking.
-
getMarkers
@NonNull public java.util.List<MapMarker> getMarkers()
Gets list of markers at the location of picking.
- Returns:
List of markers at the location of picking.
-
getMarkers3d
@NonNull public java.util.List<MapMarker3D> getMarkers3d()
Gets list of 3d markers at the location of picking.
- Returns:
List of 3d markers at the location of picking.
-
getPolylines
@NonNull public java.util.List<MapPolyline> getPolylines()
Gets list of polylines at the location of picking.
- Returns:
List of polylines at the location of picking.
-
getPolygons
@NonNull public java.util.List<MapPolygon> getPolygons()
Gets list of polygons at the location of picking.
- Returns:
List of polygons at the location of picking.
-
-