-----------------------------------------------------
เป็น code สำหรับ detect ตำแหน่งที่ตั้ง ip address ของ web browser
โดยใช้ framework ของ yqlgeo.js
ลองเอา code ไปรันดูครับ ใช้ firfox จะได้ผลค่อนข้างใกล้เคียง
------------------------------------------------------
<html>
<head>
<script type="text/javascript" src="
http://isithackday.com/hacks/geo/yql-geo-library/yqlgeo.js"></script>
</head>
<body>
<script type="text/javascript">
yqlgeo.get('visitor',function(o){
var res = o.place.name+" "+o.place.country.content+" "+o.place.centroid.latitude+","+o.place.centroid.longitude ;
var coord = o.place.centroid.latitude+","+o.place.centroid.longitude ;
document.getElementById('res').innerHTML = res;
alert(res);
//return;
window.location = '
http://map.google.co.th?q='+coord; // ส่งพิกัดไปให้ google map
});
</script>
<span id="res">Checking Your Location</span>
</body>
</html>