Jatin Dhoot
Jatin Dhoot

Reputation: 4364

Can we display live cloud images over google maps?

I am using google maps api v3 to create a weather website.

Can we display live clouds over this page?

Does google map offer any functionality to do so?

Thanks in advance.

Upvotes: 1

Views: 655

Answers (1)

Trott
Trott

Reputation: 70075

Google Maps API does not provide data about clouds or (as far as I know, anyway) any weather data. You'd need to get that from somewhere else.

Once you have that data, you'll need to generate an image from it (or use an image generated for you, I suppose).

Once you have the image, you can use one of the various overlay types detailed in the API v3 doc to overlay it on your map, setting the opacity appropriately.

The Google Maps API v3 overlay is probably the easiest step in the chain here.

Upvotes: 1

Related Questions