summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/androidTest/java/com/mapbox/mapboxsdk/testapp/style/SymbolLayerTest.java
Commit message (Collapse)AuthorAgeFilesLines
* [android] - rework instrumentation tests (#8793)Tobrun2017-04-211-194/+361
|
* [android] - expose source layer identifier (#8709)Tobrun2017-04-191-36/+14
|
* [core] Add DDS support for {text,icon}-size (#8593)Anand Thakker2017-04-061-0/+216
| | | | | | | | | | | | | | | | | | | | | | | | * Update gl-js and generate style code * Factor out packUint8Pair() helper function * Draft implementation of DDS for {text,icon}-size Ports https://github.com/mapbox/mapbox-gl-js/pull/4455 * Fix text-size/composite-function-line-placement test * Refactor to PaintPropertyBinders-like strategy * Dedupe gl::Program construction * Use exponential function base for interpolation * Dedupe coveringZoomStops method * Fixup tests * Fix CI errors (hidden within #if block)
* [core] Add DDS support for icon-imageJohn Firebaugh2017-03-311-0/+45
|
* [core] Add DDS support for text-rotateJohn Firebaugh2017-03-311-0/+108
|
* [android] - transition options for layer properties (#8509)Tobrun2017-03-311-0/+182
| | | | | [android] fixup highlevel bindings for transition options finish integration
* [core] implement dds for text-offsetMolly Lloyd2017-03-281-0/+45
|
* [android] use PropertyValue for default values in functionsIvo van Dongen2017-03-071-25/+51
|
* [core] Implement data-driven styling for ↵Anand Thakker2017-02-281-0/+920
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | {text,icon}-{color,opacity,halo-color,halo-blur,halo-width} (#7939) * Add symbol dds attributes and adapt style code generation * Update to mapbox-gl-js/master * Refactor SymbolFeature as a subclass of GeometryTileFeature Prepares for enabling DDS on symbol paint properties by allowing the SymbolFeatures, which we keep around after constructing SymbolLayout, to be used in evaluating data-driven paint properties later in the layout process. * Draft approach for splitting icon/text paint properties The `Program` types are set up to bind GL attributes to each of the data-driven paint properties specified in the `PaintProperties` type provided. Since `SymbolPaintProperties` specifies both `Text*` and `Icon*` properties, the symbolIcon, symbolIconSDF, and symbolGlyph programs each attempt to bind roughly double the number of attributes that they actually need. This change addresses this by: - Adding the more specific `IconPaintProperties` and `TextPaintProperties` types, which are subsets of the full `SymbolPaintProperties`. - The symbol layer continues to use its `SymbolPaintProperties paint` member to track layer property state, but it provides helpers that construct objects of each the specific `{Icon,Text}PaintProperties::Evaluated` type, for use by the painter. - The three symbol programs instantiate `Program<>` using the appropriate `{Icon,Text}PaintProperties` type. * check in generated style code * Populate paint buffers for symbol DDS properties * Address first round of review comments * Refactor VectorTile{Layer,Feature} to explicitly share data * Update submodule
* [android] fix unit tests for #7944Ivo van Dongen2017-02-281-2/+2
|
* [core] Enable property functions for text-{field,transform} (#7944)Anand Thakker2017-02-171-0/+90
|
* [android] Refactor composite stop types and conversionsIvo van Dongen2017-02-091-14/+10
|
* [android] data driven style implementationIvo van Dongen2017-02-021-615/+1374
|
* [core] remove trailing whitespace, add trailing newlines, add space after //Konstantin Käfer2017-01-271-107/+107
|
* Adds checkstyle to CI (#7442)Cameron Mace2016-12-161-1134/+1196
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * adds checkstyle to CI * fixed gradlew path * resolved testapp checkstyle violations * added back mapboxMap variable for test * checkstyle annotations * checkstyle SDK round 1 * maps package checkstyle * rest of SDK checkstyle * checkstyle gesture library * checkstyle test * finished rest of test checkstyle * resolved all checkstyle errors * fixed class name * removed old test file * fixed camera postion test * fixed native crash
* [android] - add uithread annotation and regenerate classes (#7156)Pablo Guardiola2016-11-301-1/+1
|
* [android] - replace Android logs with Timber (#6372) (#7149)Pablo Guardiola2016-11-231-108/+107
|
* [android] - move instrumentation test code to correct package for Android ↵Tobrun2016-10-201-0/+1222
Studio run configurations integration. (#6748)