google_atlas 0.1.2 copy "google_atlas: ^0.1.2" to clipboard
google_atlas: ^0.1.2 copied to clipboard

outdated

Google Map Provider for Atlas, an extensible map abstraction for Flutter with support for multiple map providers

google_atlas #

CircleCI codecov

Google Maps Atlas Provider that is built to work with atlas.

Quick Start #

Setup #

import 'package:flutter/material.dart';
import 'package:atlas/atlas.dart';
import 'package:google_atlas/google_atlas.dart';

void main() {
  AtlasProvider.instance = GoogleAtlas();
  runApp(MyApp());
}

Usage #

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Atlas Sample Demo',
      home: AtlasSample(),
    );
  }
}

class AtlasSample extends StatelessWidget {
  final LatLng position = LatLng(
    latitude: 37.42796133580664,
    longitude: -122.085749655962,
  );
  final Set<Marker> _markers = Set<Marker>.from([
    Marker(
      id: 'marker-1',
      position: LatLng(
        latitude: 37.42796133580664,
        longitude: -122.085749655962,
      ),
      onTap: () {
        print('tapped marker-1');
      },
    )
  ]);
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Atlas(
        position: position,
        markers: _markers,
      ),
    );
  }
}

Maintainers #

Project Lead(s):

Main Maintainer(s):

License #

MIT License

Copyright (c) 2019 BMW Technology Corporation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
3
likes
0
pub points
0%
popularity

Publisher

verified publisherbmwtech.dev

Google Map Provider for Atlas, an extensible map abstraction for Flutter with support for multiple map providers

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

atlas, flutter, google_maps_flutter

More

Packages that depend on google_atlas