|
|
|
การส่งค่า จาก listbox โดยใช้ php แล้วให้แสดง Google Map ขึ้นมาด้วย |
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2011-07-05 21:40:46 |
By :
jinnii |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เมื่อกดที่ปุ่ม แสดง เส้นทาง ให้ Google Map ขึ้นมาแบบนี้ค่ะ
|
|
|
|
|
Date :
2011-07-05 21:43:40 |
By :
jinnii |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวอย่างโค้ดที่มีอยู่คะ แต่แก้ไขไม่ถูก
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0px; padding: 0px }
#map_canvas { height: 100% }
</style>
<script type="text/javascript"
src="http://maps.google.com/maps/api/js?sensor=true">
</script>
<script type="text/javascript">
function initialize() {
var latlng = new google.maps.LatLng(-34.397, 150.644);
var myOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);
var rendererOptions = {
draggable: true
};
var directionsDisplay = new google.maps.DirectionsRenderer(rendererOptions);
directionsDisplay.setMap(map);
directionsDisplay.setPanel(document.getElementById("route"));
var directionsService = new google.maps.DirectionsService();
var request = {
origin: "Songkhla, Thailand",
destination: "Phuket, Thailand",
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}
</script>
</head>
<body onLoad="initialize()">
<div id="map_canvas" style="width:512px; height:512px"></div>
</body>
</html>
|
|
|
|
|
Date :
2011-07-05 21:45:06 |
By :
jinnii |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่มีใครตอบเลยเหรอค่ะ
|
|
|
|
|
Date :
2011-07-08 23:43:33 |
By :
jinnii |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทิ้งเมล์ไว้ หรือสมัครสมาชิก ก็ได้ครับ จะได้ตอบได้ถูก เพราะเท่าที่มองมันทำได้หลายแบบครับ
|
|
|
|
|
Date :
2011-07-09 21:22:27 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|