flutter_map_marker_cluster_plus 1.4.2
flutter_map_marker_cluster_plus: ^1.4.2 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';
import 'clustering_many_markers_page.dart';
import 'clustering_page.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(),
},
);
}
}