-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (24 loc) · 1.05 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Marcadores personalizados, Simbolos - Ejemplo del API JavaScript de Google Maps v3</title>
<link rel="stylesheet" type="text/css" href="index.css" />
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<section>
<h1>Busca el tesoro</h1>
<label><input type="checkbox" id="debug" onclick='onChangeDebug(this);'>Modo debug</label>
<label id="vibracion"></label>
<label id="frecuencia"></label>
<label id="distancia">Distancia: </label>
<button id="iniciar" onclick="iniciar()">Comienza el juego</button>
<button id="reclamar" onclick="reclamar()">Reclamar tesoro</button>
</section>
<div id="map"></div>
<script src="https://maps.googleapis.com/maps/api/js?callback=initMap&key=AIzaSyBdGfXEYH6Ow93kw-anXYavcSx72jMZ21k&signed_in=true&libraries=geometry" async defer>
</script>
</body>
</html>