สอบถามการเขียนตำแหน่งปัจจุยันที่ดึงข้อมูลมาจาก database แต่อยากให้ขึ้นหลาย user ได้
ตอนนี้เขียนโค้ดทำให้แสดงตำแหน่งปัจจุบันที่เก็บ ตำแหน่งมาจาก mobile ได้แล้ว แต่อยากจะให้แสดงหลายๆ user อะคะ ตอนนี้แสดงได้แค่ตำแหน่งเดียว ไม่ทราบว่าต้องเขียนอย่างไรคะ
คำถามที่2อยากให้มันรีเฟลชตัวเองทุกๆ3วิ 5วิ เข้าใจว่าต้องใช้ jQuery ช่วยแต่ไม่ทราบว่าจะต้องเขียนอย่างไรเพราะไม่มีความรู้ด้านนี้เลย
database เก็บ latitude longitude user ประมาณนั้นอะคะ
รบกวนด้วยคะ
Code (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="css/js/gmap3.js"></script>
<script type="text/javascript">
$(function () {
$('#map_canvas').gmap3({
map: {
options: {
center: [13.72356,100.77184],
zoom: 15,
mapTypeId: google.maps.MapTypeId.ROADMAP,
mapTypeControl: true,
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
},
}
},
marker: {
values: [
<?php
$sql = mysql_query("select * from testlalong order by date desc limit 1");
$num = mysql_num_rows($sql);
if ($num>0){
while ($r=mysql_fetch_array($sql)) {
++$i;
$i != $num ? $k=',' : $k='';
?>
{latLng:[<?=$r[la]?>, <?=$r[lo]?>]}<?=$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>
<div id="map_canvas"></div>
Tag : PHP, HTML/CSS, JavaScript, Ajax
ประวัติการแก้ไข 2014-01-17 04:28:03
Date :
2014-01-17 03:44:43
By :
pinkygirlz
View :
833
Reply :
1
ลองศึกษาพวก JSON น่ะครับ สามารถอ่านค่าได้จากหลาย ๆ ค่ามาปักหมุดได้ครับ
Date :
2014-01-18 09:19:58
By :
mr.win
Load balance : Server 05