[JavaScript][Firefox3.5] geolocation の使い方
2009.07.29 16:25
if (navigator.geolocation) {
/* geolocation is available */
navigator.geolocation.getCurrentPosition(function(position) {
alert(position.coords.latitude + ":" + position.coords.longitude);
});
} else {
alert("I'm sorry, but geolocation services are not supported by your browser.");
}次世代ブラウザ Firefox - 位置情報通知機能
Geolocation の利用 - MDC
posted by wokamoto1973
http://quill.to/wokamoto1973/90aa976bdf
