-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEjercicio14.html
23 lines (23 loc) · 1.12 KB
/
Ejercicio14.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name ="author" content ="UO270157" >
<meta name ="description" content ="Ejercicio14" >
<meta name ="keywords" content ="mapa" >
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" >
<title>Ejercicio14</title>
<link rel="stylesheet" href="Ejercicio14.css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="Ejercicio14.js"></script>
</head>
<body>
<section id="drop_zone" ondrop="ejercicio.dropHandler(event)" ondragover="ejercicio.dragOverHandler(event)">
<h1>Ejercicio 14 - Ubicación mis contactos</h1>
<h2>Arrastre un archivo kml con las ubicaciones de sus contactos a esta zona</h2>
<input type="file" id="archivoTexto" accept=".kml" onchange="ejercicio.cargarArchivo(this.files[0]);">
</section>
<main id="mapa"></main>
<script async="" defer="" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC6j4mF6blrc4kZ54S6vYZ2_FpMY9VzyRU&callback=ejercicio.cargarArchivo"></script>
</body>
</html>