Last active
January 2, 2024 06:02
-
-
Save StewartLynch/b3749186da9fe8aceeaef237f7b720a8 to your computer and use it in GitHub Desktop.
Sample Paris Locations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Created for MyTrips | |
// by Stewart Lynch on 2024-01-01 | |
// | |
// Follow me on Mastodon: @[email protected] | |
// Follow me on Threads: @StewartLynch (https://www.threads.net) | |
// Follow me on X: https://x.com/StewartLynch | |
// Subscribe on YouTube: https://youTube.com/@StewartLynch | |
// Buy me a ko-fi: https://ko-fi.com/StewartLynch | |
import CoreLocation | |
// Sample Paris Location | |
extension CLLocationCoordinate2D { | |
static let moulinRouge: Self = .init( | |
latitude: 48.884134, | |
longitude: 2.332196 | |
) | |
static let eiffelTower: Self = .init( | |
latitude: 48.858258, | |
longitude: 2.294488 | |
) | |
static let arcDeTriomphe: Self = .init( | |
latitude: 48.873776, | |
longitude: 2.295043 | |
) | |
static let gareDuNord: Self = .init( | |
latitude: 48.880071, | |
longitude: 2.354977 | |
) | |
static let louvre: Self = .init( | |
latitude: 48.861950, | |
longitude: 2.336902 | |
) | |
static let sacreCoeur: Self = .init( | |
latitude: 48.886634, | |
longitude: 2.343048 | |
) | |
static let notreDame: Self = .init( | |
latitude: 48.852972, | |
longitude: 2.350004 | |
) | |
static let pantheon: Self = .init( | |
latitude: 48.845616, | |
longitude: 2.345996 | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment