flutter_map_marker_cluster_plus 1.4.2 copy "flutter_map_marker_cluster_plus: ^1.4.2" to clipboard
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.

example/lib/main.dart

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(),
      },
    );
  }
}
6
likes
150
points
715
downloads

Publisher

unverified uploader

Weekly Downloads

Updated library based on flutter map v8 from fork of flutter_map_marker_cluster, Provides beautiful animated marker clustering functionality for flutter_map.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, flutter_map, flutter_map_marker_popup_plus, latlong2

More

Packages that depend on flutter_map_marker_cluster_plus