map_zone_manager 1.0.0 copy "map_zone_manager: ^1.0.0" to clipboard
map_zone_manager: ^1.0.0 copied to clipboard

A powerful Flutter package to create, mark, and manage zones on Google Maps. Includes features like multi-zone support, custom map styles, and camera control for a seamless user experience.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:map_zone_manager/data/enum/map_style.dart';
import 'package:map_zone_manager/widgets/map_zone_manager.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: MapZoneManager(
          multiZone: true,
          currentBorderColor: Colors.red,
          currentBorderWidth: 2,
          currentZoneColor: Colors.red.withValues(alpha: 0.5),
          defaultBorderColor: Colors.yellow,
          defaultBorderWidth: 2,
          defaultZoneColor: Colors.yellow.withValues(alpha: 0.5),
          mapStyle: MapStyle.silver,
        ),
      ),
    );
  }
}
2
likes
150
points
50
downloads

Publisher

verified publishermypackeges.tk

Weekly Downloads

A powerful Flutter package to create, mark, and manage zones on Google Maps. Includes features like multi-zone support, custom map styles, and camera control for a seamless user experience.

Repository (GitHub)

Topics

#map-zone-management #map-markers #map-zones #map-customization #flutter-google-maps

Documentation

API reference

License

MIT (license)

Dependencies

flutter, google_maps_flutter, http, rxdart

More

Packages that depend on map_zone_manager