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

A Flutter package that provides a complete service layer for Google Maps, including APIs for map initialization, markers, geocoding, directions, places, and distance calculations — all in a clean, eas [...]

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
0
points
234
downloads

Documentation

Documentation

Publisher

unverified uploader

Weekly Downloads

A Flutter package that provides a complete service layer for Google Maps, including APIs for map initialization, markers, geocoding, directions, places, and distance calculations — all in a clean, easy-to-use architecture.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, google_maps_flutter_platform_interface, http

More

Packages that depend on google_map_service