Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ngageoint/geopackage-mapcache-ios

GeoPackage MapCache iOS App
https://github.com/ngageoint/geopackage-mapcache-ios

geopackage geopackage-functionality geopackage-ios geopackage-libraries geopackage-mapcache geopackage-tiles ios ios-app mapcache-ios nga objective-c tiles xcode

Last synced: about 2 months ago
JSON representation

GeoPackage MapCache iOS App

Awesome Lists containing this project

README

        

# GeoPackage MapCache iOS

#### MapCache iOS ####

The [GeoPackage Libraries](http://ngageoint.github.io/GeoPackage/) were developed at the [National Geospatial-Intelligence Agency (NGA)](http://www.nga.mil/) in collaboration with [BIT Systems](http://www.bit-sys.com/). The government has "unlimited rights" and is releasing this software to increase the impact of government investments by providing developers with the opportunity to take things in new directions. The software use, modification, and distribution rights are stipulated within the [MIT license](http://choosealicense.com/licenses/mit/).

### Pull Requests ###
If you'd like to contribute to this project, please make a pull request. We'll review the pull request and discuss the changes. All pull request contributions to this project will be released under the MIT license.

Software source code previously released under an open source license and then modified by NGA staff is considered a "joint work" (see 17 USC § 101); it is partially copyrighted, partially public domain, and as a whole is protected by the copyrights of the non-government authors and must be released according to the terms of the original open source license.

### iOS App ###



### About ###

[GeoPackage MapCache](http://ngageoint.github.io/geopackage-mapcache-ios/) is a [GeoPackage Library](http://ngageoint.github.io/GeoPackage/) app for iOS that utilizes and demonstrates the functionality in [GeoPackage iOS](https://github.com/ngageoint/geopackage-ios). The GeoPackage SDK is an iOS Objective-C library implementation of the Open Geospatial Consortium [GeoPackage](http://www.geopackage.org/) [spec](http://www.geopackage.org/spec/). The app and SDK are listed as [OGC GeoPackage Implementations](http://www.geopackage.org/#implementations_nga) by the National Geospatial-Intelligence Agency.

The MapCache app provides read and write access to GeoPackage files, including features and tiles. Features are visualized and editable on the map. Tiles are visualized on the map and can be loaded from a tile provider or WMS url.

### Build ###

[![Build Archive](https://github.com/ngageoint/geopackage-mapcache-ios/workflows/Build%20Archive/badge.svg)](https://github.com/ngageoint/geopackage-mapcache-ios/actions?query=workflow%3A%22Build+Archive%22)

**IMPORTANT** -
Be sure your Mac has the `autoconf`, `automake`, and `glibtoolize` utilities. These are required to build
the [proj4-ios](https://cocoapods.org/pods/proj4-ios) dependency. Without them, `pod install` will fail. The easiest way to get these is to [`brew install`](https://brew.sh/) them:
```
brew install automake
brew install libtool
```

Build this repository using Xcode and/or CocoaPods:

pod repo update
pod install

Open mapcache-ios.xcworkspace in Xcode or build from command line:

xcodebuild -workspace 'mapcache-ios.xcworkspace' -scheme mapcache-ios build

Run tests from Xcode or from command line:

xcodebuild test -workspace 'mapcache-ios.xcworkspace' -scheme mapcache-ios -destination 'platform=iOS Simulator,name=iPhone 6s'