simple_tiles_map 2.0.0 copy "simple_tiles_map: ^2.0.0" to clipboard
simple_tiles_map: ^2.0.0 copied to clipboard

Crea fondos de mapa de OpenStreetMap, google, Stamen, CartoMap, Esri de forma sencilla.

example/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_map/flutter_map.dart';
import 'package:latlong2/latlong.dart';
import 'package:simple_tiles_map/simple_tiles_map.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    LatLng? mapCenter = const LatLng(-16.480954, -68.189594);
    MapOptions mapOptions = MapOptions(
      initialCenter: mapCenter,
      maxZoom: 19,
      minZoom: 5,
    );
    return MaterialApp(
      title: 'Tiles Basemap',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Mapa Base ${TypeMap.stamenWater}'),
        ),
        body: Column(
          children: [
            SimpleTilesMap(
              typeMap: TypeMap.stamenWater,
              mapOptions: mapOptions,
              isOffline: false,
            ),
          ],
        ),
      ),
    );
  }
}
8
likes
0
pub points
63%
popularity

Publisher

unverified uploader

Crea fondos de mapa de OpenStreetMap, google, Stamen, CartoMap, Esri de forma sencilla.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_map, flutter_map_tile_caching, isar, isar_flutter_libs, latlong2, path_provider

More

Packages that depend on simple_tiles_map