marco.pms.mobile/lib/controller/other/google_map_screen_controller.dart
2025-04-02 19:11:36 +05:30

13 lines
357 B
Dart

import 'package:google_maps_flutter/google_maps_flutter.dart';
import 'package:maxdash/controller/my_controller.dart';
class GoogleMapScreenController extends MyController {
late GoogleMapController mapController;
LatLng center = LatLng(37.7749, -122.4194);
void onMapCreated(GoogleMapController controller) {
mapController = controller;
}
}