NavigationMapViewCourseTrackingDelegate
public protocol NavigationMapViewCourseTrackingDelegate : AnyObject, UnimplementedLogging
The NavigationMapViewCourseTrackingDelegate
provides methods for responding to the NavigationMapView
starting or stopping course tracking.
-
navigationMapViewDidStartTrackingCourse(_:)
Default implementationTells the receiver that the map is now tracking the user course.
Seealso
NavigationMapView.tracksUserCourseDefault Implementation
Declaration
Swift
func navigationMapViewDidStartTrackingCourse(_ mapView: NavigationMapView)
Parameters
mapView
The NavigationMapView.
-
navigationMapViewDidStopTrackingCourse(_:)
Default implementationTells the receiver that
tracksUserCourse
was set to false, signifying that the map is no longer tracking the user course.Seealso
NavigationMapView.tracksUserCourseDefault Implementation
Declaration
Swift
func navigationMapViewDidStopTrackingCourse(_ mapView: NavigationMapView)
Parameters
mapView
The NavigationMapView.