flutter_map_marker_cluster_plus 1.4.1
flutter_map_marker_cluster_plus: ^1.4.1 copied to clipboard
Updated library based on flutter map v8 from fork of flutter_map_marker_cluster, Provides beautiful animated marker clustering functionality for flutter_map.
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.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(),
// },
);
}
}