-
Notifications
You must be signed in to change notification settings - Fork 0
/
geolocation_gmaps.html
53 lines (43 loc) · 1.52 KB
/
geolocation_gmaps.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!-- Pega a geolocalização e retorna o endereço do usuario -->
<!DOCTYPE html>
<html>
<title>GM Endereco</title>
<head>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
</head>
<body>
<p>Pegar localização</p>
<button onclick="getReverseGeocodingData()">CLIQUE AQUI</button>
<p id="demo"></p>
<script type="text/javascript">
var x = document.getElementById("demo");
function getReverseGeocodingData() {
//busca latitude e longitude
// o metodo getCurrentPosition recebe uma função caso esteja OK e outra função para casos de erro
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = "NAO VAI ROLA :(";
}
function showPosition(position) {
var latlng = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
// Liga o forninho
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'latLng': latlng }, function (results, status) {
if (status !== google.maps.GeocoderStatus.OK) {
alert(status);
}
// Chama a mãe da Geovana
//Verifica se o status esta OK
if (status == google.maps.GeocoderStatus.OK) {
console.log(results);
var address = (results[0].formatted_address);
x.innerHTML = "<h2>Endereco" + address + "</h2><br>Latitude: " + position.coords.latitude +
"<br>Longitude: " + position.coords.longitude;
}
});
}
}
</script>
</body>
</html>