Skip to content

ngageoint/geopackage-mapcache-ios

Repository files navigation

GeoPackage MapCache iOS

MapCache iOS

The GeoPackage Libraries were developed at the National Geospatial-Intelligence Agency (NGA) in collaboration with BIT Systems. 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.

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 is a GeoPackage Library app for iOS that utilizes and demonstrates the functionality in GeoPackage iOS. The GeoPackage SDK is an iOS Objective-C library implementation of the Open Geospatial Consortium GeoPackage spec. The app and SDK are listed as OGC GeoPackage Implementations 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

IMPORTANT - Be sure your Mac has the autoconf, automake, and glibtoolize utilities. These are required to build the proj4-ios dependency. Without them, pod install will fail. The easiest way to get these is to brew install 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'