feat(maps): Google maps improvements for network and offline tilesources (#4664)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2026-02-27 08:36:56 -06:00 committed by GitHub
parent 22c239016b
commit 0a6fcc830a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 1086 additions and 353 deletions

View file

@ -24,4 +24,8 @@ data class CustomTileProviderConfig(
val id: String = Uuid.random().toString(),
val name: String,
val urlTemplate: String,
)
val localUri: String? = null,
) {
val isLocal: Boolean
get() = localUri != null
}