summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/style/sources/GeoJsonSource.java
Commit message (Collapse)AuthorAgeFilesLines
* [android] - allow null updates to GeoJsonSource#setGeoJsonupstream/tvn-allow-null-updatestobrun2019-06-111-4/+3
|
* [android] copy features array before passing them to coreŁukasz Paczos2019-06-041-6/+13
|
* [android] - add javadoc URI supported protocolstobrun2019-05-271-8/+91
|
* [android] - use URI instead of URL to enable asset loadingtobrun2019-05-271-1/+55
|
* [android] - expose query feature extensionstobrun2019-01-151-0/+57
|
* [android] - Style.javaTobrun2018-12-101-0/+12
|
* [android] - nullify codebase with annotationsTobrun2018-11-071-3/+5
|
* Revert "[android] - infer nullity"tobrun2018-10-231-5/+3
| | | | This reverts commit 617742710852a5a958a13f2b659f8c307973e49d.
* [android] - infer nullityTobrun2018-10-121-3/+5
|
* [android] - converting GeoJsonSource Java features to core ones on a worker ↵Łukasz Paczos2018-08-211-4/+8
| | | | thread
* [android] hide peer constructorsŁukasz Paczos2018-08-151-1/+1
|
* [android] using @Keep annotation across the project with the help of lint checksŁukasz Paczos2018-07-261-0/+11
|
* UI thread checking (#12000)Tobrun2018-05-251-0/+20
| | | * [android] - add UI thread checking
* Expression filters (#11429)Tobrun2018-03-191-3/+3
| | | * [android] - add expression filter integration
* update to MAS3.0-beta.4 (#11468)Osana Babayan2018-03-161-2/+2
|
* migrated to use mapbox-java3.0 Osana Babayan2018-02-081-3/+3
| | | | migrated to use mapbox-java3.0 old 2.2.9 telementry is still used though
* [android] url getter on sourcesIvo van Dongen2017-05-111-0/+10
|
* Merge branch 'release-ios-v3.5.0-android-v5.0.0' into ↵Fabian Guerra2017-04-111-6/+6
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | boundsj-merge-release-branch # Conflicts: # cmake/core-files.cmake # mapbox-gl-js # platform/android/CHANGELOG.md # platform/ios/CHANGELOG.md # platform/macos/CHANGELOG.md # platform/qt/bitrise-qt5.yml # src/mbgl/gl/attribute.hpp # src/mbgl/gl/context.cpp # src/mbgl/gl/program.hpp # src/mbgl/map/map.cpp # src/mbgl/programs/program.hpp # src/mbgl/renderer/painter.cpp
| * Release android v5.0.2 (#8629)Tobrun2017-04-041-6/+6
| | | | | | | | | | | | | | | | | | | | * [android] - update CHANGELOG.md for v5.0.2 release * [android] - bump version name to 5.0.2 * [android] - fixup javadoc errors * bump SNAPSHOT version
* | [android] add option to set geometry and feature on geojson sourceIvo van Dongen2017-03-281-0/+69
| |
* | [android] geojson conversion optimisationIvo van Dongen2017-03-281-16/+5
|/
* 8322 javadoc 5.0.0 release (#8438)Tobrun2017-03-171-1/+1
| | | | | | | | * [android] - update javadoc 5.0.0 release * update annotation and sources package javadoc * update javadoc on MapboxMap and MapView
* [android] query source featuresIvo van Dongen2017-03-101-0/+22
|
* [core] remove trailing whitespace, add trailing newlines, add space after //Konstantin Käfer2017-01-271-2/+2
|
* Adds checkstyle to CI (#7442)Cameron Mace2016-12-161-159/+159
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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] javadoc - inter-link style properties properlyIvo van Dongen2016-10-051-7/+29
|
* [android] Sources: peer model, mutability (#6054)Ivo van Dongen2016-09-211-21/+102
|
* [android] #5941 - add geojson typed constructor to GeoJsonSource and an exampleIvo van Dongen2016-08-161-6/+23
|
* [android] #5852 - geojson source clusteringIvo van Dongen2016-08-131-0/+15
|
* [android] #5858 - added convenience methods for color propertiesIvo van Dongen2016-08-031-0/+21
|
* [android] #5610 - Initial Runtime Style BindingsIvo van Dongen2016-07-261-0/+23
[android] #5610 - Adjusted public api after discussion [android] #5610 - added jni binding for NativeMapView#getLayer [android] #5610 - Added initial test Activity [android] #5610 - Started on NativePeer implementation for Layer [android] #5610 - replaced low-level jni code with high-level for native getLayer [android] 5610 - completed basic layer peer class - constructible from java and c++ [android] #5610 - removed reference that was redundant and causing the finalizer exception [android] #5610 - Added a property peer [android] #5610 - added value type to do type conversions - wip [android] #5610 - simplified property conversion approach - wrapped value with jenv [android] #5610 - added some more value conversions [android] #5610 - Finished conversion for basic types [android] #5610 - allow color's to be set as either an android color int or a String to support all formats in the spec [android] #5610 - encode color ints as rgba to retain alpha channel [android] #5610 - recalculate classes after paint property [android] #5610 - more examples [android] #5610 - fixed the example [android] #5610 - cleaned up example code before continueing [android] #5610 - added layout property example [android] #5610 - set visibility on layer [android] #5610 - added removeLayer and example [android] #5610 - added more type conversions [android] #5610 - Started on peer classes for layer implementations - WIP [android] #5610 - First complete layer subclass peer implementation [android] #5610 - added a little bit of structure before adding the other layer types [android] #5610 - generate the c++ headers from the style spec [android] #5610 - make sure the visibility is set as a string [android] #5610 - Generate c++ layer peer class implementations from the style spec [android] #5610 - generate java layer peer classes [android] #5610 - cleanup comments [android] #5610 - register all c++ peer classes with jni [android] #5610 - addLayer [android] #5610 - comment out broken case [android] #5610 - Sources api - very much WIP [android] 5610 - GeoJson source implementation and geojson conversion [android] #5610 - cleanup add source/layer example a bit [android] #5610 - initial filter api [android] #5610 - Added filter api on the relevant Layer classes [android] #5610 - raster layer is not filterable [android] #5610 - actually make it compile [android] #5610 - completed filter implementation [android] #5610 - Vector and Raster Source + examples [android] #5610 - removed superfluous interface, moved filters to the correct package [android] #5610 - fixed comments [android] #5610 - moved tests to the right package [android] #5610 - hide difference between paint and layout properties in public api, make more performant set method for proeprties [android] #5610 - fix rebase issue