google_maps_drawing_tools 0.0.6 copy "google_maps_drawing_tools: ^0.0.6" to clipboard
google_maps_drawing_tools: ^0.0.6 copied to clipboard

A Flutter plugin that adds drawing tools (polygons, circles, rectangles) on Google Maps, enabling users to interactively draw and edit shapes within a Flutter application.

example/lib/main.dart

// ignore_for_file: unused_import

import 'package:example/src/map_drawing_screen.dart';
import 'package:flutter/material.dart';
import 'package:google_maps_drawing_tools/google_maps_drawing_tools.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: 'Google Maps Drawing Tools Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
      ),
      home: MapDrawingScreen(),
    );
  }
}
7
likes
160
points
97
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin that adds drawing tools (polygons, circles, rectangles) on Google Maps, enabling users to interactively draw and edit shapes within a Flutter application.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

collection, flutter, geolocator, google_maps_flutter, pointer_interceptor

More

Packages that depend on google_maps_drawing_tools