File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ public enum GeohashError : Error {
1414}
1515
1616public struct GeohashBits {
17- let bits : UInt64
18- let precision : UInt8
17+ public let bits : UInt64
18+ public let precision : UInt8
1919 let fromString : Bool
2020
2121 init ( bits: UInt64 , precision: UInt8 , fromString: Bool ) throws {
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ public class Location {
1111 static let radiansPerDegree = Double . pi / 180.0
1212 static let earthDiameterMeters = 2.0 * 6_371_000.0
1313
14- let longitude : Double
15- let latitude : Double
14+ public let longitude : Double
15+ public let latitude : Double
1616
1717 public init ( longitude lon: Double , latitude lat: Double ) {
1818 self . longitude = lon
You can’t perform that action at this time.
0 commit comments