-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
124 lines (119 loc) · 3.84 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>map-tools.js</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<style>
*{
font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial;
font-weight: 100;
}
body{
background-color: #f2f2f2;
padding: 0 20px;
margin: 0;
color: #333;
}
#map{
background-image: url(examples/images/map.png);
background-repeat: no-repeat;
opacity: .1;
position: absolute;
top: 175px;
left: 50%;
width: 600px;
height: 371px;
margin-left: -300px;
background-size: cover;
}
#links{
padding-top:125px;
width: 800px;
margin: 0 auto;
text-align: center;
}
h1{
text-align: center;
font-size: 4.5rem;
margin:0;
}
h2{
text-align: center;
font-size: 2rem;
margin:0;
color:#f90;
}
a{
text-decoration: none
}
a:hover{
text-decoration: underline;
}
h4{
display:inline-block;
margin:0 30px 70px 0;
}
h4 a {
font-weight: 200;
color: #333;
display: inline-block;
position: relative;
background: #fff;
border: 1px solid #DDD;
margin-left: 10px;
padding: 10px;
border-radius: 3px;
}
h4 a:after, h4 a:before {
right: 100%;
top: 43%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
h4 a:after {
border-color: rgba(255, 255, 255, 0);
border-right-color: #fff;
border-width: 8px;
margin-top: -8px;
}
h4 a:before {
border-color: rgba(221, 221, 221, 0);
border-right-color: #DDD;
border-width: 9px;
margin-top: -9px;
}
.fa{
font-size:1.5rem;
color: #f90;
}
</style>
</head>
<body>
<div id="map"></div>
<a href="https://github.com/yagoferrer/map-tools"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/652c5b9acfaddf3a9c326fa6bde407b87f7be0f4/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6f72616e67655f6666373630302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png"></a>
<h1>map-tools.js 2.0.2</h1>
<h2>easy tools for Google maps</h2>
<div id="links">
<h4><i class="fa fa-map-marker"></i><a href="examples/simple.map.html">Simple Map</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/update.map.html">Update Map</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/custom.events.html">Custom Events</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/add.marker.html">Add One Marker</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/update.marker.html">Update Marker</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/reset.marker.html">Reset Marker</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/add.multiple.markers.html">Add Multiple Markers</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/animate.markers.html">Animate Markers</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/tags.html">Tags</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/info.window.html">Add Info Window</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/data.querying.html">Data querying</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/geojson.html">GeoJSON</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/topojson.html">TopoJSON</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/add.panel.html">Add Panel</a></h4>
<h4><i class="fa fa-map-marker"></i><a href="examples/multiple.maps.html">Multiple Maps</a></h4>
</div>
</body>
</html>