Skip to content

A micro library written in Swift for encoding and decoding Polylines

License

Notifications You must be signed in to change notification settings

NausJessy/Polyline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Polyline

Polyline is an utility library for encoding and decoding polylines as defined by the Polyline Algorithm.

Requirements

  • iOS 10.0+ / macOS 10.12+ / tvOS 10.0+
  • Xcode 11.1
  • Swift 5.1

Installation

You can use Swift Package Manager and specify dependency in Package.swift by adding this:

.package(url: "https://https://gitlab.com/panache_team/ios/polyline.git", .upToNextMinor(from: "1.0.0"))

Usage

Start by importing the Polyline library.

import Polyline

To create a Polyline, define an array of coordinate and call the encode(path:) method.

let coordinates = [
    CLLocationCoodinate2D(38.5, -120.2),
    CLLocationCoodinate2D(40.7, -120.95),
    CLLocationCoodinate2D(43.252, -126.453)
]
encode(path: coordinates)

To create an array of coordinate, define an Polyline and call the decode(polyline:) method.

let polyline: Polyline = "_p~iF~ps|U_ulLnnqC_mqNvxq`@"
decode(polyline: polyline)

Changelog

See CHANGELOG for details.

License

Polyline is released under the MIT license. See LICENSE for details.

About

A micro library written in Swift for encoding and decoding Polylines

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages