flutter_map_location 0.12.0 copy "flutter_map_location: ^0.12.0" to clipboard
flutter_map_location: ^0.12.0 copied to clipboard

discontinued
PlatformAndroidiOS

flutter_map plugin to request and display the users location and heading on the map.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'pages/custom.dart';
import 'pages/default.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: 'Location Examples',
        theme: ThemeData(
          primarySwatch: Colors.blue,
          visualDensity: VisualDensity.adaptivePlatformDensity,
        ),
        home: DefaultPage(),
        routes: <String, WidgetBuilder>{
          CustomPage.route: (_) => CustomPage(),
        });
  }
}
9
likes
100
pub points
71%
popularity

Publisher

verified publisherxennis.org

flutter_map plugin to request and display the users location and heading on the map.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_compass, flutter_map, geolocator, latlong2

More

Packages that depend on flutter_map_location