Meshtastic-Apple/Meshtastic/Helpers/Map/TileOverlay.swift
2024-02-15 21:12:00 -07:00

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)
}
}