summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/test/java/com/mapbox
Commit message (Collapse)AuthorAgeFilesLines
* [android] save location stateŁukasz Paczos2018-09-121-10/+10
|
* [android] merge LocationLayerPlugin to Maps SDKŁukasz Paczos2018-09-126-0/+1248
|
* [android] "is-supported-script" expression supportŁukasz Paczos2018-09-071-0/+15
|
* [android] - correct latlngbounds exception messageTobrun2018-09-051-3/+3
|
* [android] - provide correct expression integration for newly created ↵Tobrun2018-09-041-0/+14
| | | | property values
* [android] - add quotes to toString representation of a String literalTobrun2018-09-041-2/+9
|
* [android] - make improve this map translatableTobrun2018-09-041-5/+5
|
* [android] - modularise the sdktobrun2018-08-241-19/+4
|
* [android] - replace hardcode telemetry settings string by resources stringTobrun2018-08-221-0/+14
|
* [android] "collator" and "resolved-locale" expressions supportŁukasz Paczos2018-08-221-0/+77
|
* [android] - expose stylejsoon confiugration on MapboxMapOptions and MapView ↵Tobrun2018-08-211-3/+3
| | | | attributes
* [android] - fix accesstoken validationtobrun2018-07-231-1/+25
|
* [android] - remove unique LatLng validation of LatLngBounds buildertobrun2018-07-091-4/+14
|
* [android] - create device independent tests for camera position testingtobrun2018-07-051-1/+1
|
* [android] - range alpha between 0 and 1 with android color conversiontobrun2018-06-271-5/+23
|
* [android] - fix literal wrapping in comparission expressionstobrun2018-05-291-2/+42
|
* [android] - raw expression supportŁukasz Paczos2018-05-281-82/+149
|
* UI thread checking (#12000)Tobrun2018-05-251-1/+0
| | | * [android] - add UI thread checking
* [android] - remove requirement of having a mapbox access token (#12001)Tobrun2018-05-251-9/+0
|
* [android] added more tests for LatLngBounds.union(), ↵Osana Babayan2018-05-111-2/+216
| | | | | LatLngBounds.intersect() (#11777) fixed going over antimeridian for both
* [android] - unwrap LatLngBounds before creating core objectŁukasz Paczos2018-05-021-2/+1
|
* Revert "[android] - unwrap LatLngBounds for the shortest path when passing ↵Łukasz Paczos2018-05-021-20/+2
| | | | | | to core (#11759)" This reverts commit eb39c80
* [android] - unwrap LatLngBounds for the shortest path when passing to core ↵Łukasz Paczos2018-04-241-2/+20
| | | | (#11759)
* Add abs, round, floor, ceil operators (#11653)Anand Thakker2018-04-111-0/+60
| | | | | | | | | | | | | | | | | | | | * Add abs, round, floor, ceil operators Port of https://github.com/mapbox/mapbox-gl-js/pull/6496 * [ios, macos] Simplified abs, ceiling, floor expressions * [ios, macos] Added rounding expression function * [android] - binding integration for round, ceil, floor and abs expressions * Update mapbox-gl-js to include non-integer rounding test * Drop extra braces * mapbox-gl-js -> master * Update style-spec docs -> PropertyFactory.java
* [android] center was calculated incorrectly for LatLngBounds with zero span ↵Osana Babayan2018-04-111-0/+21
| | | | (#11650)
* [android] LatLngBounds were not build correctly when lons were the same (#11647)Osana Babayan2018-04-101-0/+21
|
* Rework logical condition convenience expressions (#11555)Tobrun2018-04-041-6/+6
| | | * [android] - rework expression logical operator api to match actual usage
* [android] - throw illegal argument exception when attempting to convert an ↵Tobrun2018-04-041-0/+10
| | | | PropertyValue as an expression literal (#11572)
* [android] - correctly convert Android int colors with to-color expression ↵Tobrun2018-03-231-4/+10
| | | | (#11506)
* Literal array conversion of primitive arrays (#11500)Tobrun2018-03-221-0/+8
| | | * [android] - literal array conversion of primitives types
* Expression filters (#11429)Tobrun2018-03-191-102/+0
| | | * [android] - add expression filter integration
* [android] bump mapbox-android-telemetry version to 3.0.0-beta.2 and adapt ↵Guardiola313372018-03-191-3/+3
| | | | events related code
* [android] - implement expression literal on arraysTobrun2018-03-161-8/+25
|
* [android] - add expression conversion, add getters (#11352)Tobrun2018-03-081-34/+0
|
* Expose more gestures settings (#11407)Łukasz Paczos2018-03-071-72/+76
| | | | | | | | | | | | | * [android] enable/disable velocity animations * [android] exposed a method to cancel ongoing velocity animations * [android] removed unused methods and constants * [android] fixed gestures manager initialization * [android] enable/disable increasing gesture thresholds * [android] saving/restoring new gestures options
* [android] - rework match expression to style specification syntaxTobrun2018-03-061-5/+39
|
* Remove deprecated location APIs (#11351)Łukasz Paczos2018-03-025-231/+1
|
* [android] LatLngBounds.union() should take date line into accountOsana Babayan2018-02-281-0/+21
|
* [android ] - new gestures library (cp #11221) (#11332)Łukasz Paczos2018-02-272-31/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [android] new gesture library - added SNAPSHOT dependency * [android] new gesture library - cleaned up redundant classes * [android] new gesture library - limiting scale when rotating * [android] new gesture library - shove gesture filtering * [android] new gesture library - increase rotation threshold when scaling * [android] new gesture library - minimum angular velocity * [android] new gesture library - exposed gestures execution listeners * [android] new gesture library - notifying new listeners tests * [android] new gesture library - removed tracking setting * [android] new gesture library - resetting focal point with every scale/rotate callback * [android] new gesture library - fixed camera change dispatcher callbacks * [android] new gesture library - cancel velocity animations in maps onStop() * [android] new gesture library - extracted telemetry pushes to a method * [android] new gesture library - deprecated onScrollListener * [android] new gesture library - unified shove listener name (cherry picked from commit 7905bd6)
* [android] LatLngBounds: latNorth should be greater or equal than latSouth Osana Babayan2018-02-271-0/+7
|
* [android] LatLngBounds can go over the antimeridian / date line. Osana Babayan2018-02-271-0/+131
|
* [android] Integration of the new events library (#10999) (#11183)Pablo Guardiola2018-02-131-1/+1
| | | | | | | | | | | | | | | | | | | * [android] integration of the new events library * JNI Bug - current build with JNI bug * fix #10999 comments * Clean-up - clean-up timbers and test code * [android] fix sdk identifier and sdk version * [android] merge from master (MAS 3.0) * [android] bump events lib version to 3.0.0-beta.1 and remove never used methods from math utils class
* [android] - add toString to Expression to print out object array notationTobrun2018-01-251-0/+23
|
* added parameter validation LatLngBounds.from() (#10831)Osana Babayan2018-01-051-0/+76
| | | closes #10730
* [android] - RTL supportTobrun2018-01-051-1/+1
|
* Merge branch 'release-agua' into masterupstream/fabian-merge-release-aguaFabian Guerra2018-01-042-87/+309
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # circle.yml # cmake/core-files.cmake # platform/android/CHANGELOG.md # platform/android/MapboxGLAndroidSDK/build.gradle # platform/android/MapboxGLAndroidSDK/gradle.properties # platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/CameraChangeDispatcher.java # platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/MapView.java # platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/MapboxMapOptions.java # platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/text/LocalGlyphRasterizer.java # platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/utils/BitmapUtils.java # platform/android/MapboxGLAndroidSDKTestApp/src/main/AndroidManifest.xml # platform/android/MapboxGLAndroidSDKTestApp/src/main/java/com/mapbox/mapboxsdk/testapp/activity/maplayout/DebugModeActivity.java # platform/android/MapboxGLAndroidSDKTestApp/src/main/java/com/mapbox/mapboxsdk/testapp/activity/maplayout/LocalGlyphActivity.java # platform/android/MapboxGLAndroidSDKTestApp/src/main/java/com/mapbox/mapboxsdk/testapp/activity/userlocation/MyLocationTintActivity.java # platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/activity_local_glyph.xml # platform/android/MapboxGLAndroidSDKTestApp/src/main/res/values/descriptions.xml # platform/darwin/src/MGLMapSnapshotter.mm # platform/darwin/src/MGLRendererConfiguration.h # platform/ios/CHANGELOG.md # platform/ios/DEVELOPING.md # platform/ios/INSTALL.md # platform/ios/README.md # platform/ios/resources/bg.lproj/Localizable.strings # platform/ios/resources/es.lproj/Localizable.strings # platform/ios/resources/vi.lproj/Localizable.strings # platform/ios/src/MGLMapView.mm # platform/macos/macos.xcodeproj/project.pbxproj # src/mbgl/text/glyph_manager.cpp
| * [android] added map touch listeners api based on listspaczos2017-12-201-0/+95
| |
| * Post camera listener invocations (#10690)Tobrun2017-12-141-87/+0
| | | | | | | | | | | | * [android] - post camera listener invocations * remove jvm unit test
| * MapSnapshot attribution (#10362)Tobrun2017-11-141-0/+309
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [android] - add attribution * [android] - optimise attribution sources * [android] - rework datamodel to attribution class * [android] - refactor Attribution, add tests * [android] - add getter for attribution string * [android] - rework attribution to include small logo, add layout placement * [android] - finalise integration and layout logic
* | add max & min latitude and longitude constants to maps sdk Osana Babayan2018-01-021-7/+5
| | | | | | | | | | add max & min latitude and longitude constants to maps sdk that are independent of Mercator projection closes #10780