-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
60 lines (52 loc) · 1.62 KB
/
map.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
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<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>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
zoom: 2,
center: new google.maps.LatLng(2.8, -187.3),
mapTypeId: 'terrain'
});
var script = document.createElement('script');
script.src = 'sample.js';
console.log(script)
document.getElementsByTagName('head')[0].appendChild(script);
}
window.eqfeed_callback = function(results) {
for (var i = 0; i < results.zips.length; i++) {
var lat = results.zips[i].lat;
var long = results.zips[i].long;
console.log(lat)
console.log(long)
var latLng = new google.maps.LatLng(lat,long);
var marker = new google.maps.Marker({
position: latLng,
map: map
});
}
}
</script>
<!-- Dont abuse this please. dOnT cOmMiT yOuR kEyS yeah yeah I know but I want ppeople to be able to use this without having to make a google map api account. I can and will kill this key if need be. -->
<script defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBgnWQEY-jFxSF-yapamrPrpDiTKM6bicI&callback=initMap">
</script>
</body>
</html>