Inherits from RMAnnotation : NSObject
Declared in RMUserLocation.h

Overview

The RMUserLocation class defines a specific type of annotation that identifies the user’s current location. You do not create instances of this class directly. Instead, you retrieve an existing RMUserLocation object from the userLocation property of the map view displayed in your application.

Tasks

Determining the User’s Position

Properties

heading

The heading of the user location. (read-only)

@property (nonatomic, readonly) CLHeading *heading

Discussion

The heading of the user location. (read-only)

This property is nil if the user location tracking mode is not RMUserTrackingModeFollowWithHeading.

Declared In

RMUserLocation.h

location

The current location of the device. (read-only)

@property (nonatomic, readonly) CLLocation *location

Discussion

The current location of the device. (read-only)

This property contains nil if the map view is not currently showing the user location or if the user’s location has not yet been determined.

Declared In

RMUserLocation.h

updating

A Boolean value indicating whether the user’s location is currently being updated. (read-only)

@property (nonatomic, readonly, getter=isUpdating) BOOL updating

Discussion

A Boolean value indicating whether the user’s location is currently being updated. (read-only)

Declared In

RMUserLocation.h