mapbox-maps-flutter
mapbox-maps-flutter copied to clipboard
Interactive, thoroughly customizable maps for Flutter powered by Mapbox Maps SDK
In the demo application, increasing the loop size in the PointAnnotationPage to 10K markers: for (var i = 0; i < 10000; i++) { options.add(PointAnnotationOptions( geometry: createRandomPoint().toJson(), image: list)); }...
在 SymbolLayer 中没有 textField 这个属性
Using PolylineAnnotationManager.createMulti the memory usage increases with each iteration. With a slower iteration speed the increase is less dramatic. ```dart import 'dart:async'; import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:mapbox_maps_flutter/mapbox_maps_flutter.dart';...
I receive a crash on some specific devices (Pixels, Samsung Galaxy) when displaying the geojson on the map. Basically, I can see the map when nothing is displayed, but when...
### Environment - Device: iPhone - OS: iOS 17.1 - Package: mapbox-maps-flutter ### Issue Description I've encountered a significant memory leak issue when using the map display component of `mapbox-maps-flutter`...
It seems that if the map is in an IndexedStack and is not visible, then some kind of a condition is triggered that allows the memory usage to grow until...
## Environment - Flutter version: `3.16.9` - mapbox_maps_flutter version: `0.5.1` - Device: `iPhone Simulator` - OS: `iOS 17.2` ## Steps to Reproduce - Navigate to a screen with MapWidget -...
Here is my code, which is inside my _onMapTapped() function : ``` List queriedRenderedFeatures = await mapboxMap!.queryRenderedFeatures( RenderedQueryGeometry(value: jsonEncode(screenCoordinate.encode()), type: Type.SCREEN_COORDINATE), RenderedQueryOptions(filter: null), ); if (queriedRenderedFeatures.isNotEmpty) { queriedRenderedFeatures.forEach((element) { print(element?.layers.toString());...
Hi, not sure where else I can ask this so I hope this is an appropriate question here. Can you tell me whether there are plans to implement offline map...
Hello, I would like to know if there is a scheduled date for making the offline maps feature available in the library?