summaryrefslogtreecommitdiff
path: root/gyp/platform-ios.gypi
Commit message (Collapse)AuthorAgeFilesLines
* [ios, osx] Renamed MGLOfflineTask to MGLOfflinePackMinh Nguyễn2016-03-101-2/+2
| | | | “Offline pack” more effectively communicates the persistent nature of the downloaded content.
* [ios, osx] Renamed offline classesMinh Nguyễn2016-03-101-6/+6
| | | | Renamed SDK classes related to offline viewing to more closely match the terminology used by mbgl and the Android SDK while remaining consistent with Cocoa naming principles.
* [osx] Added OS X support for offline downloadsMinh Nguyễn2016-03-101-6/+6
|
* [ios] Implemented offline API in iOS SDKMinh Nguyễn2016-03-101-1/+6
| | | | Fixes #3892.
* Introduce MGLLocation ManagerJesse Bounds2016-02-261-0/+2
| | | | | | | | | | | | | | | | | | | https://github.com/mapbox/mapbox-gl-native/pull/4115 This change makes background data gathering more efficient by disabling standard location updates when the device has been stationary for at least five minutes. It also establishes region monitoring and significant location change monitoring so that if the device appears to be in motion again then background telemetry data collection can resume. All of this reduces the amount of time required for telemetry data collection to the time the device is in motion only. It also only applies to host apps that already run in the background and have the always location permission from their users. This also includes some changes to make the internal pause/resume API of the MGLMapboxEvents class less complex and autonomous. The side effects of the map view waking or sleeping are no longer required for mapbox events to work as intended.
* [ios] Introduce API ClientJesse Bounds2016-02-241-0/+2
| | | | | | | | | | | Addresses https://github.com/mapbox/mapbox-gl-native/issues/3704 This introduces a new utility class that wraps networking via NSURLSession. All related code that used to live inside the telemetry MGLMapboxEvents class has been pulled into the new MGLAPIClient. An API client instance is used as a service by telemetry and can be reused in the future when and if our networking needs grow or become more complex.
* [gyp] Use variant compiler flags when neededBruno de Oliveira Abinader2016-02-211-0/+1
|
* [ios, osx] Consolidate remaining files in platform/{ios,osx}John Firebaugh2016-02-121-25/+25
|
* [android][ios][core] - #2421 Moving Mapbox PROD and TEST certificates to ↵Brad Leege2016-02-101-0/+1
| | | | common location and updating iOS projects to load them from there
* [core] Interface and implementation for offlineJohn Firebaugh2016-02-101-0/+5
|
* [core] Reimplement existing caching within an offline-capable database schemaJohn Firebaugh2016-02-101-1/+3
|
* [all] Make #include <mapbox/variant.hpp> universally accessibleJohn Firebaugh2016-02-041-1/+0
|
* [ios] Converted iOS SDK into dynamic frameworkMinh Nguyễn2016-01-221-34/+17
| | | | | | | | | | make iproj now produces a target that pulls together static libraries like core and platform-ios into a real dynamic framework. iosapp is pretty much just a regular iOS application that links Mapbox.framework (except for the inclusion of default_styles.hpp). iosapp runs fine in the Simulator and on a device, and the same is true for any application linking against Mapbox.framework. The ipackage target produces both a Bitcode-disabled static framework and a Bitcode-enabled dynamic framework, eliminating the need for a separate framework.sh. It disables code signing, since that happens on copy when the framework is embedded inside the application bundle. It also merges the device and simulator builds into a single fat framework. Also bumped itest minimum deployment target to iOS 8.0, the first version that supports linking frameworks. Fixes #828.
* [core] Eliminate platform::assetRoot()John Firebaugh2016-01-131-1/+0
| | | | I regenerated assets.zip so that all file paths have an `assets/` prefix, as the Android AssetFileSource implementation asserts, and removed `TEST_DATA` from the paths.
* [ios] Refined custom callout view supportMinh Nguyễn2016-01-061-3/+3
| | | | Renamed MGLCalloutView to MGLCompactCalloutView and MGLCalloutViewProtocol to MGLCalloutView to avoid an awkward workaround for a Swift name collision. Replaced individual title and subtitle properties with a single representedObject property that lets you use custom annotation properties in the custom callout view. Overrode a problematic SMCalloutView method. Added lots more documentation.
* [ios] expose custom callout api, wrap around SMCalloutView classRomain Quidet2016-01-061-0/+3
|
* [ios] Add SQLite, zlib linker flagsMinh Nguyễn2015-12-221-0/+2
|
* [core] Merge SQLiteCache into the platform libraryJohn Firebaugh2015-12-221-0/+7
| | | | OfflineFileSource will depend on SQLite too.
* [core] Move OnlineFileSource to platformJohn Firebaugh2015-12-221-0/+2
| | | | Preparation for OfflineFileSource which depends on SQLite
* [ios] Move source to src folder, matching osxJohn Firebaugh2015-12-171-17/+17
|
* Revert "Revert "[ios] Custom style layer""Minh Nguyễn2015-12-161-0/+1
| | | | This reverts commit 081e4e44516937a6139fad5823dd5ec3200cc343.
* Revert "[ios] Custom style layer"John Firebaugh2015-12-161-1/+0
| | | | ec9a4cd3285da280d43c7ddd0ca96fe37d9c5278
* [ios] Custom style layerMinh Nguyễn2015-12-161-0/+1
| | | | | | Exposed Map::addCustomLayer() publicly as an undocumented, block-based API. This change avoids the terms “layer”, “initialize”, “render”, and “altitude” because they overload existing terminology in the SDK, UIKit, or MapKit. (“Layer” is qualified as “style layer”.) There are outstanding questions about ARC memory management, but this approach works in both Objective-C and Swift for pure OpenGL programming. Added a demo to iosapp that draws a green layer below any labels in Mapbox Streets.
* 2210: MGLAnnotationImage image can be updateRomain Quidet2015-12-151-0/+1
|
* [osx] Map cameraMinh Nguyễn2015-12-131-2/+2
| | | | Shared MGLMapCamera between iOS and OS X. Unfortunately -camera and -setCamera: implementations need to be copy-pasted for now.
* [osx] Documentation comments for public classesMinh Nguyễn2015-12-131-1/+1
| | | | | | | | | | Added documentation comments for all the public headers that aren’t being shared with iOS. Removed an animated: parameter from -selectAnnotation: and -deselectAnnotation:: because callout popovers may extend beyond the entire window, there is no need to scroll the map to make the entire callout visible. Added missing geometric conversion methods. Renamed -mapView:regionWillChangeAnimated: et al. to say “camera” instead of “region”. “Region” leaves ambiguity about whether properties like rotation and pitch trigger this method. “Camera” associates these methods with the camera property, which seems apt.
* [osx] Rewrote platform-osx and osxappMinh Nguyễn2015-12-131-22/+27
| | | | | | | | | | | | | | platform-osx now vends a real NSView subclass, MGLMapView, that is readily embedded inside a Cocoa application for OS X. MGLMapView is backed by an NSOpenGLLayer for optimal performance and integration with other layer-backed views. It supports keyboard shortcuts and several gestures and hosts attribution, zooming, and rotation controls as subviews. osxapp is now a bona fide Cocoa application that embeds MGLMapView inside a XIB. osxapp has preferences and a share button for tight integration with custom styles. Enabling asynchronous rendering would be more consistent with iOS but increases CPU usage so much, even when idle, that it isn’t worth any performance gain. The bigger issue is that VAOs aren’t being used. make xpackage creates a static library similar to the one created by make ipackage. make clean cleans additional places where build output ends up. The OS X minimum deployment target has been increased from 10.9 to 10.10. osxapp’s window has a full size content view, which requires 10.10. Lightweight generics require iOS 9+ and OS X 10.11 regardless, because it was only in that release that Foundation collection classes started adopting lightweight generics. Shuffled files around and refactored annotations so that iOS and OS X share a good chunk of the annotations code, which now takes advantage of polymorphism. MGLMapView can now display annotations but cannot yet select them. In osxapp, a long press drops a pin, and so does the map view’s context menu. Annotations have NSPopovers as callouts, and their view controllers can be customized. Annotation image alignment rects are respected for hit testing purposes and for positioning the callout anchor. Callouts in osxapp demonstrate the use of bindings to keep callouts in sync with underlying model objects.
* fixes #3180, fixes #3113: bring back -ObjC linker flagJustin R. Miller2015-12-031-0/+1
| | | | Reverts a tiny sliver of 423cfc1
* [core] Introduce Timer abstractionThiago Marcos P. Santos2015-12-011-0/+1
|
* [core] Abstract main loop inside RunLoop classThiago Marcos P. Santos2015-12-011-0/+1
|
* [core] Introduce the AsyncTaskThiago Marcos P. Santos2015-12-011-0/+2
|
* move from Fabric framework to bare headers per Twitter recommendationJustin R. Miller2015-11-091-1/+4
| | | | Rolls back part of #2742
* refs #2966: remove -ObjC linker flag & bring in categories via other meansJustin R. Miller2015-11-061-1/+2
|
* [core] move mbgl.gyp to gyp directoryMike Morris2015-11-041-2/+2
| | | | | So npm won't clobber binding.gyp, refs https://github.com/npm/npm/issues/10243
* [core][iOS] Source iOS styles from default_stylesMinh Nguyễn2015-10-301-0/+2
| | | | | | | | | | Moved mbgl::util::default_styles to a more appropriate location, where iOS platform code can also find it. Moved -[MGLMapView bundledStyleURLs] (which is now deprecated) and the style switcher in iosapp to default_styles. Added a collection of convenience methods for getting style URLs. It makes little sense to layer an enum atop this, as MapKit does, because MGLMapView styles aren’t limited to this set. A good analogy is UIColor. This also makes for a good entry point for future runtime styling APIs. Introduced independent constants for each default style, because it’s more common to need access to a particular style than to iterate over them. This fact is apparent in the MGLStyle class, which now uses macros and assertions to ensure that it’s kept up-to-date with changes in default_styles. /ref #1462
* refs #2684: integrate Twitter FabricJustin R. Miller2015-10-231-0/+1
|
* [ios] remove CoreTelephony dependencyJason Wray2015-10-191-1/+0
| | | | | | Cellular carrier name and connectivity level will now only be sent if the developer independently chooses to link the CoreTelephony framework in their app.
* mason variant@1.0Mike Morris2015-09-301-0/+1
|
* fixes #2350: remove iOS-specific SQLite cache wrapperJustin R. Miller2015-09-231-2/+0
|
* CameraOptionsMinh Nguyễn2015-09-071-0/+2
| | | | | | | | | | | | Plumbed camera options all the way through to MGLMapView. Added a method that lets you specify a direction in addition to center point and zoom level. Added Map::jumpTo() for parity with mapbox-gl-js. Replaced usage of Map::setLatLng() and Map::setLatLngZoom() with Map::jumpTo() or Map::easeTo() within MGLMapView. Replaced MGLMapView.pitch with MGLMapCamera for setting all supported degrees of freedom simultaneously. Simultaneously move and rotate with course. Support customizable timing functions on iOS. iosapp now persists an archived MGLMapCamera instead of separate viewpoint properties and also synchronizes user defaults on termination. This change implements persistence entirely in Objective-C, eliminating the use of the Objective-C++ implementation. Fixes #1643, fixes #1834. Ref #1581.
* Add resources folder to iOS Xcode project, exclude README from .bundleJason Wray2015-09-021-1/+2
|
* GL is the library, SDK is the productJustin R. Miller2015-08-211-1/+1
|
* Make build system architecture agnostic to remove Android special caseKonstantin Käfer2015-08-041-2/+2
|
* Cocoa custom marker imagery APIJustin R. Miller2015-07-081-0/+2
|
* Test fit to bounds; added MGLCoordinateBounds functionsMinh Nguyễn2015-06-251-0/+2
| | | | Added a bunch of functions to work with MGLCoordinateBounds in a separate header analogous to MKGeometry.h. Added resolution-independent tests for common fit to bounds scenarios.
* squash of #1655: shape annotations support for core & iOSJustin R. Miller2015-06-151-0/+12
|
* Merge branch '1ec5-plist-1535'Minh Nguyễn2015-05-201-0/+1
|\
| * Observe access token changesMinh Nguyễn2015-05-201-0/+1
| | | | | | | | The singleton `MGLAccountManager` wants to be the sole arbiter of the access token, but each instance of `mbgl::Map` (`mbgl::DefaultFileSource` in #1607) has its own copy of the access token. Now `MGLMapView` observes for changes to the `MGLAccountManager`’s access token and synchronizes `mbgl::Map` with it.
* | Privatized MGLMapboxEventsMinh Nguyễn2015-05-181-2/+1
| | | | | | | | `-pauseMetricsCollection` and `-resumeMetricsCollection` were originally introduced to mitigate concerns around battery usage, but `MGLMapboxEvents` has since evolved to tread much lighter on the battery. There’s no longer any need for the client to call these methods directly. The iOS test project now includes MGLMapboxEvents.h explicitly to avoid having to package a header that will go unused.
* | Properly fail to load the mapMinh Nguyễn2015-05-161-0/+1
|/ | | | A typo in a selector literal meant that `-[MGLMapViewDelegate mapViewDidFailLoadingMap:withError:]` would never be sent to delegates even if `MGLMapView` had called it. Along for the ride, create a proper `NSError` to pass into that callback, and an error domain for that error.