-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexRegular.html
24 lines (23 loc) · 1.02 KB
/
indexRegular.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
<!DOCTYPE html>
<html>
<head>
<title>Geocoding Service</title>
<link rel="stylesheet" type="text/css" href="css/estilosMapa.css">
<link rel="stylesheet" type="text/css" href="css/estilos.css">
<script src="js/map.js"></script>
<script src="js/index.js"></script>
<script src="js/regularDataList.js"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body onload="">
<div id="map"></div>
<!-- Async script executes immediately and must be after any DOM elements used in callback. -->
<!--<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB41DRUbKWJHPxaFjMAwdrzWzbVKartNGg&callback=initMap&v=weekly&channel=2" async></script>-->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC5jDwB68baipJrEGtbWLoUeqVHCkm_Eq4&callback=initMap&v=weekly&channel=2" async></script>
<script>
let regular = true;
updateData();
</script>
</body>
</html>