我只是使用以下网址中的代码,包含和不使用API,但Chrome上没有加载位置。这同样适用于IE和Firefox。
任何人都可以帮我理解这个问题。请注意位置已在Chrome设置
下启用https://developers.google.com/maps/documentation/javascript/examples/map-geolocation
赞赏这方面的任何帮助
<script>
// Note: This example requires that you consent to location sharing when
// prompted by your browser. If you see the error "The Geolocation service
// failed.", it means you probably did not give permission for the browser to
// locate you.
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 6
});
var infoWindow = new google.maps.InfoWindow({map: map});
// 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.');
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.');
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap">
</script>
&#13;
<!DOCTYPE html>
<html>
<head>
<title>Geolocation</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
</body>
</html>
&#13;
答案 0 :(得分:2)
如果您打算使用任何Google的API,此实例的地图,您需要首先获得Maps JavaScript API中所述的API密钥。确保它是浏览器类型。
因此,在您的情况下,将YOUR_API_KEY替换为您在Google Developer Console中获得的YOUR_API_KEY,如:
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=API_KEY&callback=initMap">
另外,不要忘记注册URL来源。这可以是本地主机或部署的URL,例如:
http://localhost:3333
,http://myintranet
,http://192.168.1.1
,http://mywebsite.com
答案 1 :(得分:0)
仅适用于HTTPS!
[Deprecation] getCurrentPosition()和watchPosition()不再有效 在不安全的起源。要使用此功能,您应该考虑 将您的应用程序切换到安全的来源,例如HTTPS。
答案 2 :(得分:0)
我刚刚在浏览器网址中写了127.0.0.1
而不是localhost
,这对我有用。