|
|
|
ช่วยดู code google map เกี่ยวกับมาร์คจุดแล้วบันทึกลงฐานข้อมูลหน่อยครับ |
|
|
|
|
|
|
|
คือ มาร์คจุดได้แล้ว แต่ข้อมูลที่บันทึกไม่ขึ้นในฐานข้อมูล
map_add.php
<!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>มาร์ดจุด</title>
<script src="http://maps.google.com/maps?file=api&v=2&key="
type="text/javascript"></script>
<script src="js/gmaps.CircleOverlay.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
var map;
var geocoder;
function load() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map_canvas"));
geocoder = new GClientGeocoder();
map.addMapType(G_PHYSICAL_MAP);
map.removeMapType(G_NORMAL_MAP);
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(13.4257,99.9553), 17);
}
}
function initialize() {
GEvent.addListener(map,"click", function(overlay,latlng) {
if (latlng) {
var matchll = /\(([-.\d]*), ([-.\d]*)/.exec( latlng );
if ( matchll ) {
var lat = parseFloat( matchll[1] );
var lng = parseFloat( matchll[2] );
lat = lat.toFixed(6);
lng = lng.toFixed(6);
}
var myHtml = "กระทำการใส่ข้อมูลตำแหน่งนี้:<br> <input type='button' onClick='javascript:Addpoint("+lat+","+lng+");' value='ทำการบันทึก'>";
map.openInfoWindow(latlng, myHtml);
}
});
}
function Addpoint(lat,lon){
window.location="map_add_data.php?lat="+lat+"&lng="+lon;
}
//]]>
</script>
<style type="text/css">
<!--
body {
background-image: url(picture/page1952.jpg);
}
-->
</style></head>
<body onload="load(),initialize()" onunload="GUnload()">
<div id="map_canvas" style="width: 600px; height: 400px"></div>
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2011-08-30 11:43:37 |
By :
siwarin125 |
View :
1870 |
Reply :
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
map_add_data.php
<?php
$lat = $_GET["lat"];
$lng = $_GET["lng"];
?><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>เพิ่มข้อมูล</title>
<style type="text/css">
<!--
body {
background-image: url(picture/page1952.jpg);
}
-->
</style></head>
<link href="style.css" rel="stylesheet" type="text/css">
<body>
<form action="map_add_data_sql.php" method="get">
<table width="442" height="0" border="0" align="center" cellpadding="2">
<tr>
<td width="143" align="right" valign="top">ชื่อ</td>
<td width="300" valign="top"><div align="left" >
<input type="text" name="fname" value= ""/>
</div></td>
</tr>
<tr>
<td align="right" valign="top">ประเภท</td>
<td valign="top">
</span>
<label>
<input name="type" type="radio" value="เปิด" checked>
ร้าน</label>
<label>
<input name="type" type="radio" value="ปิด">
โฮมสเตย์
</label></td>
</tr>
<tr>
<td align="right" valign="top">ที่อยู่</td>
<td valign="top"><div align="left">
<textarea name="faddress" cols="30" rows="10" class="textarea" >Address</textarea>
</div></td>
</tr>
<tr>
<td align="right" valign="top">ละติจูต</td>
<td valign="top"><div align="left">
<input type="text" name="flat" value=<? echo $lat ?> />
</br>
</div></td>
</tr>
<tr>
<td align="right" valign="top">ลองติจูต</td>
<td valign="top"><div align="left">
<input type="text" name="flng" value=<? echo $lng ?> />
</br>
</div></td>
</tr>
<tr>
<td colspan="2" align="center"><div align="center">
<input type="submit" name="button" value="ทำการเพิ่มสถานที่" />
</div></td>
</tr>
</table>
</form>
</body>
</html>
|
|
|
|
|
Date :
2011-08-30 11:45:04 |
By :
siwarin125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
map_add_data_sql.php
<?php
require("map_connect.php");
$con =mysql_connect ($hostname, $username, $password);
mysql_query("SET NAMES UTF8",$con);
if (!$con) { die('ติดต่อฐานข้อมูลไม่ได้: ' . mysql_error());
}
mysql_select_db($database, $con);
$sql = mysql_query("INSERT INTO markers (name, address, type, flat, flng)
VALUES('$_GET[name]','$_GET[address]','$_GET[type]',$_GET[flat],$_GET[flng]) ");
?>
<div align="center">
<p><label></label> </p>
<table width="200" border="0">
<tr>
<td><div align="center"> บันทึกข้อมูลเรียบร้อย </a></div></td>
</tr>
</table>
<p> </p>
</div>
|
|
|
|
|
Date :
2011-08-30 11:45:50 |
By :
siwarin125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
map_connect.php
<?
$hostname="localhost";
$username="root";
$password="1234";
$database="google_map_qr";
$c = mysql_connect($hostname,$username,$password);
mysql_query("SET NAMES UTF8");
if (!$c) {
echo "<h3>ERROR : ไม่สามารถติดต่อฐานข้อมูลได้</h3>";
exit();
}
?>
|
|
|
|
|
Date :
2011-08-30 11:48:32 |
By :
siwarin125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2011-08-30 11:49:51 |
By :
siwarin125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
......
|
|
|
|
|
Date :
2011-08-31 10:33:29 |
By :
siwarin125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากช่วยแนะนำจังแต่ติดตรงไม่รู้เรื่องนีเลยว่าจะลองศึกษาอยู่เหมือนกัน ตอนนี้ช่วยอัพให้ก่อนน่ะครับ
|
|
|
|
|
Date :
2011-08-31 11:44:04 |
By :
mos |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2011-09-01 10:10:14 |
By :
siwarin125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ติดเหมือนกันครับ ไม่แน่ใจตรง flat flng เป็น float รึป่าวครับ
|
|
|
|
|
Date :
2012-06-07 21:46:56 |
By :
biguero |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเก็บละติจูดกับลองติจูลเป็น decimal จะได้รึป่าวครับ
|
|
|
|
|
Date :
2012-06-11 17:37:56 |
By :
biguero |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้ครับ
|
|
|
|
|
Date :
2012-06-11 18:58:00 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|