prasad.gai
prasad.gai

Reputation: 2987

How to develop a weather application on android Google Map?

I would like to make an Android application using Google Map.

Can I show weather report on that map? If it's possible, which services has needed to get the weather report on map?

mapView = (MapView)findViewById(R.id.myMapView);
mapView.setSatellite(true);

How to show the weather report on map?

Upvotes: 1

Views: 4163

Answers (1)

Devin M
Devin M

Reputation: 9752

To do this you would want to look into overlays. These allow you to position any information over your map and unlock a lot of powerful features for your users. I cant give a specific example since I don't know what data source you are getting weather information from. However I would suggest using the map center as your lat/lng and using a weather API to find the current conditions. Then overlay that on the map.

Upvotes: 1

Related Questions