AlphaVpsLocalApi

Marks the offline VPS (wemap-vps-local) API as alpha.

This module is a pre-release. Anything annotated with (or enclosed by) this marker is unstable: it may change incompatibly, or be removed entirely, in any release — including patch releases. The module does not follow semantic versioning.

Using such a declaration requires an explicit opt-in, which is how you acknowledge the instability:

@OptIn(AlphaVpsLocalApi::class)
fun startOfflineVps() { /* ... */}

or opt in for a whole module via the Kotlin compiler argument -opt-in=com.getwemap.sdk.positioning.wemapvpslocal.AlphaVpsLocalApi.