|
|
|
Google map api php mysql Marker..Google map api php mysql Marker.. |
|
|
|
|
|
|
|
ส่งค่ามาแบบใหนครับ หรือเอาแบบโต้ง ๆ ตามตัวอย่างที่ผมเขียนไว้ครับ
|
|
|
|
|
Date :
2012-10-16 14:21:53 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มาดันครับ.
|
|
|
|
|
Date :
2012-10-17 08:40:21 |
By :
saksri555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
555
ได้ละๆๆ
อย่างแรกต้องประกาศตัวแปร
Code (JavaScript)
var img=['icon21.png','icon46.png'];
แล้วตรง
icon:'icon46.png'
เปลี่ยนเป็น
Code (JavaScript)
icon:img[i]
|
ประวัติการแก้ไข 2012-10-17 09:49:43 2012-10-17 09:57:36
|
|
|
|
Date :
2012-10-17 09:48:41 |
By :
saksri555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-10-17 09:52:22 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ง่าส์ .. ทำไมหว่า มันติดตรงใหนเหรอครับคุณวิน ตอนผมทำก็เทสแล้วนาาา หรือว่า ผมลืมกดตรงใหนหวา เอิ๊ก ๆ
ขอโทษทีครับ
|
|
|
|
|
Date :
2012-10-17 16:37:07 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปกติบทความจะยังไม่แสดงทันทีครับ คนอื่นจะดูไม่ได้ นอกจากตัวเอง ผมจะต้อง Approve ให้แสดงก่อนครับ
|
|
|
|
|
Date :
2012-10-17 16:44:24 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครับผม..
|
|
|
|
|
Date :
2012-10-17 19:22:03 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<? session_start();include('process/connect.php');?>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<style>
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
.img_left{ float:left; margin-right:5px; margin-bottom:5px; border:1px dotted #999999; background-color:#f2f2f2; padding:2px;}
.cls{ clear:both;}
.font_map{ font-family:Tahoma, Arial, serif; font-size:13px;}
div#map_canvas { width:100%; height:100%; }
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://maps.googleapis.com/maps/api/js?sensor=false" type="text/javascript"></script>
<script type="text/javascript" src="http://www.cyberthai.net/gmap3.js"></script>
<script type="text/javascript">
$(function () {
$('#map_canvas').gmap3({
map: {
options: {
center: [17.434067, 102.781327],
zoom: 12,
mapTypeId: google.maps.MapTypeId.ROADMAP,
mapTypeControl: true,
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
},
}
},
marker: {
values: [
<?php
$sql = mysql_query("select * from place");
$num = mysql_num_rows($sql);
if ($num>0){
while ($r=mysql_fetch_array($sql)) {
++$i;
$i != $num ? $k=',' : $k='';
?>
{latLng:[<?php echo $r[Latitude]?>, <?php echo $r[Longitude]?>], data:"<div class='font_map'><img src='<?php echo $r[Pic]?>' width='75' height='75' alt='<?php echo $r[Place_name]?>' class='img_left' /><strong><a href='#' title='<?php echo $r[Place_name]?>' target='_blank'><?php echo $r[Place_name]?></a></strong><br /><br /><?php echo $r[Address]?><div class='cls'></div><a href='#' title='<?php echo $r[Place_name]?>' target='_blank'>ดูที่เหลือ</a></div>", options:{icon: "http://png-3.findicons.com/files/icons/2469/brushed_metal_icons/64/marker_02.png"}}<?php echo $k?>
<?php
}
}
?>
],
events: {
mouseover: function (marker, event, context) {
var map = $(this).gmap3("get"),
infowindow = $(this).gmap3({
get: {
name: "infowindow"
}
});
if (infowindow) {
infowindow.open(map, marker);
infowindow.setContent(context.data);
} else {
$(this).gmap3({
infowindow: {
anchor: marker,
options: {
content: context.data
}
}
});
}
},
closeclick: function () {
infowindow.close();
},
mouseout: function () {
var infowindow = $(this).gmap3({
get: {
name: "infowindow"
}
});
}
}
}
});
});
</script>
<center>
<div id="map_canvas" style="width: 70%; height: 50%;"></div>
</center>
<hr />
|
|
|
|
|
Date :
2016-05-07 11:14:01 |
By :
คิงคอง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|