Geo Charts (Markers)

viz.chart({
    sql: "SELECT Lat, Long, Name FROM Locations",
    chartType: "GeoChart",
    containerId: "chart1",
    options: {
      region: 'US'
    }
  });

Last updated