mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
16 lines
335 B
Swift
16 lines
335 B
Swift
|
|
//
|
||
|
|
// TileOverlay.swift
|
||
|
|
// Meshtastic
|
||
|
|
//
|
||
|
|
// Copyright(c) Garth Vander Houwen 5/5/23.
|
||
|
|
//
|
||
|
|
|
||
|
|
import Foundation
|
||
|
|
import MapKit
|
||
|
|
|
||
|
|
typealias TileCoordinates = (x: Int, y: Int, z: Int)
|
||
|
|
|
||
|
|
class TileOverlay: MKTileOverlay {
|
||
|
|
override func url(forTilePath path: MKTileOverlayPath) -> URL { OfflineTileManager.shared.getTileOverlay(for: path) }
|
||
|
|
}
|