|
|
|
รบกวน ท่านผู้รู้ php คือ ผมอยากโม ฟอร์ม แผนที่ กูลเกิ้ล จากไฟล์ชุดนี้ ลงในฐานข้อมูล ต้องสร้าง ตารางอย่างไรบ้างครับ |
|
|
|
|
|
|
|
รบกวนท่านผู้รู้ด้วย ครับคืออยากเอาไปทำเว็บ ขายบ้านครับ ...... อยากให้ ฟอร์ม ชุดนี้อยู่ ในชุดฟอร์ม ก่อนโพสลง ข้อมูลลง ดาต้าเบส ผมต้องเพิ่ม หรือจัดการ สร้างฟิว ฐานข้อมมูล รับอะไรบ้างครับ
แล้ว ค่าให้โชว์ ในรายการข้อมูล ตามแต่ละหัวข้อที่โพส ผมต้อง โมอย่างไรครับ เพราะตอนนี้ค่ามันโชว์เลย
Code (PHP)
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>test of Google Maps Geocoding </title>
</head>
<body>
<?php
if($_POST){
// get latitude, longitude and formatted address
$data_arr = geocode($_POST['address']);
// if able to geocode the address
if($data_arr){
$latitude = $data_arr[0];
$longitude = $data_arr[1];
$formatted_address = $data_arr[2];
?>
<!-- google map will be shown here -->
<div id="gmap_canvas">Loading map...</div>
<center><div id='map-label'>ตำแหน่งของแผนที่ของคุณ.</div> </center>
<!-- JavaScript to show google map -->
<script type="text/javascript" src="http://maps.google.com/maps/api/js"></script>
<script type="text/javascript">
function init_map() {
var myOptions = {
zoom: 14,
center: new google.maps.LatLng(<?php echo $latitude; ?>, <?php echo $longitude; ?>),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("gmap_canvas"), myOptions);
marker = new google.maps.Marker({
map: map,
position: new google.maps.LatLng(<?php echo $latitude; ?>, <?php echo $longitude; ?>)
});
infowindow = new google.maps.InfoWindow({
content: "<?php echo $formatted_address; ?>"
});
google.maps.event.addListener(marker, "click", function () {
infowindow.open(map, marker);
});
infowindow.open(map, marker);
}
google.maps.event.addDomListener(window, 'load', init_map);
</script>
<?php
// if unable to geocode the address
}else{
echo "<center>ไม่มีตำแหน่งนี้ ,กรุณาเช็คค่าตำแหน่งจากการป้อนข้อมูล.</center>";
}
}
?>
<center>
<div id='address-examples'>
<div>ให้ใส่ตำแหน่ง ละติจูด ลองจิจูด ของสถานที่ :</div>
</div>
<!-- enter any address -->
<form action="" method="post" action=" ">
<input type='text' name='address' placeholder='Enter any address here' />
<input type='submit' value='แอดแผนที่!' />
</form></center>
</body>
</html>
Tag : PHP
|
ประวัติการแก้ไข 2016-03-28 23:52:43 2016-03-28 23:57:16 2016-03-28 23:58:10 2016-03-29 00:00:04 2016-04-01 01:53:22 2016-04-01 01:54:37
|
|
|
|
|
Date :
2016-03-28 23:51:44 |
By :
kangpla111 |
View :
823 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแทรกลงในหน้า Form ที่เป็น Form รับข้อมูลเลยครับ ไม่น่าจะยาก
|
|
|
|
|
Date :
2016-03-29 09:48:58 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ในโค้ดเห็นมีเรียกแค่ lat long กับ address
|
|
|
|
|
Date :
2016-03-29 14:39:08 |
By :
ห้ามตอบเกินวันละ 2 กระทู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|