summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [core] Avoid a transaction in put{Resource,Tile}upstream/no-transactionJohn Firebaugh2018-03-151-20/+16
| | | | Alternative fix for #4422.
* Merge tag 'ios-v3.7.6' into masterJason Wray2018-03-1415-117/+110
|\
| * [ios] Bump podspecs for ios-v3.7.6ios-v3.7.6Jason Wray2018-03-123-3/+3
| |
| * [ios] Prepare changelog for ios-v3.7.6Jason Wray2018-03-121-1/+4
| |
| * [ios, build] Move iOS release builds to CircleCIJason Wray2018-03-123-99/+35
| |
| * [build] Update to Xcode 9.2 on CircleCI (#10893)Jason Wray2018-03-121-7/+7
| | | | | | | | When CircleCI says 9.2.0, they mean it...
| * [ios] Add camera limit debug option to iosappupstream/fb-fix-camera-limit-pinch-driftJason Wray2018-03-081-1/+42
| | | | | | | | Adapted from https://github.com/mapbox/ios-sdk-examples/blob/cdff47276d261d58c7eb2d0ba75d9cce6c308417/Examples/ObjectiveC/BlockingGesturesDelegateExample.m
| * [ios] Fix pinch drift ignoring delegate camera change responseJason Wray2018-03-082-3/+8
| |
| * [core] TileJSON conversion clamps bounds longitude to [-180,180], per specAsheem Mamoowala2018-03-082-0/+12
| |
| * [core] Support a range of zooms in TileRange. Accounts for TilePyramid ↵Asheem Mamoowala2018-03-083-23/+57
| | | | | | | | requesting parent tiles of ideal zoom tiles.
| * [android] - reset release configurationandroid-v5.5.0Tobrun2018-03-012-2/+2
| |
| * [android] - fix custom layer exampleTobrun2018-03-011-1/+1
| |
| * [android] - release android v5.5.0Tobrun2018-03-012-2/+2
| |
| * [android] - update changelog for v5.5.0Tobrun2018-03-011-0/+12
| |
| * [android] incorrect latlngBounds in the VisibleRegion with map is rotatedOsana Babayan2018-03-011-5/+6
| | | | | | | | | | smallest bounding box for 4 points cannot (#11226) be created using LatLngBounds.fromLatLngs() as the order matters in that method and that does not work for rotated map
| * [android] custom layer example - remove dependencies on mbgl logging and ↵Ivo van Dongen2018-03-011-23/+26
| | | | | | | | string headers
| * [android] custom layer example - add error checking to debug issues more easilyIvo van Dongen2018-03-011-28/+142
| |
| * [android] custom layer example - fix fragment shader source for opengl es 2 ↵Ivo van Dongen2018-03-011-1/+1
| | | | | | | | phones
| * [core] blacklist vao usage on mali t720 (sapphire 650)Ivo van Dongen2018-03-011-2/+9
| | | | | | | | Avoids problems on (amongst others) Samsung Galaxy J3
| * [core] check opengl error state after custom layer invocationsIvo van Dongen2018-03-011-3/+4
| |
| * [android] - check if hosting Activity isn't finishing before showing an dialogTobrun2018-03-011-1/+12
| |
| * [android] expose ImageSource coordinates setter (#11262)Łukasz Paczos2018-03-013-1/+19
| |
| * [android] jni clean up - missing a couple DeleteLocalRefosana2018-03-014-3/+11
| |
| * upgraded telem version (#11338)Cameron Mace2018-02-283-7/+6
| | | | | | | | | | | | | | | | * upgraded telem version * use telem method instead of Okhttp * use telem util in test
| * [ios] Improved heading indicator arrow visibilityJason Wray2018-02-272-1/+5
| |
| * [ios, macos] Fix a memory leak when creating an EAGLContext in ↵Fabian Guerra Soto2018-02-271-9/+10
| | | | | | | | MGLMapSnapshotter. (#11193)
| * [core] continue loading style even if we mutate itKonstantin Käfer2018-02-272-10/+16
| | | | | | | | When we load a stale style from cache, and the user immediately starts mutating it, we should continue loading the style so that we'll get a fresh copy of the data into our cache and avoid perpetually showing the stale style.
| * [core,node] Pin 'nan' to ~2.8 to avoid Callback::Call deprecation.Chris Loer2018-02-271-2/+2
| | | | | | | | Alternative fix to #11288, until we figure out a proper async_hooks implementation.
| * [android] - don't disable zoom button controller zooming whem zooming ↵Tobrun2018-02-211-7/+8
| | | | | | | | gestures are disabled
| * [android] - decouple map padding from overlain viewsTobrun2018-02-201-5/+0
| |
* | [core] prevent render thread from waking up unneeded on still renderingIvo van Dongen2018-03-142-5/+5
| | | | | | | | - No longer sends a update message to the render frontend when rendering in still mode only to shortcut it in the renderer. This prevents unneeded render passes in qt.
* | [core] Add expression filter support (#11251)Lucas Wojciechowski2018-03-0817-336/+423
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * WIP * WIP * WIP * Remove Filter::operator()(const Feature&) * WIP * WIP * WIP * WIP * Hook up expression filter evaluator * Replace `shared_ptr` with &reference * Fill in implementation of `void operator()(const ExpressionFilter&)` * Fix failing tests * Switch back to a shared_ptr per chat with @anandthakker * Fix benchmark compilation * Shot in the dark to fix CI * Shot in the dark to fix CI (part 2) * Shot in the dark to fix CI (part 3) * In src/mbgl/style/conversion/filter.cpp, add a port of isExpressionFilter and use it to decide in Converter<Filter>::operator() whether to parse the incoming JSON as an ExpressionFilter or one of the legacy filter types * Remove bool Filter::operator()(const GeometryTileFeature&) const * Ensure the map zoom is passed into filtering operations wherever applicable * Add expression filter tests * Addressed PR feedback * Implement `NSPredicate *operator()(mbgl::style::ExpressionFilter filter)` * Fix formatting& nit
* | Update README.md (#11408)Cameron Mace2018-03-071-1/+1
| | | | | | Update splash image
* | [qt] Fix Qt build on MinGWThiago Marcos P. Santos2018-03-071-1/+1
| |
* | Android readme snapshot dependency line cleanup (#11071)Langston Smith2018-03-061-5/+4
| | | | | | | | | | | | | | | | * Snapshot dependency line cleanup * Matching version nums * changed compile to implementation
* | [Qt] Added QMapboxGL::MapLoadingFailure enumBruno de Oliveira Abinader2018-03-054-5/+53
| |
* | [Qt] Expose mapLoadingFailed signalBruno de Oliveira Abinader2018-03-054-1/+9
| |
* | [android] fix CameraAnimatorActivity home button (#11383)Łukasz Paczos2018-03-051-3/+6
| |
* | [core, qt] move self-resetting Statement/Query object to shared headerKonstantin Käfer2018-03-027-533/+550
| |
* | [core] refactor SQLite error/status codesKonstantin Käfer2018-03-024-18/+51
| |
* | [core] improve SQLite error loggingKonstantin Käfer2018-03-021-6/+76
| |
* | [android] updated changelog to reflect 6.0.0-beta.3 changesŁukasz Paczos2018-03-021-4/+23
| | | | | | | | (cherry picked from commit 7c0c884)
* | [test] Update Map.PrefetchTilesBruno de Oliveira Abinader2018-02-287-61/+75
| |
* | [doc] Updated link to NativeScript pluginMinh Nguyễn2018-02-271-1/+1
| | | | | | The old URL has become a redirect to the plugin marketplace’s homepage.
* | [android ] - new gestures library (#11221)Łukasz Paczos2018-02-2717-1604/+981
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [android] new gesture library - added SNAPSHOT dependency * [android] new gesture library - cleaned up redundant classes * [android] new gesture library - limiting scale when rotating * [android] new gesture library - shove gesture filtering * [android] new gesture library - increase rotation threshold when scaling * [android] new gesture library - minimum angular velocity * [android] new gesture library - exposed gestures execution listeners * [android] new gesture library - notifying new listeners tests * [android] new gesture library - removed tracking setting * [android] new gesture library - resetting focal point with every scale/rotate callback * [android] new gesture library - fixed camera change dispatcher callbacks * [android] new gesture library - cancel velocity animations in maps onStop() * [android] new gesture library - extracted telemetry pushes to a method * [android] new gesture library - deprecated onScrollListener * [android] new gesture library - unified shove listener name
* | [qt] Rename Qt SDK to 'Mapbox Maps SDK for Qt'Bruno de Oliveira Abinader2018-02-276-14/+14
| |
* | [core] Add space in OfflineDatabase::updateMetadata SQL queryBruno de Oliveira Abinader2018-02-271-1/+1
| |
* | [core, node] Hold on to map handle during NodeMap::request.Chris Loer2018-02-261-0/+4
| | | | | | | | | | Avoids a potential crash if garbage collection happens in the middle of a call to NodeMap::request from a map that's eligible for GC. Fixes issue #11281
* | [core] Don't reuse heatmap render texture on viewport resize.Chris Loer2018-02-261-1/+1
| | | | | | | | Fixes issue #11228.
* | [ios, macos] add tileset encoding option to darwin sources (#11274)Molly Lloyd2018-02-266-0/+68
| | | | | | | | | | | | | | | | | | | | * add tileset encoding option to darwin sources * correct style guide * link out to dem encoding docs * markdownify comments