我们正在实施地理图表热地图为我们的网站,但他们有局限性,以显示英国地区,他们可以只列出4区域中仅仅,英格兰,苏格兰,威尔士和北爱尔兰和不多说。 谁能帮我知道,如果我们能列出英国所有地区,也如果我们能各市,县在英国这些地区下以及像普雷斯顿等。
也可以通过我们更多然后3个参数来在显示在鼠标更多的数据。
<script type='text/javascript' src='https://www.google.com/jsapi'></script>
<script type='text/javascript'>
google.load('visualization', '1', {'packages': ['geochart']});
var chart;
var data;
var options;
google.setOnLoadCallback(drawRegionsMap);
function drawRegionsMap() {
data = google.visualization.arrayToDataTable([
['Region', 'Popularity', 'Total Votes'],
['England', 8, 6],
['Scotland', 8, 6],
['Wales ', 9, 7],
['Northern Ireland', 2, 5],
['United Kingdom', 2, 4]
]);
var maxV = 5; // to ensure scale is equal on both ends.
var minV = maxV*-1;
options = {
colorAxis: {colors: ['blue', 'white', 'red'], minValue: minV, maxValue: maxV},
};
chart = new google.visualization.GeoChart(document.getElementById('chart_div'));
chart.draw(data, options);
google.visualization.events.addListener(chart, 'regionClick', selectHandler);
};
function selectHandler(e) {
var selection = e['region'];
//alert(selection);
options['resolution'] = 'provinces';
options['region'] = selection;
chart.draw(data, options);
document.getElementById('goback').style.display='block';
};
</script>
正如你所看到的,只有3个参数,我们可以通过额外的参数? 或任何工具提示它。
提前致谢