google_maps_cluster_manager icon indicating copy to clipboard operation
google_maps_cluster_manager copied to clipboard

Simple Flutter clustering library for Google Maps

Results 31 google_maps_cluster_manager issues
Sort by recently updated
recently updated
newest added

This PR resolves conflicts with flutter_google_maps plugin using selective imports. closes #58 closes #61 closes #62

-remove warnings (unused imports). -upgrade packages. -use naming import for class conflicts between packages.

![Screenshot 2024-03-01 at 3 40 07 PM](https://github.com/bpillon/google_maps_cluster_manager/assets/93118368/c84ac915-3ea7-4cd1-b19a-47535ef9c0f4) When I update my flutter version and run application this issue come

../../../.pub-cache/hosted/pub.dev/google_maps_cluster_manager-3.1.0/lib/src/cluster_item.dart:9:44: Error: 'ClusterManager' is imported from both 'package:google_maps_cluster_manager/src/cluster_manager.dart' and 'package:google_maps_flutter_platform_interface/src/types/cluster_manager.dart'. Geohash.encode(location, codeLength: ClusterManager.precision);

after updating i'm facing this issue here : ``` Future Function(Cluster) get _markerBuilder => (cluster) async {} ClusterManager _initClusterManager() { return ClusterManager(items, _updateMarkers, markerBuilder: _markerBuilder); } ``` The argument type...

Is the package still being developed further, if not I could take it over and until then I have forked it and will publish it as _2 so that there...

Hide ClusterManager and Cluster classes from google_maps_flutter_platform_interface to fix import conflicts

I want to change color of selected marker so i made a logic so to use this logic i want to change or replace the current value of variable for...

Fix for the conflict with Cluster class.