GeoSwift

1.0.5

Location-related APIs intended to be used by server-side Swift applications.
petrpavlik/GeoSwift

What's New

Swift 5 Support

2019-05-25T20:05:39Z

GeoSwift

Location-related APIs intended to be used by server-side Swift applications since there is no CoreLocation on Linux.

Build Status Latest Release Platforms Package Managers

Distance between 2 locations

do {
    let prague = try GeoCoordinate2D(latitude: 50.0880400, longitude: 14.4207600)
    let brno = try GeoCoordinate2D(latitude: 49.195060, longitude: 16.606837)

    let distancePragueBrnoInMeters = prague.distance(from: brno)
    print("Distance between Prague and Brno is \(distancePragueBrnoInMeters * 0.00062137) mi.")
} catch {
    // Tried to create an instance of `GeoCoordinate2D` with invalid coordinates.
}

Installation

Swift Package Manager

.Package(url: "https://github.com/petrpavlik/GeoSwift.git", majorVersion: 1)

License

MIT

Author

Petr Pavlik - @ptrpavlik

Description

  • Swift Tools 5.0.0
View More Packages from this Author

Dependencies

  • None
Last updated: Fri Apr 12 2024 20:06:27 GMT-0900 (Hawaii-Aleutian Daylight Time)