A Flutter application that integrates Google Maps and demonstrates core map features such as markers, zoom controls, and map initialization.
- Display Google Map inside Flutter app
- Set initial camera position
- Add static map markers
- Zoom and pan gestures
- Lightweight and easy-to-understand structure
lib/
├── home.dart # Main screen with Google Map widget
└── main.dart # Entry point of the app
Make sure to add your own Google Maps API key in the Android and iOS configuration files.
git clone https://github.com/RokiyaAbdElsatar/google-map-flutter.git
cd google-map-flutterflutter pub get- Android: Open
android/app/src/main/AndroidManifest.xmland insert your API key:
<meta-data android:name="com.google.android.geo.API_KEY"
android:value="YOUR_API_KEY"/>- iOS: Add the key to
ios/Runner/AppDelegate.swiftorAppDelegate.m.
flutter run- This is a simple demo project meant to show integration of Google Maps in Flutter.
- Ensure that billing is enabled on your Google Cloud project to use Maps SDK.
Pull requests and stars are welcome!
For major changes, please open an issue first to discuss what you would like to change.
