flutter_map_marker_cluster
flutter_map_marker_cluster copied to clipboard
Provides beautiful animated marker clustering functionality for flutter_map. Inspired by Leaflet.markercluster
IMPORTANT: This depends on rorystephenson/flutter_map_marker_popup#51 final version is not in place!! fleaflet/flutter_map#1333
When we create new markers or remove some while the map is open, the old markers wouldn't update and let the new appear or disappear. So I just reseted the...
Hi! I was looking for some way to customize the appearance of the cluster marker when spiderfied but have found it's all hardcoded. While it was trivial to fork and...
with it being a very cool feature, i find in my case that i need the clustering but i have no need for the spiral/spiderifying. currently forked and added this...
in this code that work with previous flutter_map ``` flutter_map: ^2.1.1 flutter_map_location_marker: ^4.1.3 flutter_map_marker_cluster: git: url: https://github.com/aytunch/flutter_map_marker_cluster ``` ``` FlutterMap( mapController: _mapController, options: MapOptions( center: center, zoom: 15, maxZoom: 20,...
I am using riverpod change notifier as a view model for the flutter map, but the map always display the initial set of markers. Any change in this list of...
When I try: - to add in my pubsec.yaml: flutter_map_marker_cluster: ^1.0.0 This error occurs: "last line of pub output: "So, because myapp depends on flutter_map_marker_cluster ^1.0.0, version solving failed." When...
``` MarkerClusterLayerWidget( options: MarkerClusterLayerOptions( maxClusterRadius: 20, size: Size(40, 40), rotate: true, rotateAlignment: AlignmentDirectional.center, markers: context.watch().mapMarkers.values.toList(), polygonOptions: PolygonOptions( borderColor: Colors.blueAccent, color: Colors.black12, borderStrokeWidth: 3), builder: (context, markers) { return context.read().clusterIcon; },...
When cluster calculate a lot of markers (1000+) the Ui is blocking for a moment, because cluster calculation computes in the same thread. Is it possible to use isolate for...