Google maps Geolocation не запрашивает разрешения

Я пытаюсь использовать API Карт Google на следующей странице:
https://developers.google.com/maps/documentation/javascript/geolocation

и все, что я делаю, это копирую код на этой странице и вставляю его на страницу тестирования на моем сайте.
http://kwt-events-com.stackstaging.com/content/api/maps.php

У меня есть ключ API. Я использовал его, и страница отлично загружается с Google Map.

Проблема в что он не может обнаружить местоположение, показывающее эту ошибку:
«Ошибка: сбой службы геолокации»

Что я пробовал:
разрешить определение местоположения в браузере и на компьютере.
Я пробовал разные браузеры на одной машине «макос».
Я попробовал на другой машине «другой компьютер и другой компьютер».
Я пробовал на телефоне «IOS».

та же ошибка

я знаю, что не могу опубликовать весь код, но я сделаю это, так что вы, ребята, можете мне помочь

<!DOCTYPE html>
<html>
<head>
<title>Geolocation</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<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.
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 async defer
src="https://maps.googleapis.com/maps/api/js?key=IHAD-MY-API-KEY-HERE&callback=initMap">
</script>

1

Решение

Ваша страница обслуживается по протоколу HTTP, а не HTTPS, и геолокация доступна только в том случае, если страница обслуживается безопасно начиная с Chrome 50, Safari 10 и Firefox 55.

2

Другие решения

Во-первых, ваша страница должна быть https. Географическое положение Google будет работать только в https.

Вы можете использовать этот простой код тоже

    function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
getLocation();

function showPosition(position) {
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
console.log(latitude,longitude);
}
0

По вопросам рекламы [email protected]