- User can able to view cities and their weather details.
- User can able to view current location weather details.
- User can able to view weather details of near by location in map view.
- User can move the pointer in the map view to get the weather details of near by places of the pointer (around 50 places weather).
Used openweathermap weather APIs
https://openweathermap.org/
Follow the steps given in the below site to get API token https://openweathermap.org/appid
lib\app_data\globals.dart file
String apiToken = 'YourOpenWeatherMapAPIToken';
Follow the steps given in the below site to get google map API token and enable google map sdk for Android and iOS https://developers.google.com/maps/documentation/android-sdk/get-api-key
In AndroidManifest.xml file
<meta-data android:name="com.google.android.geo.API_KEY"
android:value="YourGoogleMapAPI_TOKEN"/>
In AppDelegate.swift file
GMSServices.provideAPIKey("YourGoogleMapAPI_TOKEN")