summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com
Commit message (Collapse)AuthorAgeFilesLines
* [android] - deprecate MarkerViewTobrun Van Nuland2017-09-275-0/+27
|
* [android] - add API to perform platform side animationsTobrun Van Nuland2017-09-262-4/+59
|
* [android] - disable rotation gesture when pinch zoomingTobrun Van Nuland2017-09-252-15/+23
|
* [android] CustomLayer - optionally accept a context lost callback functionIvo van Dongen2017-09-221-2/+12
|
* [android] re-implemented the fps listener apiIvo van Dongen2017-09-224-35/+54
|
* [android] map snapshotsIvo van Dongen2017-09-221-9/+4
|
* [android] fix ZoomButtonController initialisation orderIvo van Dongen2017-09-221-1/+1
| | | | - prevents "java.lang.IllegalArgumentException: Receiver not registered: android.widget.ZoomButtonsController" when quitting the map before the receiver is properly registered
* [android] self-contained map rendererIvo van Dongen2017-09-227-177/+190
| | | | - Isolates the GL thread in a MapRenderer class with a native peer
* [android] schedule work on the gl thread using GLSurfaceView#queueEventIvo van Dongen2017-09-224-17/+76
|
* [android] async renderingIvo van Dongen2017-09-225-146/+425
| | | | | | - introduces GLSurfaceView - introduces Orchestration thread - renders on the gl thread
* [android] remove texture viewIvo van Dongen2017-09-222-46/+8
|
* [android] - set error handler when starting snapshotter, remove obsolete ↵Tobrun Van Nuland2017-09-211-1/+2
| | | | static keyword on interface
* [android] hook camera events into compass (#10019)Pablo Guardiola2017-09-203-53/+90
|
* Do not check connection if it is local requestRadosław Juszczyk2017-09-141-4/+5
| | | | Requests to servers which run on localhost should be independent from internet connection.
* [android] - harden offline region deletionTobrun Van Nuland2017-09-141-1/+2
|
* [android] - don't recycle bitmap for icon reuse.Tobrun Van Nuland2017-09-121-10/+1
|
* [android] - avoid adding duplicate points to boundsTobrun2017-09-111-2/+4
|
* [android] Clear out mapCallback's OnMapReadyCallbacks on onDestroyRobin Darby2017-09-111-0/+5
|
* [android] fix is download complete (a download is complete when count and ↵Pablo Guardiola2017-09-071-1/+1
| | | | required resources match and the download state is inactive) (#9913)
* [core][ios][macos][android]DDS-ify `text-letter-spacing` and `text-max-width`Asheem Mamoowala2017-08-301-6/+6
|
* [android] map snapshotterIvo van Dongen2017-08-301-0/+259
|
* Implement icon-anchor propertyLauren Budorick2017-08-283-0/+91
|
* Revert "[android] - configure loggin of HttpRequest, cleanup HttpRequest"Tobrun Van Nuland2017-08-243-257/+200
| | | | This reverts commit a059c74a54302f9604f3e3b28143be7645e6204f.
* Set Default MaxZoom to 22Asheem Mamoowala2017-08-211-2/+4
|
* [android] - configure loggin of HttpRequest, cleanup HttpRequestTobrun Van Nuland2017-08-193-200/+257
|
* [android] - style image accessorTobrun Van Nuland2017-08-182-0/+13
|
* [android] - avoid IndexOutOfBounds when destroying map objectTobrun Van Nuland2017-08-173-57/+19
|
* [android] - create smallest possible LatLngBounds when visible region ↵Tobrun2017-08-172-8/+17
| | | | crosses the dateline
* [android] - enable location change animation of MyLocationView by defaultTobrun Van Nuland2017-08-161-1/+1
|
* [android] - deprecate MyLocationView in favor of LocationLayer pluginTobrun Van Nuland2017-08-154-0/+37
|
* [android] - re-add projectedMetersTobrun Van Nuland2017-08-151-0/+15
|
* [android] - restore max zoom to 25.5Tobrun Van Nuland2017-08-141-1/+1
|
* [android] - optimise icon managementTobrun Van Nuland2017-08-103-16/+52
|
* [android] - provide compability with Samsung devices forcing 3-4 array ↵Tobrun2017-08-101-3/+27
| | | | matrix length
* [android] - expose setStyleJson and getStyleJsonTobrun Van Nuland2017-08-102-2/+23
|
* [android] - annotate MapboxMap with UiThreadTobrun Van Nuland2017-08-071-107/+1
|
* [android] - fix OnCameraMoveStartedListener typo (#9664)Tobrun2017-08-011-1/+1
|
* [android] - try/catch initalisation of Telemetry (#9658)Tobrun2017-08-011-2/+10
|
* [android] - remove preview image integration (#9657)Tobrun2017-08-011-2/+1
|
* [android] - move ZoomButtonController creation to view initalisation (#9587)Tobrun2017-08-012-15/+17
|
* Solve lint issues, reduce baseline (#9627)Tobrun2017-07-2811-29/+33
| | | | * [android] - fix lint issues SDK
* [android] fix compass direction (Transform::getCameraOptions returns ↵Pablo Guardiola2017-07-271-1/+2
| | | | counterclockwise angle after transform.invalidateCameraPosition() which needs to be transformed to a clockwise bearing) (#9632)
* [core][android][macos][ios] Implement property functions for line-join, ↵Lauren Budorick2017-07-261-9/+9
| | | | text-justify, text-anchor (#9583)
* [android] - add zMediaOverlay configuration, add bottom sheet test setupTobrun Van Nuland2017-07-262-4/+33
|
* [android] - forward getMapAsync to map for fragmentTobrun Van Nuland2017-07-262-4/+16
|
* [android] - hook into onGlobalLayout to start creating the surface and as a ↵Tobrun Van Nuland2017-07-251-3/+14
| | | | result create the map object
* [android] - don't query for shape annotations if none were addedTobrun Van Nuland2017-07-251-4/+6
|
* [android] fix added to map checks because LongSparseArray#indexOfKey could ↵Pablo Guardiola2017-07-254-33/+20
| | | | return a negative number when the specified key is not mapped (#9602)
* [android] - harden click handling of shape annotationsTobrun Van Nuland2017-07-241-4/+20
|
* [android] - validate Marker before opening InfoWindowTobrun Van Nuland2017-07-241-3/+2
|