PickMapItemsResult

public class PickMapItemsResult
extension PickMapItemsResult: NativeBase
extension PickMapItemsResult: Hashable

Carries results from the picking of map items on the map scene.

  • List of marker groups (represented by a single cluster marker) or individual markers belonging to a cluster at the location of picking.

    Declaration

    Swift

    public var clusteredMarkers: [MapMarkerCluster.Grouping] { get }
  • List of markers at the location of picking.

    Declaration

    Swift

    public var markers: [MapMarker] { get }
  • List of 3d markers at the location of picking.

    Declaration

    Swift

    public var markers3d: [MapMarker3D] { get }
  • List of polylines at the location of picking.

    Declaration

    Swift

    public var polylines: [MapPolyline] { get }
  • List of polygons at the location of picking.

    Declaration

    Swift

    public var polygons: [MapPolygon] { get }