flutter_map_fast_cluster 0.0.1 copy "flutter_map_fast_cluster: ^0.0.1" to clipboard
flutter_map_fast_cluster: ^0.0.1 copied to clipboard

discontinuedreplaced by: flutter_map_supercluster
outdated

A more basic and faster alternative to flutter_map_marker_cluster for clustering Markers in flutter_map.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_map_fast_cluster_example/clustering_many_markers_page.dart';
import 'package:flutter_map_fast_cluster_example/clustering_page.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Clustering Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const ClusteringPage(),
      routes: <String, WidgetBuilder>{
        ClusteringPage.route: (context) => const ClusteringPage(),
        ClusteringManyMarkersPage.route: (context) =>
            const ClusteringManyMarkersPage(),
      },
    );
  }
}
0
likes
0
points
3
downloads

Publisher

unverified uploader

Weekly Downloads

A more basic and faster alternative to flutter_map_marker_cluster for clustering Markers in flutter_map.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_map, flutter_map_marker_popup, latlong2, supercluster

More

Packages that depend on flutter_map_fast_cluster