0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

位置情報取得するやり方のメモ

Posted at

ユーザ位置情報を取得する方法のメモです。
ブラウザで位置情報を取得すにはGeolocation APIを使用します。
下記のコードはボタンを押したら位置情報を取得します。

document.getElementById('btn').onclick = function () {
  navigator.geolocation.getCurrentPosition(success, error);
};
function success(position) {
  // 緯度を取得
  var latitude = position.coords.latitude;
  // 経度を取得
  var longitude = position.coords.longitude;
  // 高度を取得
  var altitude = position.coords.altitude;
  console.log(latitude);
  console.log(longitude);
  console.log(altitude);
}
// ブラウザの許可が降りなかった場合
function error(error) {
  console.log('位置情報取得に失敗しました。アクセスを許可してください。');
}

位置情報取得するには、ユーザー側のブラウザやOSの設定でも位置情報取得の許可を出してもらう必要があります。

参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?