mirror of
https://github.com/neogeek23/neogeek23.github.io.git
synced 2026-02-06 03:48:20 +00:00
Add files via upload
This commit is contained in:
parent
a7afe13d10
commit
2fe553415b
30
TwitterStalker/MapScript.js
Normal file
30
TwitterStalker/MapScript.js
Normal 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();
|
||||||
11
TwitterStalker/MapStyle.css
Normal file
11
TwitterStalker/MapStyle.css
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#map{
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
html,
|
||||||
|
body{
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user