google_map_service 0.0.3 copy "google_map_service: ^0.0.3" to clipboard
google_map_service: ^0.0.3 copied to clipboard

A Flutter package providing Google Maps services: map control, markers, polylines, geocoding, directions, and place APIs.

example/lib/main.dart

import 'package:example/views/google_map_autocomplete.dart';
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: 'Google Map Service Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
      ),
      home: const GoogleMapAutocomplete(),
    );
  }
}
0
likes
150
points
13
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package providing Google Maps services: map control, markers, polylines, geocoding, directions, and place APIs.

Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

flutter, google_maps_flutter_platform_interface, http

More

Packages that depend on google_map_service