livemap 0.2.0 copy "livemap: ^0.2.0" to clipboard
livemap: ^0.2.0 copied to clipboard

outdated

A map widget with live positions updates. Provides a controller to manage the map state.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'home.dart';
import 'simple.dart';
import 'bottom_bar.dart';
import 'custom_controls.dart';
import 'sidebar.dart';
import 'markers.dart';

final routes = {
  '/simple': (BuildContext context) => SimpleLiveMapPage(),
  '/bottom_bar': (BuildContext context) => LiveMapWithBottomBarMapPage(),
  '/custom_controls': (BuildContext context) => CustomControlsPage(),
  '/sidebar': (BuildContext context) => SideBarPage(),
  '/markers': (BuildContext context) => LivemapMarkersPage(),
};

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Livemap examples',
      routes: routes,
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: HomePage(),
    );
  }
}

void main() => runApp(MyApp());
13
likes
0
pub points
14%
popularity

Publisher

unverified uploader

A map widget with live positions updates. Provides a controller to manage the map state.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

cupertino_icons, flutter, flutter_map, fluttertoast, geopoint, rxdart, slugify2, speech_bubble

More

Packages that depend on livemap