|
|
|
วิธีการดึงข้อมูล ละติจูด ลองติจูด จากฐานข้อมูล มาทำเป็น polyline ใน google map ยังงัยค่ะ |
|
|
|
|
|
|
|
ทำยังงัยค่ะ พี่ mr.win
|
|
|
|
|
Date :
2011-02-01 12:47:18 |
By :
นานา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ MAP V ใหนครับ 3 หรือ 2
|
|
|
|
|
Date :
2011-02-03 08:10:28 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
map version 2 ค่ะ
|
|
|
|
|
Date :
2011-02-03 09:59:12 |
By :
นานา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>สนามบินชุมพร</title>
<link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
function initialize() {
var myLatLng = new google.maps.LatLng(10.714200726250807, 99.35717282281491);
var myOptions = {
zoom: 13,
center: myLatLng,
mapTypeId: google.maps.MapTypeId.TERRAIN
};
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
var flightPlanCoordinates = [
new google.maps.LatLng(10.696285599697478,99.33975219627929),
new google.maps.LatLng(10.707671200318023,99.3606090535791),
new google.maps.LatLng(10.71559869924326,99.37468528648925),
new google.maps.LatLng(10.720237033224865,99.37408447166992),
new google.maps.LatLng(10.719056373136405,99.36472892662597),
new google.maps.LatLng(10.714165017999015,99.35700416466308),
new google.maps.LatLng(10.709357919592259,99.34747695824218),
new google.maps.LatLng(10.704044722085573,99.34146881004882),
new google.maps.LatLng(10.699153124578185,99.3364047994287),
new google.maps.LatLng(10.69552654445599,99.338979720083),
new google.maps.LatLng(10.696285599697478,99.33975219627929)
];
var flightPath = new google.maps.Polyline({
path: flightPlanCoordinates,
strokeColor: "#FF0000",
strokeOpacity: 1.0,
strokeWeight: 5
});
flightPath.setMap(map);
}
</script>
</head>
<body onload="initialize()">
<div id="map_canvas"></div>
</body>
</html>
อันนี้แบบ V3 ให้ประยุกต์เอานะครับ
|
|
|
|
|
Date :
2011-02-03 19:54:35 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วส่วน code การดึงจากข้อมูลฐานข้อมูลควรเป็นแบบไหนค่ะ ต้องทำเป็น xml ก่อนรึป่าวค่ะ
|
|
|
|
|
Date :
2011-02-05 12:29:05 |
By :
นานา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|