summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK
Commit message (Collapse)AuthorAgeFilesLines
...
| * [android] - update proguard configuration for 5.0.0 (#8437)Tobrun2017-03-161-2/+6
| |
| * [android] Change version name back to 5.0.0-SNAPSHOTAntonio Zugaldia2017-03-121-1/+1
| |
| * [android] make BubbleLayout publicios-v3.5.0-beta.3android-v5.0.0-beta.3Antonio Zugaldia2017-03-101-1/+1
| |
| * [android] [auto] Update properties to version 5.0.0-beta.3 in preparation ↵Antonio Zugaldia2017-03-101-1/+1
| | | | | | | | for build.
| * [android] query source featuresIvo van Dongen2017-03-102-0/+54
| |
| * [android] - zoom to rounded levelsTobrun2017-03-104-14/+35
| |
| * [android] Include the telemetry service to simplify set upAntonio Zugaldia2017-03-091-0/+5
| |
| * [android] - add style loading callback (#8291)Tobrun2017-03-091-15/+83
| | | | | | | | | | | | * [android] - add style loading callback that is invoked when a style finishes loading. * fixup language + add support for adding a callback when invoking setStyle with the default styles.
| * [android] - harden mapZoomButtonController to avoid null pointer exceptions ↵Tobrun2017-03-091-2/+4
| | | | | | | | (#8332)
| * [android] - move touch handling of MarkerViews back to ↵Tobrun2017-03-095-60/+53
| | | | | | | | View#setOnClickListener. Workaround panning issue by dispatching touch events to the parent ViewGroup. (#8272)
| * [android] renames MultiPoint to BasePointCollectionAntonio Zugaldia2017-03-093-5/+5
| |
| * [android] fix checkstyleAntonio Zugaldia2017-03-091-1/+2
| |
| * [android] update version to local package build configAntonio Zugaldia2017-03-091-1/+1
| |
| * [android] set user agent on initializationAntonio Zugaldia2017-03-091-1/+1
| |
| * [android] re-add build config fieldsAntonio Zugaldia2017-03-091-0/+2
| |
| * Merge master into release-ios-v3.5.0-android-v5.0.0John Firebaugh2017-03-0813-37/+119
| |\
| * | MyLocationView activate/deactivate LocationSource (#8255)Tobrun2017-03-081-4/+4
| | | | | | | | | | | | | | | | | | * [android] - activate/deactivate the locationSource when toggling the MyLocationView state. * correct accuracy width
| * | [android] - don't disable tracking when animation the camera bearing. (#8279)Tobrun2017-03-081-1/+1
| | |
| * | Updates version name and CHANGELOG after 5.0.0-beta.2 release (#8254)Antonio Zugaldia2017-03-021-1/+1
| | | | | | | | | | | | | | | | | | * go back to 5.0.0-SNAPSHOT * update changelog
| * | [android] [auto] Update properties to version 5.0.0-beta.2 in preparation ↵Antonio Zugaldia2017-03-011-1/+1
| | | | | | | | | | | | for build.
* | | [android] move build to Android StudioKonstantin Käfer2017-03-172-0/+64
| | |
* | | [android] add changing compass view image feature to the sdk (#8301)Pablo Guardiola2017-03-146-4/+113
| | |
* | | [android] don’t crash on map changed callback when OnMapChangedListener ↵Ivo van Dongen2017-03-141-1/+5
| | | | | | | | | | | | throws a runtime exception
* | | [android] query source featuresIvo van Dongen2017-03-092-0/+54
| |/ |/|
* | [android] use PropertyValue for default values in functionsIvo van Dongen2017-03-073-11/+39
| |
* | [android] Add support for queryRenderedFeatures filterIvo van Dongen2017-03-042-12/+52
| |
* | [android] - add accessibility support to the Android SDK by applying content ↵Tobrun2017-03-017-13/+27
| | | | | | | | descriptions on Views overlain on the map. (#8230)
* | [android] - add unit test for Mapbox (#8228)Tobrun2017-03-011-1/+1
|/
* [android] keep default file source alive for the duration (#8226)Ivo van Dongen2017-03-011-9/+5
|
* [android] add line starts with a semicolon and empty statement checkstyle ↵Pablo Guardiola2017-03-011-1/+0
| | | | rules and fix related checkstyle issues (#8231)
* Only listen to connectivity broadcast events when needed (#8222)Tobrun2017-03-013-51/+47
| | | | | | * [android] - only listen to connectivity change events when needed. * [android] - fix compile var args warning, remove redundant test
* [core] Implement data-driven styling for ↵Anand Thakker2017-02-281-32/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | {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] insert layer at indexIvo van Dongen2017-02-282-0/+21
|
* [android] remove layer at indexIvo van Dongen2017-02-282-2/+26
|
* [android] insert layer aboveIvo van Dongen2017-02-282-7/+34
|
* [android] remove source returns referenceIvo van Dongen2017-02-282-10/+16
|
* [android] remove layer returns referenceIvo van Dongen2017-02-282-10/+17
|
* [android] source list accessor + exampleIvo van Dongen2017-02-282-0/+25
|
* [android] layer list accessor + exampleIvo van Dongen2017-02-282-0/+25
|
* [android] add unknown source typeIvo van Dongen2017-02-281-0/+25
|
* [android] add unknown layer typeIvo van Dongen2017-02-281-0/+25
|
* [WIP] InfoWindow refactor (#8080)Pablo Guardiola2017-02-2813-245/+773
| | | | | | | | | | * [android] remove unnecessary info window class and add bubble layout * fix some PR comments (remove hungarian notation, make bubble popup helper package protected and fix some code style issues) * refactor replace enum in favor of intdef * make bubble layout package protected and remove useless info window tip view class
* [android] - don't allow transforming to the same camera position, ignore ↵Tobrun2017-02-281-24/+29
| | | | redundant updates. (#8134)
* Fix a NPE that occurs when MapView is initialized with a null ↵Tobrun2017-02-281-1/+1
| | | | MapboxMapOptions (#8131)
* [android] - reverse compass direction (#8130)Tobrun2017-02-271-6/+12
|
* [android] jni high level binding refactorIvo van Dongen2017-02-2410-486/+430
|
* [android] remove nonexistent layer or source handlingIvo van Dongen2017-02-234-42/+12
|
* [android] fix units in runtime styling javadoc (#8161)Pablo Guardiola2017-02-231-4/+4
|
* Update to MAS 2.0.0-beta.2 and handle dependencies consistently (#8169)Antonio Zugaldia2017-02-231-5/+5
| | | | | | * [android] update to mas 2.0-beta2 and handle dependencies consistenly * extract remaining dependencies and bump stable versions
* [android] - move calculating a bounding box zoom level to projection. (#8133)Tobrun2017-02-232-11/+11
|