I'm working with marine scientists and they take samples off the coast. I would like to change the center of the chart to be off the coast. I would like to give a latitude/longitude pair for the center of the chart, or two latitude/longitude pairs for a window/view of the map area, or specify multiple states like US-CT-NY. I'm hoping there is a hidden API like geochart.center = {lat: 89, long: -127}.function drawVisualization() {var data = google.visualization.arrayToDataTable([['Lat', 'Long', 'Popularity'],[41.083333333276, -73.39999999978, 20.4 ],[41.083333333276, -73.39999999978, 20.6 ],[41.099550000113, -73.415400000078, 19.0 ]]);var options = {title:'Temperature', region:'US-CT', resolution:'metros', width: 556, height: 347};var geochart = new google.visualization.GeoChart(document.getElementById('visualization'));geochart.draw(data, options);}