mapbox-maps-flutter
mapbox-maps-flutter copied to clipboard
Interactive, thoroughly customizable maps for Flutter powered by Mapbox Maps SDK
**Problem:** The ID that gets retreived from the feature that's tapped is an internally generated GUID and offers no clue to the listener about which point was selected by the...
I'm sure there will be more, but after a week of working earnestly with this library: 1) An object named ScreenCoordinate should store pixels, not latitude and longitude. 2) Any...
Hello. I have 2 building errors. ``` FAILURE: Build completed with 2 failures. 1: Task failed with an exception. ----------- * What went wrong: A problem occurred configuring project ':mapbox_maps_flutter'....
:wave: Hey there! It's [Changebot](https://github.com/mapbox/changebot), and I help repositories follow our [engineering](https://github.com/mapbox/engineering) best practices. My magic wand found some things I wanted to highlight for your review: Item | Current...
Hey there, I created a custom dataset using the Mapbox studio, converted it into a tileset, and added an additional layer to a custom style in my map. ``` MapWidget(...
### What does this pull request do? Adds configuration options to configure map widget logo and attribution visibility. ### What is the motivation and context behind this change? Addresses: https://mapbox.atlassian.net/browse/MAPSFLT-207...
### What does this pull request do? Fixes race condition in events when method call to subscribe to map events from dart side was competing with early map events. The...
This code works with `MapBox` controller object but when `Snapshotter` is used, marker is not drawn on the map. ``` Future _addMarker() async { final bytes = await rootBundle.load(Assets.image.mapPin.keyName); final...
When I add a line to the map its width stays the same independent of the zoom level: As a result the lines are very thick and cluttered when zoomed...
When I use: ``` mapboxMap?.location.updateSettings( LocationComponentSettings( pulsingEnabled: true, showAccuracyRing: true, puckBearing: PuckBearing.COURSE, puckBearingEnabled: true, ), ); ``` And add a LineLayer: ``` await mapboxMap?.style.addLayer( LineLayer( id: 'line_layer', sourceId: 'line', lineColor:...