mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
15 lines
314 B
Swift
15 lines
314 B
Swift
//
|
|
// TileOverlay.swift
|
|
// Meshtastic
|
|
//
|
|
// Copyright(c) Garth Vander Houwen 5/5/23.
|
|
//
|
|
|
|
import Foundation
|
|
import MapKit
|
|
|
|
class TileOverlay: MKTileOverlay {
|
|
override func loadTile(at path: MKTileOverlayPath) async throws -> Data {
|
|
return try OfflineTileManager.shared.loadAndCacheTileOverlay(for: path)
|
|
}
|
|
}
|