TGMarkerPickResult


@interface TGMarkerPickResult : NSObject

Data structure holding the result of a marker selection that occured on the map view.

See -[TGMapView pickMarkerAt:] and [TGMapViewDelegate mapView:didSelectMarker:atScreenPosition:].

  • The geographic coordinates of the selected label

    Declaration

    Objective-C

    @property (readonly, nonatomic) CLLocationCoordinate2D coordinates;

    Swift

    var coordinates: CLLocationCoordinate2D { get }
  • The selected marker

    Declaration

    Objective-C

    @property (readonly, nonatomic) TGMarker *_Nonnull marker;

    Swift

    var marker: TGMarker { get }