สอบถาม google map api เรื่องการสร้าง geo chart ค่ะ
Code (PHP)
<!--
You are free to copy and use this sample in accordance with the terms of the
Apache license (http://www.apache.org/licenses/LICENSE-2.0.html)
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Google Visualization API Sample</title>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load('visualization', '1', {packages: ['geochart']});
function drawVisualization() {
var data = google.visualization.arrayToDataTable([
['Country', 'Popularity'],
['Germany', 200],
['United States', 300],
['Brazil', 400],
['Canada', 500],
['France', 600],
['RU', 700]
]);
var geochart = new google.visualization.GeoChart(
document.getElementById('visualization'));
geochart.draw(data, {width: 556, height: 347});
}
google.setOnLoadCallback(drawVisualization);
</script>
</head>
<body style="font-family: Arial;border: 0 none;">
<div id="visualization"></div>
</body>
</html>
จะทำยังไงให้สามารถเลือกโซนของแผนที่ที่จะแสดงได้คะ
รบกวนผู้รู้ด้วยค่ะTag : PHP, MySQL, HTML/CSS, JavaScript, Ajax, WebService
Date :
2012-10-04 20:12:36
By :
charii
View :
2622
Reply :
1
ต้องใช้ร่วมกับ Google Map API ครับ
คือตัวอย่างที่คุณทำมานั้นคือ Geo Map ของ Google Chart ครับ ดังนั้นต้องเขียนให้คลิก Event แล้วเปิดหน้า Google Map ขึ้นมาอีกทีเป็น Lat และ Lon ที่ถูกต้อง
Date :
2012-10-05 09:26:58
By :
Daydev
Load balance : Server 00