HereSDKAnnotation

@protocol HereSDKAnnotation <NSObject>

An abstract class that represents an annotation object. You can create annotation objects to indicate a specific point on the map.

  • The coordinate point of the annotation.

    Declaration

    Objective-C

    @required
    @property (readonly, nonatomic) CLLocationCoordinate2D coordinate;

    Swift

    var coordinate: CLLocationCoordinate2D { get }
  • Undocumented

    Declaration

    Objective-C

    @property (nullable, nonatomic, readonly) NSString *title

    Swift

    optional var title: String? { get }
  • Undocumented

    Declaration

    Objective-C

    @property (nullable, nonatomic, readonly) NSString *subtitle

    Swift

    optional var subtitle: String? { get }