Reputation: 105
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
Reputation: 8819
Just call setMapTypeId on the map object:
map.setMapTypeId(google.maps.MapTypeId.TERRAIN);
Upvotes: 8