mapbox-maps-flutter
mapbox-maps-flutter copied to clipboard
Interactive, thoroughly customizable maps for Flutter powered by Mapbox Maps SDK
First of all thanks for getting this out and making the source code public! Whats the timeline for offline support? We would need that feature before we can migrate.
I am trying to [embed a Flutter module in a native iOS app](https://docs.flutter.dev/add-to-app/ios/project-setup) by following **Option B - Embed frameworks in Xcode.** I created two empty projects (one iOS app...
When zooming and moving the camera at the same time, it feels really weird. It's hard to describe why, but it's really obvious when you see it. It makes it...
Something reminiscent of airbnb bubbles or any interactive widget  I understand that the symbol annotation layer kind of supports this, but it seems pretty static - would be nice...
Would like to see the possibility to add custom data to the pointannotationoptions. Let's say I have a custom class that I need to pass to the annotationclicklistener. Cant do...
onTapListener: (coordinate) async { var value = await mapController?.queryRenderedFeatures( RenderedQueryGeometry( value: json.encode(coordinate.encode()), type: Type.SCREEN_COORDINATE), RenderedQueryOptions( layerIds: ['add-3d-buildings'], filter: null)); if (value!.isNotEmpty) { value.forEach((element) { print(element?.queriedFeature.feature["id"]); }); } else { print("no...
I have an existing project I am trying to migrate from google maps to mapbox. When I add `mapbox_maps_flutter: ^0.5.0` to my pubspec, and `SDK_REGISTRY_TOKEN` to my `gradle.properties` then try...
I know this is more of a general question about Mapbox, but I'm not sure how to always display a full route no matter how long it is and how...
Per the example and my own implementation, I can't find a way to focus on the user's location or focus the camera on the puck. a The current implementation in...
Problem: Currently, our system generates polygons comprising 360 vertices to display a red circle with a fill color set to red and an opacity of 10%. However, when these polygons...