Skip to content

petrpavlik/GeoSwift

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages