-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
99 lines (80 loc) · 4.61 KB
/
index.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Animated Marker Clusters">
<meta name="keywords" content="Maps, Google, Mapbox, Bing Maps, Animated, Clusters, Marker, Javascript">
<meta name="author" content="WearyMonkey">
<title>Markers.js - Animated Marker Clusters</title>
<link href='https://api.tiles.mapbox.com/mapbox.js/v2.1.5/mapbox.css' rel='stylesheet' />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/main.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Favicons -->
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="icon" href="/favicon.ico">
</head>
<body>
<a href="https://github.com/WearyMonkey/markers.js"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/52760788cde945287fbb584134c4cbc2bc36f904/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f77686974655f6666666666662e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png"></a>
<main class="masthead" id="content" role="main">
<div class="container">
<h1>Markers.js</h1>
<p class="lead">Animated marker clusters for Google, Mapbox or Bing maps.</p>
<div class="">
<iframe src="https://ghbtns.com/github-btn.html?user=wearymonkey&repo=markers.js&type=star&count=true" frameborder="0" scrolling="0" width="75px" height="20px"></iframe>
<iframe src="https://ghbtns.com/github-btn.html?user=wearymonkey&repo=markers.js&type=watch&count=true&v=2" frameborder="0" scrolling="0" width="87px" height="20px"></iframe>
<iframe src="https://ghbtns.com/github-btn.html?user=wearymonkey&repo=markers.js&type=fork&count=true" frameborder="0" scrolling="0" width="90px" height="20px"></iframe>
</div>
<div id="masthead-map" class="container"></div>
</div>
<a href="https://github.com/WearyMonkey/markers.js" class="btn">Github</a>
<a href="dist/markersjs-0.0.1.zip" class="btn">Download v0.0.1</a>
<a href="https://github.com/WearyMonkey/markers.js/blob/master/README.md#api" class="btn">Documentation</a>
</main>
<div class="bs-docs-featurette">
<div class="container">
<h2 class="bs-docs-featurette-title">Multiple Provider Support</h2>
<p class="lead">Markers.js supports Google Maps, Bing Maps and Mapbox right out of the box.</p>
<div class="row">
<div class="col-sm-4">
<div id="mapbox-map" class="map-sample"></div>
<h3>Mapbox</h3>
</div>
<div class="col-sm-4">
<div id="bing-map" class="map-sample"></div>
<h3>Bing Maps</h3>
</div>
<div class="col-sm-4">
<div id="google-map" class="map-sample"></div>
<h3>Google Maps</h3>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCPBRMfttHc522RD5kOuXwAXa2aIjC_j_U"> </script>
<script src='https://api.tiles.mapbox.com/mapbox.js/v2.1.5/mapbox.js'></script>
<script charset="UTF-8" type="text/javascript" src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="dist/markers.all.js"></script>
<script src="src/examples/google-custom-marker.js"></script>
<script src="src/examples/pictures.js"></script>
<script src="src/examples/bing.js"></script>
<script src="src/examples/mapbox.js"></script>
<script src="src/examples/google.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-60021357-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>