位置情報は、あなたがどこにいるか明らかにし、その情報をシェアすることができます。いくつか位置情報を特定する方法があり、IP アドレス、無線LANの接続、電波塔との接続、また GPSハードウェアによる経度緯度の測定等あります。
1 2 3 4 5 6 7 | // Modernizr によるサポートチェック if ( ) { // let's find out where you are! } else { // no native geolocation support available :( // try geoPosition.js or another third-party solution } |
1 2 3 4 | // 内部 function supports_geolocation() { return 'geolocation' in navigator; } |