For some reason on a site I'm working on, "San Francisco" is placing a marker in Louisiana in a Google GeoChart Visualization. I've even tried changing it to "San Francisco, CA", and even "San Francisco, CA, USA" and it's still plotting it in Louisiana.
You can see the incorrect marker here: http://galmeetsglam.com/travel/ Part of my code: var data = new google.visualization.DataTable(); data.addColumn('string', 'Slug'); data.addColumn('string', 'City'); data.addColumn('number', 'Value'); data.addColumn({type: 'string', role: 'tooltip', p:{html:true}}); /* Locations */ data.addRows([ ['london', 'London', 1, '<h1 class="tooltip-h1">London</h1>'], ['london', 'London', 1, '<h1 class="tooltip-h1">London</h1>'], ['new-york-city', 'New York City', 1, '<h1 class="tooltip-h1">New York City</h1>'], ['san-francisco-2', 'San Francisco', 1, '<h1 class="tooltip-h1">San Francisco</h1>'], ['san-francisco-2', 'San Francisco', 1, '<h1 class="tooltip-h1">San Francisco</h1>'], ]); The odd part is other cities are plotting just fine (London and NYC). Not sure why SF is being screwy. Any ideas? -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-visualization-api. For more options, visit https://groups.google.com/d/optout.
