I believe you could make it faster by passing lat/lon values instead of city names.
On Oct 27, 2:38 pm, tiago <[email protected]> wrote: > I'm using geomap and is taking too much to load. > Can i do something to improve this ? > My code is below. > > --------------------------------------------------------------------------- > ---------------------------- > google.load('visualization', '1', {'packages': ['geomap']}); > google.setOnLoadCallback(drawMap); > function drawMap() { > var data = new google.visualization.DataTable(); > > data.addRows(33); > > data.addColumn('string', 'City'); > data.addColumn('number', 'Popularity'); > > data.setValue(0, 0, 'Albufeira');data.setValue(0, 1, -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en.
