Reputation: 8847
I have a spreadsheet with: URL, 2 digit country code, Main Value, Less important values ...
I just want to make a simple map that can be bigger than what Google Charts API allows (that one is limited to 600x600), but a similar level of simplicity.
If it looks nice and is interactive (hovering on country shows data) all the better. If I have to host my own javascript, that's OK.
Upvotes: 0
Views: 361
Reputation: 9857
Maps can be any size you want:
http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#GMapOptions
It defaults to the size of the container it is in, so if you put it in a div
that is 600x600, it will be that size.
Upvotes: 1