mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-05 12:13:54 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
10 lines
159 B
Swift
10 lines
159 B
Swift
struct MapInfo {
|
|
let type: String
|
|
let trips: [CPTrip]?
|
|
|
|
init(type: String, trips: [CPTrip]? = nil) {
|
|
self.type = type
|
|
self.trips = trips
|
|
}
|
|
}
|