summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [iOS] Set application root as asset rootMinh Nguyễn2015-11-203-14/+4
| | | | | | As of #2746, we no longer bundle any styles with the SDK, so the asset: URL scheme is unused. Instead, point asset: to the application root for developer convenience and consistency with the Android and default asset roots. Also fixed an issue that prevented relative URLs from being treated as asset: URLs. Fixes #1208, fixes #3050.
* [android] - #2658 improve window background PopupWindowViewTobrun2015-11-207-42/+79
|
* [core] more robust max-age parsingKonstantin Käfer2015-11-205-5/+128
|
* [iOS] Added missing documentation commentMinh Nguyễn2015-11-201-1/+6
|
* [core] Force style-sourced annotations to be visibleJohn Firebaugh2015-11-192-0/+4
|
* [core] Followup fix to #3037John Firebaugh2015-11-192-2/+2
| | | | | | | | | The previous fix resulted in annotations sometimes never being added. This would happen if, during the execution of MapContext::update where Update::Annotations was set, the style itself was loaded but some of its subresources (sprite or sources) were not. #3082 is a follow up issue to make MapContext::update less error-prone.
* Fixed Linux builds; code styleMinh Nguyễn2015-11-191-10/+10
|
* Ported replaceTokens() tests from GL JSMinh Nguyễn2015-11-182-0/+51
|
* refs #2380: plop Settings.bundle inside of framework distributionJustin R. Miller2015-11-183-0/+36
|
* refs #2922: update display link in all common modes (inc. scrolling)Justin R. Miller2015-11-181-1/+1
|
* [node] Fix race condition in testsJohn Firebaugh2015-11-181-8/+0
| | | | The message callback races with the rest of this test. We already have tests for errors being emitted from mbgl, so just remove it.
* Rewrite CustomSpriteImages testJohn Firebaugh2015-11-184-88/+14
| | | | Previous test was invalid; Map::setSprite is only for annotations.
* [core] Avoid calling AnnotationManager::updateStyle until the style is loadedJohn Firebaugh2015-11-183-1/+8
| | | Fixes #3037
* Ensure proper will/is/didChange for resetNorthMinh Nguyễn2015-11-181-3/+11
|
* [ios] update changelog for willStart/didFinishLoadingJason Wray2015-11-181-0/+1
|
* [ios] document willStart/didFinish map loading delegate methodsJason Wray2015-11-181-4/+10
| | | | Fixes #2706
* [core] Added ConstrainMode::{HeightOnly,WidthAndHeight}Bruno de Oliveira Abinader2015-11-189-33/+93
| | | | | | | | | | ConstrainMode gives flexibility to our engine to choose between constraining both vertically and horizontally, or just vertically (default behavior). Constrain in both axis means we can no longer pan the map beyond the map boundaries. This fixes an issue where e.g. annotations disappear upon crossing the map boundaries.
* [core] Fix LatLngBounds default coordinatesBruno de Oliveira Abinader2015-11-186-12/+20
| | | | | | | | | LatLngBounds southwest and northeast coordinate points were inverted, so they could be extended via LatLngBounds::extend(). However, this looks confusing and error-prone. A static LatLngBounds::getExtendable() is added to address cases when we want to extend LatLngBounds.
* [core] Avoid extra copy of TransformState in Painter::renderBruno de Oliveira Abinader2015-11-188-21/+20
| | | | | | In MapContext thread, TransformState gets updated from main thread to MapContext and Painter can safely reference MapContext's TransformState instead of copying it upon each Painter::render call.
* more clearly indicate Foundation imports to avoid recursionJustin R. Miller2015-11-1719-10/+47
|
* clarify how to run individual testsJustin R. Miller2015-11-171-1/+1
| | | | [skip ci]
* add IB additions to umbrella header to avoid framework warningsJustin R. Miller2015-11-171-0/+1
|
* fixes #3054: move desktop test app keybindings output to startup logJustin R. Miller2015-11-173-14/+27
|
* [core] allow changing pitch in GLFW based appsKonstantin Käfer2015-11-176-1/+24
|
* refs #3045: implicitly link dependencies for frameworkJustin R. Miller2015-11-162-0/+9
| | | | [skip ci]
* refs #3045: correct bundle identifier for iOS framework targetJustin R. Miller2015-11-161-1/+1
| | | | [skip ci]
* bump version to ios-v3.0.0-pre.7Justin R. Miller2015-11-162-2/+2
|
* refs #3045: fix up targetJustin R. Miller2015-11-161-1/+1
| | | | [skip ci]
* [android] Bring back OkHTTPLeith Bade2015-11-175-117/+83
| | | | | | | Update http_request_android.cpp for changes in #2727 Fix crash caused by calling both onFailure and onReponse in the same request Fixes #2856 Fixes #2400
* [node] Need to have a singleton RunLoop instanceJohn Firebaugh2015-11-164-11/+27
|
* [core] Use std::unique_ptr for FileSource requestJohn Firebaugh2015-11-1642-617/+298
|
* [core] Pass a value to response callback, not a referenceJohn Firebaugh2015-11-1622-56/+45
|
* [core] Do not pass uv_loop_t aroundThiago Marcos P. Santos2015-11-1632-91/+193
| | | | This should be abstracted by util::RunLoop
* [core] Cancelled flag needs to be atomic; it is read from multiple threadsJohn Firebaugh2015-11-161-4/+5
|
* [core] Fix a subtle and currently unexposed bug in RunLoop::invokeWithCallbackJohn Firebaugh2015-11-161-12/+12
| | | | | | The doubly nested lambda that's responsible for executing the callback needs to check the cancellation flag on *both* threads. See comment for details.
* [core] Use std::mutex on RunLoopThiago Marcos P. Santos2015-11-162-2/+2
| | | | | | Only the WorkTask mutex needs to be recusive because the WorkQueue will run a WorkTask that will pop itself from the WorkQueue causing it to get cancelled.
* static framework target for iOSJustin R. Miller2015-11-165-0/+67
|
* provide resource bundle search for premade frameworksJustin R. Miller2015-11-161-1/+14
|
* Add creds for bitrise. Fixes #3028Jeff Miccolis2015-11-131-0/+44
|
* Merge pull request #2991 from mapbox/2931-adams-playgroundAdam Hunter2015-11-1311-0/+131
|\ | | | | Manual Zoom Test Activity - will turn into an automated test at some point in the future
| * [android] #2931 - Adding Zoom button to UIBrad Leege2015-11-132-0/+9
| |
| * [android] #2931 - Making Manual Zoom Navigation Drawer Item Open Manual Zoom ↵Brad Leege2015-11-133-0/+8
| | | | | | | | Activity
| * [android] #2931 - Creating basic Activity for Manual ZoomBrad Leege2015-11-132-0/+107
| |
| * [android] #2931 - Adding Manual Zoom As Drawer OptionBrad Leege2015-11-137-0/+7
|/
* [android] #3029 - Adding removeMarker() convenience methodBrad Leege2015-11-131-0/+12
|
* also look in commit bodies for CI skipping commandsJustin R. Miller2015-11-131-2/+4
| | | | [skip ci] (see what I did there?)
* bump iOS version to 3.0.0-pre.6ios-v3.0.0-pre.6Justin R. Miller2015-11-132-2/+2
| | | | [skip ci]
* re-add OS X desktop usage hotkeys (refs #2800 @tmcw)Justin R. Miller2015-11-131-0/+10
| | | | [skip ci]
* [android] #3023 - reactive token generationTobrun2015-11-133-2/+21
| | | | [android] #3023 - update documentation to reflect change
* [android] #3019 - optimise visible coordinateboundsTobrun2015-11-132-1/+3
|