KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
Flutter_Maps
★ 16
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
ehot
:
热部署 Java hot deployment
SSML-Spiking-Camera-Reconstruction
:
Self-Supervised Mutual Learning for Dynamic Scene Reconstruction of Spiking Camera
RegionOfChina
:
中国地理位置信息, 银联卡跨行业务地区代码标准,人民共和国县以上行政区划代码。并做了映射,方便使用。
esphome-virtual-can-bms
:
ESPHome component to emulate a SMA/Victron compatible BMS via CAN bus
nestjs-docker-prisma-mysql
:
Application template for NestJS + Docker + Prisma + MySQL
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Flutter_Maps
?
Download (.md)
<h1 align="center">Flutter Maps</h4> <h3 align="center">A Flutter app using Google Maps SDK & Directions API</h4> <p align="center"> <img src="https://github.com/sbis04/flutter_maps/raw/master/screenshots/map_view.png" alt="Flutter Maps" /> </p> ## Plugins The plugins used in this project are: * [google_maps_flutter](https://pub.dev/packages/google_maps_flutter) * [geolocator](https://pub.dev/packages/geolocator) * [flutter_polyline_points](https://pub.dev/packages/flutter_polyline_points) ## Features * Detect the current location of the user * Use Geocoding for converting addresses to coordinates and vice versa * Add Markers to the Map View * Draw the route between two places using Polylines and Directions API * Calculate the actual distance of the route ## Usage Before using it, you will need to make a new project in the **Google Cloud Platform**, and enable the Google Maps API for that project. Also, don't forget to setup the [Billing](https://console.cloud.google.com/project/_/billing/enable) for that project on GCP, otherwise you will receive the following error:  * Clone the repository. ```bash git clone https://github.com/sbis04/flutter_maps.git ``` * Open the project using your favorite IDE. For opening with VS Code: ```bash code flutter_maps ``` * For the **Android** part, go to `android/app/src/main/AndroidManifest.xml` file and add your **API key** here. ```xml <!-- Add your Google Maps API Key here --> <meta-data android:name="com.google.android.geo.API_KEY" android:value="YOUR KEY HERE"/> ``` * For the **iOS** part, go to `ios/Runner/AppDelegate.swift` file and add your **API key** here. ```swift GMSServices.provideAPIKey("YOUR KEY HERE") ``` * Go to the `lib/secrets.dart` file and add your **API key** here. <!-- > For more info regarding generating the **API key**, you can check out my article here. --> ## Full configuration (already done in this project) You do not require to complete these configurations if you are cloning this project, as they are already done in it. But these may be helpful if you are setting up a new Flutter project for using Google Maps and location services. ### Android setup * Navigate to the file `android/app/src/main/AndroidManifest.xml` and add the following code snippet inside the `application` tag: ```xml <!-- Add your Google Maps API Key here --> <meta-data android:name="com.google.android.geo.API_KEY" android:value="YOUR KEY HERE"/> ``` * Also, you will need location access in the app. So, add the following permission in the same file inside the `manifest` tag: ```xml <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> ``` ### iOS setup * Navigate to the file `ios/Runner/AppDelegate.swift` and replace the whole code with the following: ```swift import UIKit import Flutter import GoogleMaps @UIApplicationMain @objc class AppDelegate: FlutterAppDelegate { override func application( _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? ) -> Bool { //Add your Google Maps API Key here GMSServices.provideAPIKey("YOUR KEY HERE") GeneratedPluginRegistrant.register(with: self) return super.application(application, didFinishLaunchingWithOptions: launchOptions) } } ``` * Also, add the following to `ios/Runner/Info.plist` file: ``` <key>io.flutter.embedded_views_preview</key> <string>YES</string> ``` * For getting location permission, add the following to the same file: ``` <key>NSLocationWhenInUseUsageDescription</key> <string>This app needs access to location when open.</string> ``` This completes the setup for both the platforms in Flutter. ## License Copyright (c) 2020 Souvik Biswas Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.