This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
<html> | |
<head> | |
<title>Map</title> | |
<style xmlns="http://www.w3.org/2000/svg"> | |
/* #colormap path:hover { fill: #90db7c; } */ | |
#colormap rect:hover {fill:transparent;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type='text/javascript' src='http://www.google.com/jsapi'></script> | |
<script type='text/javascript'>google.load('visualization', '1', {'packages': ['geochart']}); | |
google.setOnLoadCallback(drawVisualization); | |
function drawVisualization() | |
{ | |
var query = new google.visualization.Query('https://docs.google.com/spreadsheets/d/1dTfxVvfDKn6iXn4W_m7HJ_86JOGNDsxYSSaXipEo0vM/edit#gid=0'); | |
// query.setQuery('select A,B,C'); | |
query.send(handleQueryResponseTR); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type='text/javascript' src='http://www.google.com/jsapi'></script> | |
<script type='text/javascript'>google.load('visualization', '1', {'packages': ['geochart']}); | |
google.setOnLoadCallback(drawVisualization); | |
function drawVisualization() | |
{ | |
var query = new google.visualization.Query('https://docs.google.com/spreadsheets/d/1dTfxVvfDKn6iXn4W_m7HJ_86JOGNDsxYSSaXipEo0vM/edit#gid=0'); | |
// query.setQuery('select A,B,C'); | |
query.send(handleQueryResponseTR); |