mapbox-maps-android
mapbox-maps-android copied to clipboard
Interactive, thoroughly customizable maps in native Android powered by vector tiles and OpenGL.
## New Feature While we can use `style.localizeLabels(Locale.ENGLISH)` to localize labels to use "name_en", it seems that there is no way to localize labels to use "name". ## Why Useful...
## Environment - Android OS version: 13.0 - Devices affected: All Smartphones and Emulators - Maps SDK Version: 10.12.1 ## Observed behavior and steps to reproduce IIf we delete a...
## New Feature Create an Expression without any operator e.g. ``` class Expression : Value { // ...other code public Expression(@NonNull List array) : super(array) { } // ...other code...
## New Feature Add methods for adding 3d model address in ModelLayer ## Why In Android SDK, I want to add a 3d model (such as.obj format), I found the...
## Environment - Android OS version: Android 13 - Devices affected: samusung s21 - Maps SDK Version: 10.13.0 ## Observed behavior and steps to reproduce 1. Open the Mapbox application...
I am using below library and i have .tbmod animation files in my asstes folder using this how i add 3d model to the map ` implementation 'com.mapbox.maps:android:10.13.0'`
## Environment - Android OS version: 10 - Devices affected: Samsung Active Pro, emulator (rarely) - Maps SDK Version: 10.13.0 (since 10.0.0-beta.15) ## Observed behavior and steps to reproduce Trying...
## Environment - Android OS version: 9 - Devices affected: - Maps SDK Version: v10 ## Observed behavior and steps to reproduce 1. in your Java code, register an event...
## Environment - Maps SDK Version: 10.10.3 ## Observed behavior and steps to reproduce here is my code: ` val circleAnnotationOptions: CircleAnnotationOptions = CircleAnnotationOptions() .withPoint(Point.fromLngLat(51.416364, 35.771880)) .withCircleRadius(8.0) .withCircleColor("#ee4e8b") .withCircleStrokeWidth(2.0) .withCircleStrokeColor("#ffffff")...
``` fun MapView.addAnnotations() { with(annotations) { val config = AnnotationConfig() createCircleAnnotationManager(config).create(CircleAnnotationOptions()) createPointAnnotationManager(config).create(PointAnnotationOptions()) createPolygonAnnotationManager(config).create(PolygonAnnotationOptions()) createPolylineAnnotationManager(config).create(PolylineAnnotationOptions()) } } ``` Is there any way to add annotations so that they show above **ALL**...