IosLocationProvider

Foreground location from Core Location.

Applies the requested accuracy and minimum distance. LocationRequest.minimumInterval is ignored. See IosLocationPermissionRequester for permission behavior.

Create the provider, request permission, and close it on the main thread.

Disabled location services report LocationUnavailableReason.ServicesDisabled. Denied or declined permission reports LocationUnavailableReason.PermissionDenied. Network failures and unknown locations report LocationUnavailableReason.TemporarilyUnavailable. Other failures report LocationUnavailableReason.UnexpectedFailure.

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard

Whether this provider has a usable platform implementation, stable for its lifetime.

Link copied to clipboard
open override val backendId: String?

A stable implementation name for diagnostics, when the provider declares one.

Link copied to clipboard
open override val permission: kotlinx/coroutines/flow/StateFlow<org/maplibre/compose/location/LocationPermission>

Current foreground location permission.

Functions

Link copied to clipboard
open override fun close()

Releases resources owned by this provider. Repeated calls have no effect.

Link copied to clipboard
open override fun requestPermission()

Starts a foreground permission request and returns immediately.

Link copied to clipboard
open override fun updates(request: LocationRequest = LocationRequest()): kotlinx/coroutines/flow/Flow<org/maplibre/compose/location/LocationEvent>

Returns a cold stream of foreground location updates.