summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [core] Added MetersBoundsBruno de Oliveira Abinader2015-11-114-22/+24
|
* [core] Added more NaN checks in TransformBruno de Oliveira Abinader2015-11-111-2/+15
|
* [ios] Reflect Map API changes in MGLMapViewBruno de Oliveira Abinader2015-11-111-12/+18
|
* [android] Reflect Map API changes in JNIBruno de Oliveira Abinader2015-11-111-6/+12
|
* [core] Use PrecisionPoint in zoom and angle functionsBruno de Oliveira Abinader2015-11-115-58/+54
|
* [core] Use pass-by-ref in CameraOptionsBruno de Oliveira Abinader2015-11-114-35/+36
| | | | | | | | Pass-by-const-ref is not always possible because CameraOptions gets its members modified along the way. Also fixes a case in Map::jumpTo where Update::Zoom should be called if zoom is affected.
* [core] Use PrecisionPoint in coordinate functionsBruno de Oliveira Abinader2015-11-117-47/+50
|
* [core] Added PrecisionPoint to represent pixel pointsBruno de Oliveira Abinader2015-11-118-17/+30
|
* [core] Added isValid to geo helper structsBruno de Oliveira Abinader2015-11-112-2/+18
|
* [core] Eliminate use of ClassProperties for paintJohn Firebaugh2015-11-1048-1100/+583
|
* [core] Eliminate use of ClassProperties for layoutJohn Firebaugh2015-11-1033-326/+240
|
* [core] Push layouts and paints to subclassesJohn Firebaugh2015-11-1021-102/+249
|
* [core] Expose default fade duration to Map APIBruno de Oliveira Abinader2015-11-102-2/+14
|
* move from Fabric framework to bare headers per Twitter recommendationJustin R. Miller2015-11-099-68/+7
| | | | Rolls back part of #2742
* [android] #2369 - Updating Android setup instructions for OS XBrad Leege2015-11-091-7/+9
|
* Updated changelogMinh Nguyễn2015-11-092-2/+3
|
* Merge remote-tracking branch 'bwhtmn/ios9_multitasking' into ↵Minh Nguyễn2015-11-091-3/+3
|\ | | | | | | 1ec5-ios9-multitasking-2309
| * Fix regression on iOS 8, where map would stop updating if device was rotated ↵Brent Whitman2015-09-111-0/+1
| | | | | | | | while the app was in the background
| * Leave GLview rendering on when app is inactive, to get nice smooth ↵Brent Whitman2015-09-111-4/+3
| | | | | | | | transitions between sizes when using multitasking on iPad (iOS 9).
* | [iOS] Replaced deprecated podspec flagMinh Nguyễn2015-11-092-1/+2
| | | | | | | | | | | | Per https://github.com/mapbox/mapbox-gl-native/issues/1870#issuecomment-132417161. ref CocoaPods/CocoaPods#3573
* | Revert "[core] only update the render order array when there are changes to ↵Konstantin Käfer2015-11-094-37/+22
| | | | | | | | | | | | tiles" This reverts commit ec1a58d8effb3292ec46cca3fcad17218fa8c016 and 177372b83657cda9696ff68fd5cbb872b87ce324.
* | Updated references to old build docsMinh Nguyễn2015-11-092-2/+2
| | | | | | | | Fixes #2871.
* | [iOS] Fetch tags on install, not ipackageMinh Nguyễn2015-11-092-1/+2
| | | | | | | | | | | | This change removes a git command that requires a network connection from the ipackage target. It was used to ensure that CI has a tag to version the appledoc documentation with, so the same command has been added to install.sh, where a network connection is otherwise expected. Fixes #2320.
* | Remove constraints instead of deactivating themMinh Nguyễn2015-11-092-50/+9
| | | | | | | | | | | | Avoid piling up lots of deactivated constraints. Also avoid trying to deactivate constraints that have already been removed from the view hierarchy due to a change in view controllers. Fixes #2020.
* | [core] Update::Classes already implies repaintBruno de Oliveira Abinader2015-11-091-3/+1
| |
* | [android] Fix Canvas.quickReject() crash on API 15Leith Bade2015-11-093-5/+7
| | | | | | | | | | Also tidy android.os.Build refs Fixes #2976
* | [android] Make Annotation.getId() suitable for public use.Leith Bade2015-11-091-1/+4
| | | | | | | | Fixes #2914
* | [android] Check for location permission in MyLocationTrackingModeActivityLeith Bade2015-11-091-4/+30
| | | | | | | | Fixes #2110
* | [android] #2974 - Update documentation token.txtTobrun2015-11-081-1/+1
| | | | | | Update documentation due to migration of the token from testapp to SDK
* | bump iOS version to 3.0.0-pre.5ios-v3.0.0-pre.5Justin R. Miller2015-11-062-2/+2
| |
* | fixes #2961: download payload over HTTPSJustin R. Miller2015-11-061-1/+1
| |
* | refs #2966: remove -ObjC linker flag & bring in categories via other meansJustin R. Miller2015-11-0610-1/+42
| |
* | [core] Update after final frame of transitionMinh Nguyễn2015-11-063-2/+6
| | | | | | | | | | | | | | | | The final frame is self-destructing – it destroys the frame and finish functions – so technically we’re no longer inTransition(). Yet there still needs to be an update after that final frame. Also, avoid a redundant change notification on the last frame. (It would come too late, after the DidChange notification, anyhow.) Fixes #2946.
* | [core] Remove the ability to change cross-fade durations via transitionJohn Firebaugh2015-11-067-40/+13
| | | | | | | | | | | | | | | | | | | | We shouldn't overload transition duration to mean the duration of the cross-fade when moving between stops. If we want to allow styles to override the default 300ms fade duration, it should be a dedicated property like raster-fade-duration. I don't think any styles use this functionality -- if they did, they were broken for MapMode::Still rendering.
* | [core] Use frame animation time, not Clock::now(), for fadingJohn Firebaugh2015-11-061-1/+1
| |
* | [core] Merge PiecewiseConstantFunction into FunctionJohn Firebaugh2015-11-0613-213/+168
| |
* | [core] Simplify FunctionJohn Firebaugh2015-11-069-103/+81
| |
* | [core] Reset GL values when neededBruno de Oliveira Abinader2015-11-067-2/+29
| |
* | [core] Use GL_TRUE/GL_FALSE instead of true/falseBruno de Oliveira Abinader2015-11-068-24/+31
| |
* | [android] #2953 - Removing old path to projectBrad Leege2015-11-061-1/+1
| |
* | [core] clear the render order when we're loading a new styleKonstantin Käfer2015-11-061-0/+6
| | | | | | | | regression introduced by #2908
* | [core] Use tileSize constantThiago Marcos P. Santos2015-11-061-1/+2
| | | | | | | | Instead of hardcoding the tile size again.
* | [core] Replace GL config save/restore with setDirty mechanismBruno de Oliveira Abinader2015-11-062-50/+25
| |
* | [core] fix logging so we don't use strings as a formatterKonstantin Käfer2015-11-065-6/+6
| |
* | [android] #2891 - 23.0.2 Take 2Brad Leege2015-11-053-6/+6
| |
* | [android] #2919 - Trimming whitespace during setAccessToken()Brad Leege2015-11-051-0/+3
| |
* | [node] Fixes 'make xnode' to configure HOST_SLUG.gypiMike Morris2015-11-057-1/+7
| | | | | | | | | | Adds node-gyp to dev-dependencies to support 'make xnode' on Node v0.10.x Ignores -Wnested-anon-types around v8.h includes.
* | [android] #2921 - Regenerating gradle-wrapper.jar and adding distribution ↵Brad Leege2015-11-052-1/+2
| | | | | | | | sha check
* | [android] #2921 - Upgrading Gradle Wrapper to 2.8Brad Leege2015-11-052-3/+3
| |
* | [iOS] Defer didChange until after animationMinh Nguyễn2015-11-051-5/+52
| | | | | | | | Fixes #2436.