arcgis_maps 0.0.1 arcgis_maps: ^0.0.1 copied to clipboard
ArcGIS Maps SDK for Flutter is a plugin for ArcGIS Maps SDK for Kotlin and ArcGIS Maps SDK for Swift (Not available) created by Ludycom S.A.S. Currently in beta, it is planned to be used in production [...]
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:flutter_dotenv/flutter_dotenv.dart';
import 'package:arcgis_maps_example/pages/basic_map.dart';
import 'package:arcgis_maps_example/pages/manage_map.dart';
import 'package:arcgis_maps_example/pages/download_from_portal.dart';
import 'package:arcgis_maps_example/pages/load_feature_tablet_service.dart';
import 'package:arcgis_maps_example/pages/load_local_files.dart';
import 'package:arcgis_maps_example/pages/load_portal_feature_layer.dart';
import 'package:arcgis_maps_example/pages/select_features_in_feature_layer.dart';
import 'package:arcgis_maps_example/utils/page_routes_enum.dart';
Future<void> main() async {
await dotenv.load(fileName: '.env');
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
void navigateToBasicMap(BuildContext context) {
Navigator.of(context).push(
MaterialPageRoute(builder: (_) => const BasicMapPage()),
);
}
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
useMaterial3: true,
colorSchemeSeed: Colors.blue,
appBarTheme: const AppBarTheme(
backgroundColor: Colors.blue,
),
),
title: 'ArcGIS Maps',
initialRoute: PageRoutesEnum.home.path,
routes: {
PageRoutesEnum.home.path: (context) => _HomePage(),
PageRoutesEnum.basic_map.path: (context) => const BasicMapPage(),
PageRoutesEnum.load_feature_tablet_service.path: (context) => const LoadFeatureTabletServicePage(),
PageRoutesEnum.load_portal_feature_layer.path: (context) => const LoadPortalFeatureLayerPage(),
PageRoutesEnum.download_form_portal.path: (context) => const DownloadFormPortalPage(),
PageRoutesEnum.load_local_files.path: (context) => const LoadLocalFilesPage(),
PageRoutesEnum.select_features_in_feature_layer.path: (context) => const SelectFeaturesInFeatureLayerPage(),
PageRoutesEnum.manage_map.path: (context) => const ManageMapPage(),
},
);
}
}
class _HomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const FittedBox(
child: Text(
'ArcGIS Maps by Ludycom, Jonathan Poveda',
style: TextStyle(color: Colors.white),
)
),
),
body: ListView.custom(
childrenDelegate: SliverChildListDelegate.fixed(
[
Card(
child: ListTile(
leading: const Icon(Icons.map),
title: const Text('Basic map'),
onTap: () => Navigator.of(context).pushNamed(PageRoutesEnum.basic_map.path),
),
),
Card(
child: ListTile(
leading: const Icon(Icons.map),
title: const Text('Load feature tablet service'),
onTap: () => Navigator.of(context).pushNamed(PageRoutesEnum.load_feature_tablet_service.path),
),
),
Card(
child: ListTile(
leading: const Icon(Icons.map),
title: const Text('Load Portal feature layer'),
onTap: () => Navigator.of(context).pushNamed(PageRoutesEnum.load_portal_feature_layer.path),
),
),
Card(
child: ListTile(
leading: const Icon(Icons.map),
title: const Text('Download from Portal'),
onTap: () => Navigator.of(context).pushNamed(PageRoutesEnum.download_form_portal.path),
),
),
Card(
child: ListTile(
leading: const Icon(Icons.map),
title: const Text('Load GeoDatabase, Geopackage, ShapeFile and Mobile Map Package'),
onTap: () => Navigator.of(context).pushNamed(PageRoutesEnum.load_local_files.path),
),
),
Card(
child: ListTile(
leading: const Icon(Icons.map),
title: const Text('Select a feature layer and get layer data'),
onTap: () => Navigator.of(context).pushNamed(PageRoutesEnum.select_features_in_feature_layer.path),
),
),
Card(
child: ListTile(
leading: const Icon(Icons.map),
title: const Text('Manage map'),
onTap: () => Navigator.of(context).pushNamed(PageRoutesEnum.manage_map.path),
),
),
]
)
),
);
}
}