세계 지도와 각국의 인구 수례
9815 단어 JavaScript
<html>
<head>
<meta charset="UTF-8">
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["geochart"]});
google.setOnLoadCallback(drawRegionsMap);
function drawRegionsMap() {
var data = google.visualization.arrayToDataTable([
['Country', 'Human'],
['Japan', Math.floor((Math.random() * 1000000))],
['United States', Math.floor((Math.random() * 1000000))],
['Germany', Math.floor((Math.random() * 1000000))],
['United Kingdom', Math.floor((Math.random() * 1000000))],
['Italia', Math.floor((Math.random() * 1000000))],
['France', Math.floor((Math.random() * 1000000))],
['Canada', Math.floor((Math.random() * 1000000))],
['Spain', Math.floor((Math.random() * 1000000))],
['Aus', Math.floor((Math.random() * 1000000))],
['Brazil', Math.floor((Math.random() * 1000000))],
['Portugal', Math.floor((Math.random() * 1000000))],
['Rusia', Math.floor((Math.random() * 1000000))],
['Mexico', Math.floor((Math.random() * 1000000))],
['India', Math.floor((Math.random() * 1000000))]
]);
var options = {};
var chart = new google.visualization.GeoChart(document.getElementById('regions_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id="regions_div" style="width: 900px; height: 500px;"></div>
</body>
</html>
Reference
이 문제에 관하여(세계 지도와 각국의 인구 수례), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/KanaeYou/items/52e665d1967a4f9dbdca텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)