Add files via upload

This commit is contained in:
Brad Stein 2018-09-20 23:46:50 -05:00 committed by GitHub
parent a7afe13d10
commit 2fe553415b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,30 @@
let map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 32.776, lng: -96.797},
zoom: 10
});
let home;
home = new google.maps.Marker({
position: {lat: 32.9608558, lng: -96.8530005},
map: map,
title: 'Home'
});
let globe_runnner;
globe_runnner = new google.maps.Marker({
position: {lat: 32.972469, lng: -96.830857},
map: map,
title: 'Globe Runner'
});
let unifocus;
unifocus = new google.maps.Marker({
position: {lat: 32.9194354, lng: -96.9292158},
map: map,
title: 'Globe Runner'
});
}
initMap();

View File

@ -0,0 +1,11 @@
#map{
height: 100%;
}
html,
body{
height: 100%;
margin: 0;
padding: 0;
}