You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+27-42Lines changed: 27 additions & 42 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,36 +20,6 @@ Software source code previously released under an open source license and then m
20
20
21
21
The GeoPackage SDK provides the ability to manage GeoPackage files providing read, write, import, export, share, and open support. Open GeoPackage files provide read and write access to features and tiles. Feature support includes Well-Known Binary and iOS Map shape translations. Tile generation supports creation by URL or features. Tile providers supporting GeoPackage format, standard tile API, and feature tile generation.
22
22
23
-
### Getting Started ###
24
-
25
-
**IMPORTANT** -
26
-
Be sure your Mac has the `autoconf`, `automake`, and `glibtoolize` utilities. These are required to build
27
-
the [PROJ](https://github.com/ngageoint/PROJ) dependency. Without them, `pod install` will fail. The easiest way to get these is to [`brew install`](https://brew.sh/) them:
28
-
```
29
-
brew install automake
30
-
brew install libtool
31
-
```
32
-
33
-
Include this repository by specifying it in a Podfile using a supported option.
34
-
35
-
Pull from [CocoaPods](https://cocoapods.org/pods/geopackage-ios):
36
-
37
-
pod 'geopackage-ios', '~> 8.0.6'
38
-
39
-
If you use `use_modular_headers!` in your Podfile, disable modular headers for the [PROJ](https://github.com/ngageoint/PROJ) dependency:
40
-
41
-
pod 'geopackage-ios', '~> 8.0.6'
42
-
pod 'PROJ', :modular_headers => false
43
-
44
-
Pull from GitHub via CocoaPods:
45
-
46
-
pod 'geopackage-ios', :git => 'https://github.com/ngageoint/geopackage-ios.git', :branch => 'master'
47
-
pod 'geopackage-ios', :git => 'https://github.com/ngageoint/geopackage-ios.git', :tag => '8.0.6'
48
-
49
-
Include as local project:
50
-
51
-
pod 'geopackage-ios', :path => '../geopackage-ios'
52
-
53
23
### Usage ###
54
24
55
25
View the latest [Appledoc](http://ngageoint.github.io/geopackage-ios/docs/api/).
@@ -233,10 +203,10 @@ int featureTileCount = [featureTileGenerator generateTiles];
233
203
234
204
#### Swift Example ####
235
205
236
-
To use from Swift, import the geopackage-ios bridging header from the Swift project's bridging header
0 commit comments