blob: 9f0e6cce36de1abfa7dc2289fdac64adb1219430 [file] [log] [blame]
{
"name": "SwiftSimplify",
"version": "0.1.0",
"summary": "Tiny high-performance Swift polyline simplification library",
"description": " \tSwiftSimplify is a tiny high-performance Swift polyline simplification ported from Simplify.js.\n\t\t\tIt uses a combination of Douglas-Peucker and Radial Distance algorithms. It uses generics, works with Swift 1.2.\n\t\t\tPolyline simplification dramatically reduces the number of points in a polyline while retaining its shape, giving \n\t\t\ta huge performance boost when processing it and also reducing visual noise. For example, it's essential when \t\n\t\t\trendering a 70k-points line chart or a map route in the browser using Canvas or SVG.\n",
"homepage": "https://github.com/malcommac/SwiftSimplify",
"license": "MIT",
"authors": {
"daniele margutti": "me@danielemargutti.com"
},
"source": {
"git": "https://github.com/malcommac/SwiftSimplify.git",
"tag": "0.1.0"
},
"social_media_url": "https://twitter.com/danielemargutti",
"platforms": {
"ios": "8.0"
},
"requires_arc": true,
"source_files": "Pod/Classes/**/*",
"resource_bundles": {
"SwiftSimplify": [
"Pod/Assets/*.png"
]
},
"frameworks": [
"UIKit",
"CoreLocation"
]
}