2
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 3 years have passed since last update.

kintone 位置情報を取得する方法

Last updated at Posted at 2020-08-18

kintoneで位置情報の取得方法

こんにちは、マイスター・ギルドのフクロウです。

今回は位置情報の取得方法についての記事です。

以下のコードを書くだけで、位置情報の取得が可能になります。

navigator.geolocation.getCurrentPosition(function(position) {
   //緯度
   let latPosition = position.coords.latitude;
   //経度
   let lngPosition = position.coords.longitude;
)}

上記のコードは下記にあるURLのコードを参考にしています。

ページにあるサンプルコードの262行目あたりをご覧ください。
(タイトルにはモバイル用とかかれていますが、PC版でも使用可能です。)
https://developer.cybozu.io/hc/ja/articles/202179174-Geolocation-API-%E4%BD%8D%E7%BD%AE%E6%83%85%E5%A0%B1-%E3%82%92%E4%BD%BF%E3%81%A3%E3%81%9F%E3%83%A2%E3%83%90%E3%82%A4%E3%83%AB%E7%94%A8%E3%81%AE%E3%82%AB%E3%82%B9%E3%82%BF%E3%83%9E%E3%82%A4%E3%82%BA%E3%82%92%E3%81%97%E3%82%88%E3%81%86

この記事がお役に立ったら、LGBTを押していただけると次の記事の励みになります。

以上、マイスター・ギルドのフクロウでした。

2
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
2
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?