Roman Laitarenko

Results 134 comments of Roman Laitarenko

@jnorkus thank you for the clarification, still no luck on my side replicating this, could you share iOS and Xcode version you are using?

Seems to be a bug in Flutter itself https://github.com/flutter/flutter/issues/110381

Hi @daviidmart, for the Standard style you can hide 3d objects by setting [`show3dObjects`](https://pub.dev/documentation/mapbox_maps_flutter/latest/mapbox_maps_flutter/StyleManager/setStyleImportConfigProperty.html) to `false`: ```dart mapboxMap.style.setStyleImportConfigProperty("basemap", "show3dObjects", false); ``` You can find more configuration properties for the Mapbox...

@grantleemw Currently there is no configuration to remove only a specific types of 3D objects, however you can use `ClipLayer` to hide some specific 3D objects.

Hi @kiwi-koder, @David-Prelinger could you check if the issue is happening with the latest Flutter SDK(3.32.5)?

Hello @MarsTheMan, Thank you for reaching out. I’m unable to reproduce the issue on my side. Could you please provide more details about your environment and setup? Specifically: 1. The...

@brandon-watkins-avcrm Layers appear in the order they've been added to the style(if the ordering is not specified explicitly), annotation manager internally adds a layer upon initialization, you could either: *...

Hi all, thank you for making this report, indeed tap gestures were consumed by annotation gesture recognition on Android, while on iOS annotation taps are also propagated to the map,...

Hi @thuan-savvycom, the timeout is defined statically on the Android side, not sure why it times out as snapshot should be ready in much less than 1 second, this could...

@thuan-savvycom As for the `Snapshotter` - you can style it in pretty much the same way as the map through the `StyleManager`(`Snapshotter.style`), including adding a poly line, one thing that...