diff --git a/TwitterStalker/MapScript.js b/TwitterStalker/MapScript.js new file mode 100644 index 0000000..4606a94 --- /dev/null +++ b/TwitterStalker/MapScript.js @@ -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(); diff --git a/TwitterStalker/MapStyle.css b/TwitterStalker/MapStyle.css new file mode 100644 index 0000000..93ad0e5 --- /dev/null +++ b/TwitterStalker/MapStyle.css @@ -0,0 +1,11 @@ +#map{ + height: 100%; +} + +html, +body{ + height: 100%; + margin: 0; + padding: 0; +} +