MMKLocationManager
class MMKLocationManager : NSObject |
Handles location updates and changes.
Summary
Instance methods
func subscribeForLocationUpdates(with subscriptionSettings: MMKLocationSubscriptionSettings, |
func requestSingleUpdate(withLocationListener locationListener: MMKLocationDelegate) |
func unsubscribe(withLocationListener locationListener: MMKLocationDelegate) |
func suspend() |
func resume() |
Instance methods
subscribeForLocationUpdates(with:locationListener:)
func subscribeForLocationUpdates(with subscriptionSettings: MMKLocationSubscriptionSettings, |
Subscribe for location update events. If the listener was already subscribed to updates from the LocationManager, subscription settings will be updated.
The class does not retain the object in the 'locationListener' parameter. It is your responsibility to maintain a strong reference to the target object while it is attached to a class.
Parameters |
|
subscriptionSettings |
Subscription settings. |
locationListener |
Location update listener. |
requestSingleUpdate(withLocationListener:)
func requestSingleUpdate(withLocationListener locationListener: MMKLocationDelegate) |
Subscribe to a single location update. If the listener was already subscribed to location updates, the previous subscription will be removed.
The class does not retain the object in the 'locationListener' parameter. It is your responsibility to maintain a strong reference to the target object while it is attached to a class.
Parameters |
|
locationListener |
Location update listener. |
unsubscribe(withLocationListener:)
func unsubscribe(withLocationListener locationListener: MMKLocationDelegate) |
Unsubscribe from location update events. Can be called for either MMKLocationManager::subscribeForLocationUpdatesWithSubscriptionSettings:locationListener: or MMKLocationManager::requestSingleUpdateWithLocationListener:. For MMKLocationManager::requestSingleUpdateWithLocationListener:, if an event was already received, MMKLocationManager::unsubscribeWithLocationListener: does not have any effect. If the listener is already unsubscribed, the method call is ignored.
The class does not retain the object in the 'locationListener' parameter. It is your responsibility to maintain a strong reference to the target object while it is attached to a class.
Parameters |
|
locationListener |
Listener passed to either MMKLocationManager::subscribeForLocationUpdatesWithSubscriptionSettings:locationListener: or MMKLocationManager::requestSingleUpdateWithLocationListener:. |
suspend()
func suspend() |
Stops updates for all subscriptions until resume() is called.
resume()
func resume() |
Resumes updates stopped by a suspend() call.