summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/androidTest/java/com/mapbox/mapboxsdk/testapp/style
Commit message (Collapse)AuthorAgeFilesLines
* [android] - rework instrumentation tests (#8793)Tobrun2017-04-2111-654/+851
|
* [android] - expose source layer identifier (#8709)Tobrun2017-04-197-49/+74
|
* [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-317-0/+601
| | | | | [android] fixup highlevel bindings for transition options finish integration
* [core] implement dds for text-offsetMolly Lloyd2017-03-281-0/+45
|
* [android] geojson source - add conversion testsIvo van Dongen2017-03-281-0/+215
|
* [android] use PropertyValue for default values in functionsIvo van Dongen2017-03-075-65/+130
|
* [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-282-3/+3
|
* [android] insert layer at indexIvo van Dongen2017-02-281-0/+35
|
* [android] remove layer at indexIvo van Dongen2017-02-281-0/+25
|
* [android] insert layer aboveIvo van Dongen2017-02-281-3/+40
|
* [android] remove source returns referenceIvo van Dongen2017-02-281-1/+2
|
* [android] remove layer returns referenceIvo van Dongen2017-02-281-1/+2
|
* [android] source list accessor + exampleIvo van Dongen2017-02-281-0/+20
|
* [android] layer list accessor + exampleIvo van Dongen2017-02-281-0/+24
|
* [android] remove nonexistent layer or source handlingIvo van Dongen2017-02-231-27/+5
|
* [core] Enable property functions for text-{field,transform} (#7944)Anand Thakker2017-02-172-2/+92
|
* [android] Refactor composite stop types and conversionsIvo van Dongen2017-02-097-153/+115
|
* [android] fix reference table overflow in query rendered featuresIvo van Dongen2017-02-081-20/+36
|
* [android] data driven style implementationIvo van Dongen2017-02-0213-3928/+4264
|
* [core] remove trailing whitespace, add trailing newlines, add space after //Konstantin Käfer2017-01-2716-442/+442
|
* Adds checkstyle to CI (#7442)Cameron Mace2016-12-1616-4704/+4950
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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] test duplicate layer id exception handlingIvo van Dongen2016-12-121-0/+9
|
* [darwin, android] SDK bindings for circle-stroke propertiesJohn Firebaugh2016-12-091-0/+88
|
* Merge branch 'release-ios-v3.4.0' into 1ec5-release-ios-v3.4.0-beta.4-masterMinh Nguyễn2016-12-031-0/+1
|\
* | [android] test duplicate source id exception handlingIvo van Dongen2016-11-301-3/+10
| |
* | [android] - add uithread annotation and regenerate classes (#7156)Pablo Guardiola2016-11-307-7/+7
| |
* | [android] - replace Android logs with Timber (#6372) (#7149)Pablo Guardiola2016-11-2314-443/+428
| |
* | [android] return source ownership on removeIvo van Dongen2016-11-141-0/+49
| |
* | [android] return layer ownership on removeIvo van Dongen2016-11-141-1/+21
| |
* | [android] fix layer ownershipIvo van Dongen2016-11-111-6/+2
| |
* | [android] - instrumentation tests upgrade, move view checking to utility ↵Tobrun2016-11-091-34/+54
|/ | | | | | | | | | | | | | | | | | | | | | | | | class, remove inheritance in runtime style test (#6803) update gitignore for generated tests add camera move test add realtime geojson to be excluded when generating Activity sanity tests by default show workaround for showing a MapView in a dialog add annotation tests remove older camera tests, introduce tests for move, ease and animate, bring back setLatLng and getLatLng on MapView, add tests for internal camera API. compass view tests add tests for attribution and logo. fix annotation tests Rename Actiivity test class, split up annotation tests, added MarkerView tests, added infowindow tests, added MyLocationView tests fix addRemoveLayer test by integrating map interactions inside a ViewAction
* [android] - move instrumentation test code to correct package for Android ↵Tobrun2016-10-2017-0/+5449
Studio run configurations integration. (#6748)