summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [node] autopublish node-pre-gyp binarynode-v2.0.0-autopublish.1Mike Morris2015-11-051-1/+1
| | | | If $TRAVIS_TAG begins with node-v*.
* [node] make ratio optional, default to 1.0Mike Morris2015-11-044-20/+39
|
* [node] swap array order to [lng, lat] for render option centerMike Morris2015-11-044-7/+8
| | | | For consistency with GeoJSON and mapbox-gl-js
* Disable callout view dimming when tap is a no-opMinh Nguyễn2015-11-041-0/+5
| | | | Fixes #2634.
* [iOS] Wait for style loading, then rotation, then compass fadingMinh Nguyễn2015-11-041-6/+14
| | | | Fixes #2920.
* Indicate target frame interval, with a comment about how it relates to FPS.Adam Hunter2015-11-041-2/+2
|
* more clearly indicate target FPS as relates to display linkJustin R. Miller2015-11-041-1/+2
|
* cleanupsJustin R. Miller2015-11-041-29/+28
| | | | | | | - We don't need a mutex as everything is ensured on main thread. - Move internal-only properties to ivars. - Avoid API collision with needsDisplay. - Move code to lifecycle section.
* Fix #1975 - improve animation fluidity and responseAdam Hunter2015-11-041-2/+25
|
* [core] move mbgl.gyp to gyp directoryMike Morris2015-11-0414-86/+86
| | | | | So npm won't clobber binding.gyp, refs https://github.com/npm/npm/issues/10243
* [node] enable npm to build mapbox-gl-native package from sourceLucas Wojciechowski2015-11-048-23/+50
| | | | | | This reverts commit 311bf93abe9f815668e8e0a779c87c3eb5c1199d. more explicit require paths in tests
* [core] Move remaining GL state from Painter into GLConfig objectKonstantin Käfer2015-11-0411-56/+81
|
* [core] catch compression/decompression errors and report themKonstantin Käfer2015-11-041-0/+5
|
* Strip whitespace and newlines from access token and style URLMinh Nguyễn2015-11-032-0/+4
| | | | Just in case browser weirdness or a tendency to triple-click-select is causing some cases of #2012.
* [android] - Adding Android SDK releases to changelogBrad Leege2015-11-031-0/+21
|
* [android] #2891 - Going back to Android Build Tools 23.0.1Brad Leege2015-11-033-6/+6
|
* [android] Update to build tools 23.0.2Leith Bade2015-11-033-6/+6
| | | | Fixes #2891
* [android] Add setZoomControlsEnabled and setAllGesturesEnabledLeith Bade2015-11-034-26/+83
| | | | Fixes #1943
* [publish binary]bsudekum2015-11-020-0/+0
|
* Update version and changelognode-v2.0.0-pre.11bsudekum2015-11-022-1/+2
|
* [node] add pitch optionbsudekum2015-11-022-1/+7
|
* bump iOS version to 3.0.0-pre.4ios-v3.0.0-pre.4Justin R. Miller2015-11-022-2/+2
|
* Force Bitcode in make ipackageMinh Nguyễn2015-11-021-0/+2
| | | | `make ipackage` now performs a Bitcode-enabled archive build for devices.
* [core] mason geojsonvt-2.1.6.3Mike Morris2015-11-0216-20/+43
| | | | | | | | | | | | | - [osx] set -fvisibility-inlines-hidden in gyp/common.gypi to silence mismatched visibility linker warnings - [linux] set cxx_host in GYP_FLAGS to set -fabi-version=0 on gcc builds to use clang-built mason binaries - [ios] update symbol visibility for iOS tests - [ios] link libgeojsonvt.a in iOS tests xcodeproj - add libgeojsonvt.a to General -> Linked Frameworks and Libraries - add mason_packages (recursive) to Build Settings -> Library Search Path - [ios] add libuv and geojsonvt first in iOS libtool smush to ensure symbols are found by later compilation units where they are undefined
* [node] patch Painter::renderSDF to ignore animation and fade duration in ↵Mike Morris2015-11-021-5/+12
| | | | MapMode::Still
* [android] #2899 - Moving make wrappers to module build.gradleBrad Leege2015-11-022-15/+17
|
* fixes #2843: support for skipping CI with commit noteJustin R. Miller2015-11-021-2/+21
|
* remove redundant git cloneJustin R. Miller2015-11-021-23/+0
|
* refs #2898: snapshot current bitrise.yml into repoJustin R. Miller2015-11-021-0/+83
|
* don't use xcprettyJustin R. Miller2015-11-021-2/+2
|
* [core] Make DefaultFileSource react to all NetworkStatus changesKonstantin Käfer2015-11-025-10/+92
|
* [core] move retry logic to DefaultFileSourceKonstantin Käfer2015-11-0239-621/+607
|
* Add code of conductJason Wray2015-10-311-0/+5
|
* Create UIActionSheet on demandMinh Nguyễn2015-10-301-16/+19
| | | | Fixes #2475.
* [android] Save added markers in test appLeith Bade2015-10-312-16/+43
| | | | Fixes #2877
* [android] Adjust annotation touch tolerance to match default markerLeith Bade2015-10-311-4/+5
| | | | For #1504
* [android] When pinch zooming lock rotationLeith Bade2015-10-311-22/+13
| | | | Fixes #813
* bump iOS version in podspec/Fabricios-v3.0.0-pre.3Justin R. Miller2015-10-302-2/+2
|
* [core] Don't crash when removing a shape annotation whose layer was never ↵John Firebaugh2015-10-302-1/+15
| | | | created
* [core][iOS] Source iOS styles from default_stylesMinh Nguyễn2015-10-3016-95/+149
| | | | | | | | | | 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
* Fixed build issues and typosMinh Nguyễn2015-10-302-3/+2
| | | | Also renamed styles to more common names.
* [core] Remove bundled styles.Leith Bade2015-10-3020-118/+56
| | | | Fixes #2239
* [core] Polymorphic bucket creationJohn Firebaugh2015-10-3019-162/+247
|
* [core] Eliminate StyleBucketJohn Firebaugh2015-10-3019-235/+174
|
* [core] Use current copy of style layers when reparsing tilesJohn Firebaugh2015-10-306-17/+26
| | | | | | This fixes adding shape annotations after VectorTileData objects have been created for annotations already, and will also be necessary for the dynamic Style API.
* [core] Monitor annotation tiles, rather than completely invalidating themJohn Firebaugh2015-10-307-16/+46
| | | | Fixes #1688
* [core] When reparsing a tile, replace all existing bucketsJohn Firebaugh2015-10-303-5/+4
| | | | | A tile may go from having particular layers, to not having them. (Annotation tiles in particular.)
* [core] Separate type for RasterTileParseResultJohn Firebaugh2015-10-303-18/+14
|
* [android] #2880 - CoordinateBounds correction equals methodTobrun2015-10-301-1/+1
|
* [android] #2868 - Setting android back to SNAPSHOT mode and incrementing ↵Brad Leege2015-10-301-1/+1
| | | | build number