Guest User

Untitled

a guest
Jul 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. // --------------------------------------------------------
  2. // GPS情報取得
  3. // --------------------------------------------------------
  4.  
  5. // 緯度経度格納変数
  6. latitude_value = "";
  7. longitude_value = "";
  8.  
  9. function gpsInitiate(){
  10. navigator.geolocation.getCurrentPosition(
  11. function(position){
  12. latitude_value = position.coords.latitude;
  13. longitude_value = position.coords.longitude;
  14. alert("位置情報取得完了!");
  15. },
  16. function(error){
  17. alert("位置情報取得エラー");
  18. },
  19. {
  20. enableHighAccuracy : true,
  21. timeout : 20000,
  22. maximumAge : 20000,
  23. }
  24. );
  25. }
  26. gpsInitiate();// 位置情報取得開始
Add Comment
Please, Sign In to add comment