-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhtml.html
More file actions
49 lines (34 loc) · 1.09 KB
/
html.html
File metadata and controls
49 lines (34 loc) · 1.09 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Geoply - The MongoDB Geo-Location Toolkit</title>
<script src="http://maps.googleapis.com/maps/api/js?sensor=true"></script>
<script src="js/jquery-1.6.4.min.js"></script>
<link rel="stylesheet" href="css/g-spot.css">
<script src="js/g-spot.js"></script>
<!--[if lt IE 9]>
<style>.git-ribbon { top: -2em; left: -2em; }</style>
<![endif]-->
<script>
/* CREATING A MAP IS THIS SIMPLE */
$(document).ready(function(){
$('#gspot').gSpot();
});
</script>
</head>
<body>
<div class="git-ribbon"><a href="https://github.com/msmalley/Geoply">Fork Me on GitHub</a></div>
<div id="header">
<h1>Geoply</h1>
<span class="social-media-links">
<a href="http://twitter.com/m_smalley" class="twitter">Twitter</a>
<a href="http://facebook.com/mark.smalley" class="facebook">Facebook</a>
<a href="http://www.linkedin.com/profile/view?id=10311122" class="linkedin">Linked-In</a>
</span>
</div>
<div id="map-wrapper">
<div id="gspot" data-ajax="json.php" data-zoom="17" data-override="true"></div>
</div>
</body>
</html>