summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* added keyboard activity to testappupstream/cam-add-keyboard-exampleCameron2016-11-044-1/+141
|
* [build] Update -test-suiteBruno de Oliveira Abinader2016-11-041-1/+1
|
* [core] Fix render tile ordering when querying sourcesBruno de Oliveira Abinader2016-11-042-21/+17
|
* [linux] Use OSMesa when running Node testsBruno de Oliveira Abinader2016-11-044-19/+19
|
* [linux] Update target headless backendsBruno de Oliveira Abinader2016-11-043-17/+16
| | | | | | | Enable OSMesa backend via WITH_OSMESA=1 envvar. OSMesa backend uses Gallium OSMesa implementation, which uses LLVMpipe as default driver.
* [linux] Added OSMesa headless backendBruno de Oliveira Abinader2016-11-046-4/+91
|
* [build] Replace 'tidy' with 'check'Bruno de Oliveira Abinader2016-11-042-10/+6
|
* Merge branch 'release-ios-v3.4.0' into 1ec5-release-ios-v3.4.0-beta.2-masterMinh Nguyễn2016-11-0352-373/+1258
|\
| * [macos] Enabled runtime styling testsMinh Nguyễn2016-11-022-0/+20
| | | | | | | | | | | | Added the style layer tests to the test bundle target. Set the access token to a bogus access token before running any tests. The macOS implementation of MGLMapView doesn’t even attempt to set a default style if the access token is missing, because in macosapp, the access token may be set asynchronously by the user when the preferences window appears.
| * [macos] Fixed color roundtrippingMinh Nguyễn2016-11-021-1/+1
| | | | | | | | Fixed an issue that caused the runtime styling API to return colors in the sRGB color space instead of the calibrated RGB color space.
| * [macos] Added MGLValueEvaluator to projectMinh Nguyễn2016-11-021-0/+3
| | | | | | | | This header was missing from the project. The code was only compiling because the header was still on the search path.
| * [ios, macos] Share more testsMinh Nguyễn2016-11-024-3/+23
| | | | | | | | Moved MGLGeoJSONSourceTests and MGLTileSetTests into platform/darwin/test/ and added them to the macOS project. Also added a private header needed to compile the tests to the macOS project.
| * [ios] Fixed deprecation warningsMinh Nguyễn2016-11-021-2/+2
| |
| * [ios, macos] Rationalized string enum namesMinh Nguyễn2016-11-027-57/+62
| | | | | | | | Renamed MGLGeoJSONSourceOption and MGLOfflinePackUserInfoKey constants for clarity and to remove redundancy in the Swift-bridged names. Left the old MGLOfflinePackUserInfoKey constants in place as deprecated aliases.
| * [ios, macos] Adopted string enumerationsMinh Nguyễn2016-11-025-17/+35
| | | | | | | | | | | | Notification names and user info keys posted by MGLOfflineStorage, as well as MGLErrorDomain, are instances of string enumerations for ease of use in Swift. Added some shims for projects built with Xcode 7.x. Fixes #6791.
| * [ios] Fix bad merge in iosappJesse Bounds2016-11-021-3/+0
| | | | | | | | | | | | Although functionality was not affected, a previous merge garbled the language test with a temporary test done for annotation view performance improvement.
| * [ios, macos] Updated changelogsMinh Nguyễn2016-11-012-9/+14
| |
| * [ios] Update podspecs for beta 2ios-v3.4.0-beta.2Jesse Bounds2016-11-012-2/+2
| |
| * [ios, macos] Update changelogs for visible annotations APIJesse Bounds2016-11-012-0/+2
| |
| * Optimize annotation view updates (#5987)Jesse Bounds2016-11-015-55/+161
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use queryPointAnnotations to drive annotation view updates - Get sets of visible and offscreen annotations using the mbgl query mechanism and updates and enqueues as required - Query viewport adjusted if tilted (avoid apparent issue with queryPointAnnotations when the query box is larger than the actual viewport) - Add a small debugging display in iOS app to see annotations going in and out of the reuse queue This also works around a performance issue that made getting an annotation context expensive by implementing a map of annotations to tags. It works around another issue with the underlying mbgl query so that even if it (rarely) returns an incorrect result, the correct visual effect still occurs and the reuse queue is added to and drained as expected. Finally, this refactors MGLMapView viewForAnnotation: to use the maps to access the requested annotation context and view. This avoids a more expensive lookup done previously. Along for the ride: sync up the ios and macos names (and types) for MGLAnnotationTagContextMap
| * [ios, macos] document custom API URL & add Info.plist guide (#6833)Justin R. Miller2016-11-017-2/+56
| | | | | | Also support base URL nullability in order to use default value.
| * [ios] Do iosapp token handling in viewDidLoadJason Wray2016-10-281-5/+0
| | | | | | | | | | Doing this work in viewDidAppear meant that it happened every time the modal debug settings view disappeared (and the map view reappeared).
| * [ios] Add country label language toggle demoJason Wray2016-10-281-1/+74
| | | | | | | | - Select best language based on locale setting and our support.
| * [ios, macos] Introduce visible annotations API (#6061)Jesse Bounds2016-10-265-0/+119
| | | | | | | | | | | | Add visibleAnnotations API to make it easier for clients of MGLMapView to query for all visible annotations in the map or all visible annotations in a subsection of the map.
| * [ios, macos] Make source ownership consistent and GeoJSON content properties ↵Jesse Bounds2016-10-2611-72/+313
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | writable Use common initialization logic to create an unique pointer to an mbgl source object, up front, when a MGL source is created. Keep a raw pointer to the unique pointer that is pointed at the mbgl source instance when a MGL source is created or when a MGL source is obtained by identifier from MGLStyle. Once the transfer of ownership of the mbgl source takes place, the unique ptr is null. The raw pointer can be used internally for future work that involves mutating the source. This also changes the URL, features, and geoJSONData content properties for MGLGeoJSON source to be writable. If they are set with valid data after a source has been added to the map then the map will update to reflect the new data.
| * [ios, macos] Added Swift MGLStyleValue testsMinh Nguyễn2016-10-265-0/+70
| | | | | | | | Added tests of MGLStyleValue written in Swift, along with bridging headers just in case they become needed in the future.
| * [ios, macos] Corrected MGLStyleValue inheritanceMinh Nguyễn2016-10-261-2/+2
| | | | | | | | | | | | MGLStyleConstantValue and MGLStyleFunction now inherit from MGLStyleValue with a generic argument matching the child class’s own generic argument. Fixes #6823.
| * [ios, macos] Fixed syntax error in documentation comment (#6822)Minh Nguyễn2016-10-262-1/+4
| | | | | | Fixes #6821.
| * Merge branch 'master' into boundsj-release-ios-3.4.0-merge-masterJesse Bounds2016-10-25233-2122/+6636
| |\
| * | Add MGLPointCollection for GeoJSON multipoints (#6742)Jesse Bounds2016-10-2023-151/+302
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [ios, macos] Introduce MGLPointCollection This makes MGLMultiPoint abstract again so that it is only a place for shared functionality of polygons and polylines. The multipoint feature replaces the point collection feature and can be used to initialize a MGLGeoJSONSource. The previously added swift_names for polyline and polygon are removed, for now. This also updates the iOS and macOS annotation adding logic so that unwanted shapes really are avoided. Previously the combined OR conditions meant that an annotation had to logically be NOT a kind of all three types so the check always let the annotation slip through. This also expands the guard to deflect the new MGLPointCollection.
| * | [ios, macos] Make feature attributes and identifier writable (#6728)Jesse Bounds2016-10-196-15/+74
| | | | | | | | | | | | | | | | | | * [ios, macos] Make feature attributes and identifier writable Instances of MGLFeature subclasses can now have their attributes and identifier properties mutated.
| * | [ios, macos] Raise correct style layer misuse exception (#6738)Minh Nguyễn2016-10-182-4/+10
| | | | | | | | | | | | | | | | | | Implement the layer property on MGLStyleLayer itself, where it’s declared, so that the check for an abstract style layer doesn’t itself raise an exception. The concrete style layer classes still declare their own layers as covariant properties, although those properties aren’t actually used anywhere. Cherry-picked from ce243043f5251bb6a7fabc90d8ca3162ade8a44f.
| * | [ios] Optimize event uploading (#6737)Jesse Bounds2016-10-181-5/+22
| | | | | | | | | | | | | | | Upload any events collected when the app was in use for apps that only have "when in use" location permissions. Also, for all apps, avoid posting event data if there is only a single event.
| * | [ios] Fix deploy script temp directory creation (#6740)Jason Wray2016-10-181-5/+3
| | | | | | | | | | | | | | | Also: - Ignore stdout from github-release uploads. - Add execution time to finished message.
* | | Merge branch 'release-ios-v3.3.5' into masterJason Wray2016-11-022-5/+29
|\ \ \
| * | | ios-v3.3.5Jason Wray2016-11-023-2/+9
| | | |
| * | | [core] Band-aid for crash triggered by unbound element buffer (#6844)John Firebaugh2016-10-271-0/+3
| | | |
| * | | [ios] Add simulator dSYM slices to build output. (#5740)Jesse Bounds2016-10-271-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Our release builds for device (with lipoed simulator binary) create a dSYM files for both the device and simulator. However the script only copied the device dSYM file to the output location. This adds a step to lipo together both the device and simulator dSYM files. Mapbox.framework.dSYM now holds armv7 and arm64 slices.
| * | | [ios] Guard against nil data task (#5932)Jesse Bounds2016-10-251-1/+3
| | | |
| * | | [ios] Observer that app did become active instead of will foreground (#6600)Jesse Bounds2016-10-251-1/+1
| | | |
| * | | [ios] Optimize event uploading (#6737)Jesse Bounds2016-10-251-5/+22
| | | | | | | | | | | | | | | | | | | | Upload any events collected when the app was in use for apps that only have "when in use" location permissions. Also, for all apps, avoid posting event data if there is only a single event.
| * | | [ios] Don't specify Swift version for jazzy doc generation (#6377)Jason Wray2016-10-251-3/+0
| | | |
| * | | [ios][build] Validate dSYM and framework UUIDsJason Wray2016-10-251-1/+22
| | | |
| * | | [ios][build] Generate debug symbols for all buildsJason Wray2016-10-252-8/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes the issue where our stripped dynamic build did not have a valid dSYM. Disabling GCC_GENERATE_DEBUGGING_SYMBOLS for SYMBOLS=NO builds meant that those builds had no debug symbols to strip or add to a dSYM.
* | | | [core] Set bucket segments to initialize emptyBruno de Oliveira Abinader2016-11-0211-13/+54
| | | |
* | | | [android] - fix public xml api for drawables, fixup ↵Tobrun2016-11-0216-20/+20
| | | | | | | | | | | | | | | | QueryRenderedFeatursBoxSymbolCountActivity (#6879)
* | | | Prefix library resources to avoid naming conflicts (#6878)Tobrun2016-11-0298-411/+408
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [android] - add library resource prefix * update SDK resources with prefix * fixup tests
* | | | [android] add test activity for symbol queryingIvo van Dongen2016-11-024-0/+251
| | | |
* | | | removes sdk manager plugin (#6865)Cameron Mace2016-11-013-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | * removes sdk manager plugin * removed rest of sdk manager plugin
* | | | [core] satisfy Xcode project upgraderKonstantin Käfer2016-11-0112-15/+18
| | | |