-
-
Notifications
You must be signed in to change notification settings - Fork 893
Description
What is the bug?
I am trying to display mbtiles on top of google map but to no avail. The map is loading perfectly but the mbtiles is not displaying on the map.
How can we reproduce it?
HERE IS MY CODE:
import 'dart:io';
import 'dart:typed_data';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
import 'package:path_provider/path_provider.dart';
import 'package:sqflite/sqflite.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@OverRide
Widget build(BuildContext context) {
return MaterialApp(
home: const MapScreen(),
);
}
}
class MapScreen extends StatefulWidget {
const MapScreen({super.key});
@OverRide
State createState() => _MapScreenState();
}
Do you have a potential solution?
No response