I'm sorry to hear that you're having difficulties with this. It seems that the string "Tasmania" isn't correctly linked to the ISO code ("AU-TAS") for some reason. You have a few alternatives to get this to work. You could use the ISO code directly, or use any of the strings that are linked correctly as a workaround.
Working names for Tasmania: "塔斯梅尼亞", "tasmanie", "塔斯马尼亚州", "tasmanië", "tasmânia", "tasmanien", "タスマニア州", "태즈메이니아".
On Wednesday, November 7, 2012 4:11:31 PM UTC-8, Neil A wrote:
I'm trying to display a GeoMap of Australia by state. Everything works except for Tasmania.
Any ideas? Thanks!
function drawVisualization() {
var data = google.visualization.arrayToDataTable([
['State', 'Total'],
['Victoria', 200],
['New South Wales', 300],
['Northern Territory', 400],
['Western Australia', 500],
['Australian Capital Territory', 600],
['Tasmania', 800],
['South Australia', 700],
['Queensland', 400]
]);
var geomap = new google.visualization.GeoMap(
document.getElementById('visualization'));
geomap.draw(data, {region: 'AU'});
}