{"id":1331,"date":"2024-09-26T16:40:42","date_gmt":"2024-09-26T07:40:42","guid":{"rendered":"https:\/\/takaya-com.jp\/archives\/?p=1331"},"modified":"2024-09-26T16:40:42","modified_gmt":"2024-09-26T07:40:42","slug":"gps-google-mapslimk-javascript","status":"publish","type":"post","link":"https:\/\/takaya-com.jp\/archives\/2024\/09\/gps-google-mapslimk-javascript\/","title":{"rendered":"GPS\u3067\u73fe\u5728\u4f4d\u7f6e\u3092\u53d6\u5f97\u3057\u3066Google Maps\u30ea\u30f3\u30af\u3092\u8868\u793a\u3055\u305b\u308bJavaScript"},"content":{"rendered":"<p>\u73fe\u5728\u4f4d\u7f6e\u3092\u53d6\u5f97\u3057\u3066Google Maps\u30ea\u30f3\u30af\u3092\u8868\u793a\u3055\u305b\u308bJavaScript\u3067\u3059\u3002<br \/>\nGoogle Maps\u306e\u30ea\u30f3\u30af\u306e\u90e8\u5206\u3092\u7d4c\u8def\u306e\u30ea\u30f3\u30af\u306a\u3069\u306b\u5909\u3048\u3066\u4f7f\u3048\u3070\u30e6\u30fc\u30b6\u30fc\u73fe\u5728\u5730\u3092\u53d6\u5f97\u3057\u3066\u76ee\u7684\u5730\u307e\u3067\u306e\u7d4c\u8def\u306eGoogle Maps\u306b\u30ea\u30f3\u30af\u3059\u308b\u306a\u3069\u306b\u3082\u4f7f\u3048\u307e\u3059\u3002<\/p>\n<p>\u25bcHTML<\/p>\n<pre class=\"lang:xhtml decode:true \" title=\"XHTML\" >\r\n    &lt;h1&gt;\u73fe\u5728\u4f4d\u7f6e\u3092\u53d6\u5f97\u3057\u3066Google Maps\u30ea\u30f3\u30af\u3092\u8868\u793a&lt;\/h1&gt;\r\n    &lt;button id=&quot;getLocation&quot;&gt;\u73fe\u5728\u4f4d\u7f6e\u3092\u53d6\u5f97&lt;\/button&gt;\r\n    &lt;p id=&quot;location&quot;&gt;&lt;\/p&gt;\r\n    &lt;a id=&quot;mapLink&quot; href=&quot;#&quot; target=&quot;_blank&quot; style=&quot;display: none;&quot;&gt;Google Maps\u3067\u898b\u308b&lt;\/a&gt;\r\n<\/pre>\n<p>\u25bcJavascript<\/p>\n<pre class=\"lang:js decode:true \" title=\"JavaScript\" >\r\ndocument.getElementById(&#39;getLocation&#39;).addEventListener(&#39;click&#39;, function() {\r\n    if (navigator.geolocation) {\r\n        navigator.geolocation.getCurrentPosition(function(position) {\r\n            const latitude = position.coords.latitude;\r\n            const longitude = position.coords.longitude;\r\n            const locationText = `\u7def\u5ea6: ${latitude}, \u7d4c\u5ea6: ${longitude}`;\r\n            document.getElementById(&#39;location&#39;).innerText = locationText;\r\n\r\n            const mapLink = `https:\/\/www.google.com\/maps?q=${latitude},${longitude}`;\r\n            const mapLinkElement = document.getElementById(&#39;mapLink&#39;);\r\n            mapLinkElement.href = mapLink;\r\n            mapLinkElement.style.display = &#39;inline&#39;;\r\n            mapLinkElement.innerText = &#39;Google Maps\u3067\u898b\u308b&#39;;\r\n        }, function(error) {\r\n            console.error(error);\r\n            alert(&#39;\u4f4d\u7f6e\u60c5\u5831\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002&#39;);\r\n        });\r\n    } else {\r\n        alert(&#39;\u3053\u306e\u30d6\u30e9\u30a6\u30b6\u306f\u4f4d\u7f6e\u60c5\u5831\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093\u3002&#39;);\r\n    }\r\n});\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u73fe\u5728\u4f4d\u7f6e\u3092\u53d6\u5f97\u3057\u3066Google Maps\u30ea\u30f3\u30af\u3092\u8868\u793a\u3055\u305b\u308bJavaScript\u3067\u3059\u3002 Google Maps\u306e\u30ea\u30f3\u30af\u306e\u90e8\u5206\u3092\u7d4c\u8def\u306e\u30ea\u30f3\u30af\u306a\u3069\u306b\u5909\u3048\u3066\u4f7f\u3048\u3070\u30e6\u30fc\u30b6\u30fc\u73fe\u5728\u5730\u3092\u53d6\u5f97\u3057\u3066\u76ee\u7684\u5730\u307e\u3067\u306e\u7d4c\u8def\u306eGoogle Maps\u306b [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"_links":{"self":[{"href":"https:\/\/takaya-com.jp\/archives\/wp-json\/wp\/v2\/posts\/1331"}],"collection":[{"href":"https:\/\/takaya-com.jp\/archives\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/takaya-com.jp\/archives\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/takaya-com.jp\/archives\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/takaya-com.jp\/archives\/wp-json\/wp\/v2\/comments?post=1331"}],"version-history":[{"count":2,"href":"https:\/\/takaya-com.jp\/archives\/wp-json\/wp\/v2\/posts\/1331\/revisions"}],"predecessor-version":[{"id":1337,"href":"https:\/\/takaya-com.jp\/archives\/wp-json\/wp\/v2\/posts\/1331\/revisions\/1337"}],"wp:attachment":[{"href":"https:\/\/takaya-com.jp\/archives\/wp-json\/wp\/v2\/media?parent=1331"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/takaya-com.jp\/archives\/wp-json\/wp\/v2\/categories?post=1331"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/takaya-com.jp\/archives\/wp-json\/wp\/v2\/tags?post=1331"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}