Last updated:
0 purchases
simple tiles map offline
Simple Tiles Map Offline #
Capturas #
Cómo utilizar? #
Ejemplo de uso básico
import 'package:flutter/material.dart';
import 'package:flutter_map/flutter_map.dart';
import 'package:latlong2/latlong.dart';
import 'package:simple_tiles_map_offline/batabase/store_simple_tiles_map.dart';
import 'package:simple_tiles_map_offline/simple_tiles_map_offline.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await StoreSimpleTilesMap.init();
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: [
SimpleTilesMapOffline(
typeMap: TypeMap.osm,
mapOptions: mapOptions,
),
],
),
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.