JavaScriptを使用して地理位置情報の使用方法を学ぼうとしています。しかし、スクリプトは思ったように動作しません。以下は私のコードです:
<!doctype html>
<html>
<title> Testing Geolocation</title>
<head>
<script>
function displayLocation(){
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
var div = document.getElementById("myLocation");
div.innerHTML =" You are at Latitude "+latitude+" and longitude "+longitude);}
window.onload = getMyLocation;}
function getMyLocation{
if(navigator.geolocation){
navigator.geolocation.getCurrentPosition(displayLocation);}
else{
alert("Oops! Geolocation function not supported");}
</script>
</head>
<body>
<div id="myLocation">
Your location will go here.
</div>
</body>
</html>
こんにちは、タイプミスを修正した後も、スクリプトはまだ機能していません。つまり、緯度と経度が表示されていません。