mapsforge_flutter
mapsforge_flutter copied to clipboard
Offline maps as pure flutter code
I have the following piece of code: ``` class Hbg extends StatelessWidget { const Hbh({super.key}); Future _initialize(BuildContext ctx, Widget child) async { final map = await MapFile.using( (await DefaultAssetBundle.of(ctx).load("assets/map/mo.map")) .buffer...
Hi, first of all thank you for developing this package. We use offline map, so; ``` static const String MAP_THEME_PATH_URL = "assets/render_themes/defaultrender.xml"; static const String MAP_DARK_THEME_PATH_URL = "assets/render_themes/darkrender.xml"; ``` I...
I want to zoom the map with existing markers (minLat, minLng, maxLat, maxLng). Is there any way to initialize MapViewPosition with bounding paramaters.
When zooming, the size of the Marker remains the same. However, the fontsize of the MarkerCaption does resize and can therefor become unreadable small and impractical big. When the fontsize...
I would like to display multiple captions for a single Marker. For example different captions for Id, Name, Count. The captions could then be placed at different positions alongside the...
Seems we can gain speed by adding cache to indoorNotationMatcher.
I am trying to implement a log in/log out functionality using Provider for controlling the map. Everything runs if I execute the straight flow - log in and use the...
Hi, When I try to run the unit tests many of them fail. I have tried on MacOS and Windows, are there any setup instructions available for the tests? An...
Hello, now we are switching between themes with the Cubit. It works fine but we have a bug here and we can not solve it. We've added Unique key for...
### Use case My map has an XML file containing multiple elements (symbols) that are drawn on the map. In many cases the user wont need 50% of them. Example:...