aman
aman

Reputation: 105

Change Map type in Google MAP v3 dynamically

I need to change the map type of google Map v3 from click on button outside of map. How can I do that, possibly without refreshing the page?

Upvotes: 2

Views: 2712

Answers (1)

Mano Marks
Mano Marks

Reputation: 8819

Just call setMapTypeId on the map object:

map.setMapTypeId(google.maps.MapTypeId.TERRAIN);

Upvotes: 8

Related Questions