summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [ios, macos] Integrated MGLHeatmapStyleLayer into SDKupstream/1ec5-heatmap-11046Minh Nguyễn2018-01-2710-14/+59
| | | | Made MGLHeatmapStyleLayer.h public and added it to the umbrella header. Customized MGLHeatmapStyleLayer documentation to describe heatmaps in more detail and give an example. Added MGLHeatmapStyleLayer to the jazzy table of contents.
* yet another tryVladimir Agafonkin2018-01-261-2/+0
|
* one more android fixVladimir Agafonkin2018-01-261-2/+2
|
* try fixing android build againVladimir Agafonkin2018-01-261-0/+13
|
* pinky-promise green android buildVladimir Agafonkin2018-01-261-0/+2
|
* hopefully fix android build this timeVladimir Agafonkin2018-01-263-3/+5
|
* add missing heatmap includes for androidVladimir Agafonkin2018-01-261-0/+2
|
* address review commentsVladimir Agafonkin2018-01-2611-46/+36
|
* fix android buildVladimir Agafonkin2018-01-251-0/+1
|
* fix typoVladimir Agafonkin2018-01-251-1/+1
|
* heatmap CI fixesVladimir Agafonkin2018-01-253-2/+14
|
* update cmake filesVladimir Agafonkin2018-01-251-16/+18
|
* [core] add heatmap layerVladimir Agafonkin2018-01-2555-32/+4027
|
* [android] - add binding integration for RasterDEMSource, add exampleTobrun2018-01-2511-3/+312
|
* [android] - correct marker location when using Snapshot#pixelForLatLngTobrun2018-01-251-3/+6
|
* [android] - add toString to Expression to print out object array notationTobrun2018-01-252-0/+41
|
* [ios, macos] Raster style layers are used with image sources tooMinh Nguyễn2018-01-242-5/+12
|
* [core] align raster imagery rendering to pixel rid to avoid blurrinessKonstantin Käfer2018-01-247-10/+30
|
* [node] add setLight supportKonstantin Käfer2018-01-244-6/+50
|
* [core] update mapbox-gl-js submodule pinKonstantin Käfer2018-01-2410-93/+1
| | | | | * disables transition render test (transitions are not supported with Still image rendering in Node.js) * removes support for hillshade-illumniation-direction-transition
* [android] - add SafeVarargs to Expression methodsTobrun2018-01-241-3/+21
|
* [ios, macos] Removed heatmap layer suppression from Darwin code generatorMinh Nguyễn2018-01-241-3/+0
|
* [build] Add build that verifies that the code generator was runKonstantin Käfer2018-01-242-0/+72
|
* [build] Add build that verifies the submodule pin is up-to-dateKonstantin Käfer2018-01-243-0/+67
|
* [build] Write out a list of files generated by our code generator scriptsKonstantin Käfer2018-01-244-0/+19
| | | | This will help us tracking deleted/modified/added files
* [build] convert CMake file list generation code to JavaScriptKonstantin Käfer2018-01-248-103/+83
| | | | Bash sorting is weird...
* [build] Always use style-code's writeIfModified to unify file updatesKonstantin Käfer2018-01-245-22/+23
|
* [build] Add temporary modifications to style spec + shadersKonstantin Käfer2018-01-246-4/+16
| | | | This ensures that the generated code matches what is checked in. Remove those temporary modifications once we add the features to master.
* [android] - create Handler using the main thread looperTobrun2018-01-241-1/+2
|
* [android] - rename initRenderSurface to onSurfaceCreatedTobrun2018-01-241-11/+8
|
* Reimplement style values atop NSExpression (#10726)Minh Nguyễn2018-01-2485-7261/+7580
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [ios, macos] Import headers, not implementation files * [core] Added accessors for various expression parameters Added missing parameter accessors to various expression operator classes, as well as a method on InterpolatorBase and Step that enumerates the stops and their values. * [ios, macos] Silenced warning in test of error condition * [ios, macos] Made MGLSphericalPosition boxable * [ios, macos] Implemented array enumeration during conversion * [ios, macos] Temporarily ignore heatmap layer type * [ios, macos] Migrated MGLSymbolStyleLayer.text to NSExpression MGLSymbolStyleLayer.text is now of type NSExpression instead of MGLStyleValue, as a first step toward migrating the entire layer API from style values to expressions. Implemented conversions from NSExpression to JSON arrays and vice versa. The most common NSExpression functions are now converted into style expressions, but not all of the most common style expression operators are supported yet. * [ios, macos] Implemented string coercion * [ios, macos] Color literals * [ios, macos] Null constant expressions * [ios, macos] Convert dictionary literals * [ios, macos] Interpolation expressions * [ios, macos] to-boolean, to-number, get from object * [ios, macos] Variable expressions Implemented custom expression functions for assigning and referring to variables within the context of an expression. Variables are assigned via a “context dictionary” and applied to an subexpression that is given as another argument to the same expression. Also implemented built-in variable expressions for zoom level and heatmap density. * [ios, macos] Convert colors, offsets, padding in expressions to JSON objects * [ios, macos] Expression-based style property getters Implemented a conversion from mbgl::style::PropertyValues to Objective-C JSON objects, which are then converted to NSExpressions. * [ios, macos] Consolidated property value–expression conversion in MGLStyleValueTransformer * [ios, macos] Predicate and expression guide Extracted documentation about predicates from a documentation comment in MGLVectorStyleLayer.h to a new jazzy guide. Added details about NSExpression support as well. Began updating the “For Style Authors” guide to reflect the transition from style values to expressions. * [ios, macos] Updated style authoring guide Updated the Information for Style Authors guide to discuss expressions instead of style functions. Included a table mapping style specification expression operators to NSExpression syntaxes. * [ios, macos] Migrated codegen templates to expressions * [ios, macos] Applied expression changes via codegen Ran make darwin-style-code. * [macos] Migrated macosapp to expressions * [ios, macos] Updated style function guide This guide needs to be thoroughly rewritten, but for now the example code has been migrated to expressions. * [ios, macos] Eviscerated style function tests * [ios, macos] Updated changelogs * [ios] Migrated iosapp to expressions * [ios, macos] Exposed JSON conversion methods publicly * [ios, macos] Removed MGLStyleValue, MGLStyleFunction
* [core] fix style parsing crash when a layer's paint property is not an objectKonstantin Käfer2018-01-233-0/+18
|
* [core] add raster-dem source type and hillshade layer type (#10642)Molly Lloyd2018-01-2384-56/+4661
|
* [android] - update changelog for v5.3.2Tobrun2018-01-221-1/+10
|
* [android] - handle null Call instances in HttpRequestTobrun2018-01-221-1/+1
|
* [android] - validate zoom level before creating mapbox telem eventTobrun2018-01-221-4/+13
|
* [core] update CA bundle for cURLKonstantin Käfer2018-01-221-390/+211
|
* [ios, macos] Converted strings files to UTF-8Minh Nguyễn2018-01-1915-0/+0
|
* [android, ios, macos] Updated Ukrainian translationsMinh Nguyễn2018-01-194-30/+77
|
* [android, ios, macos] Updated Swedish translationsMinh Nguyễn2018-01-193-26/+51
|
* [android, ios, macos] Updated French translationsMinh Nguyễn2018-01-194-43/+88
|
* Adds an `ios-integration-test` Makefile target to run on CI (circle.yml)Andrew Kitchen2018-01-192-0/+9
|
* Restores fix to MGLOpenGLStyleLayer memory-related crash (#10765)Andrew Kitchen2018-01-194-21/+3
| | | | Revert this commit to see integration test fail.
* Adds an integration test harness to the iOS projectAndrew Kitchen2018-01-1914-3/+692
| | | | | This will allow us to write lightweight integration tests between MGLMapView and the core renderer. Also includes a test for the recent custom layer memory fix, reverting the fix in order to demonstrate the failing test.
* [android, ios, macos] Added Hebrew localizationMinh Nguyễn2018-01-1912-6/+491
|
* Prune unused layers from CrossTileSymbolIndexChris Loer2018-01-193-0/+16
| | | | Fixes issue #10939 -- removed layers would leak entries in the CrossTileSymbolIndex.
* [ios] Remove support for 32-bit simulators (i386)Jason Wray2018-01-193-8/+9
| | | | And restore some docs that got lost in a merge.
* [core] GeometryTileData needs to be updated in lockstep with FeatureIndexChris Loer2018-01-182-1/+5
|
* [core] Synchronize state of CollisionIndex and FeatureIndexes.Chris Loer2018-01-185-1/+29
| | | | Fixes issue #10778, in which mismatch between FeatureIndex and CollisionIndex could lead to inconsistent results or even invalid array access.
* [ios] Optimize MGLAnnotationView scale transform when not pitchedupstream/fb-unpitched-annotation-view-scalingJason Wray2018-01-183-3/+18
|