ก่อนอื่น ผมใช้โปรแกรม ดรีมวิวเวอ ในการเขียน
แต่ มันเออเร่อ
GetLatLng.html:34 [Deprecation] getCurrentPosition() and watchPosition() no longer work on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See
https://goo.gl/rStTGz for more details.
ซึ่งผมเอาโค้ดมาลองรันใน เว็บ
https://www.w3schools.com/js/tryit.asp?filename=tryjs_syntax_statements
แล้วมันได้
ที่ งง คือผมรันใน เว็บ
https://www.w3schools.com/js/tryit.asp?filename=tryjs_syntax_statements
รันได้รันในดรีมรันไม่ได้ คาดว่าตายในคำสั่งนี้ navigator.geolocation แต่ไม่ทราบว่าเพราะอะไร ใครช่วยได้บ้าง ครับ
ขอบคุณครับ และนี้คือโค้ด
<!DOCTYPE html>
<html>
<head>
<title>Geolocation</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
#map {
height: 100%;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var map, infoWindow;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 6
});
infoWindow = new google.maps.InfoWindow;
// Try HTML5 geolocation.
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var pos = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
infoWindow.setPosition(pos);
infoWindow.setContent('Location found.');
infoWindow.open(map);
map.setCenter(pos);
}, function() {
handleLocationError(true, infoWindow, map.getCenter());
});
} else {
// Browser doesn't support Geolocation
handleLocationError(false, infoWindow, map.getCenter());
}
}
function handleLocationError(browserHasGeolocation, infoWindow, pos) {
infoWindow.setPosition(pos);
infoWindow.setContent(browserHasGeolocation ?
'Error: The Geolocation service failed.' :
'Error: Your browser doesn\'t support geolocation.');
infoWindow.open(map);
}
</script>
<script src="
https://maps.googleapis.com/maps/api/js?key=AIzaSyBtXZod1h8Uv22sOtHUroNrSdJDP6qyuHQ&callback=initMap">
</script>
</body>
</html>
เกี่ยวกับ google api (geolocation)
แต่ มันเออเร่อ
GetLatLng.html:34 [Deprecation] getCurrentPosition() and watchPosition() no longer work on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gl/rStTGz for more details.
ซึ่งผมเอาโค้ดมาลองรันใน เว็บ https://www.w3schools.com/js/tryit.asp?filename=tryjs_syntax_statements
แล้วมันได้
ที่ งง คือผมรันใน เว็บ https://www.w3schools.com/js/tryit.asp?filename=tryjs_syntax_statements
รันได้รันในดรีมรันไม่ได้ คาดว่าตายในคำสั่งนี้ navigator.geolocation แต่ไม่ทราบว่าเพราะอะไร ใครช่วยได้บ้าง ครับ
ขอบคุณครับ และนี้คือโค้ด
<!DOCTYPE html>
<html>
<head>
<title>Geolocation</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
#map {
height: 100%;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var map, infoWindow;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 6
});
infoWindow = new google.maps.InfoWindow;
// Try HTML5 geolocation.
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var pos = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
infoWindow.setPosition(pos);
infoWindow.setContent('Location found.');
infoWindow.open(map);
map.setCenter(pos);
}, function() {
handleLocationError(true, infoWindow, map.getCenter());
});
} else {
// Browser doesn't support Geolocation
handleLocationError(false, infoWindow, map.getCenter());
}
}
function handleLocationError(browserHasGeolocation, infoWindow, pos) {
infoWindow.setPosition(pos);
infoWindow.setContent(browserHasGeolocation ?
'Error: The Geolocation service failed.' :
'Error: Your browser doesn\'t support geolocation.');
infoWindow.open(map);
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBtXZod1h8Uv22sOtHUroNrSdJDP6qyuHQ&callback=initMap">
</script>
</body>
</html>