-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (141 loc) · 5.54 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="es">
<head version="">
<title>Marker Factory Example</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="icon" type="image/png" href="/favicon.png" />
<link href="examples/css/fontello.css" rel="stylesheet">
<link href="examples/css/font-awesome.css" rel="stylesheet">
<link href="examples/css/style.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="dist/markerfactory.min.js"></script>
<script src="examples/icons.js"></script>
</head>
<body>
<div class="container">
<table class="table table-striped">
<tr class="row">
<td class="">
<h3>Font Family</h3>
</td>
<td class="">
<h3>Camera</h3>
</td>
<td class="">
<h3>shopping</h3>
</td>
<td class="">
<h3>Plane</h3>
</td>
<td class="">
<h3>Taxi</h3>
</td>
</tr>
<tr class="row marker" id="fontello">
<td class=" ">
<p><b>Fontello</b> (marker icons)</p>
</td>
<td class=" camera">
<i class="fontello-camera"></i>
</td>
<td class=" retail">
<i class="fontello-grocery-store" aria-hidden="true"></i>
</td>
<td class=" plane">
<i class="fontello-airport" aria-hidden="true"></i>
</td>
<td class=" taxi">
<i class="fontello-taxi" aria-hidden="true"></i>
</td>
</tr>
<tr class="row transparent" id="fontello">
<td class=" ">
<p><b>Fontello</b> (transparent icons)</p>
</td>
<td class=" camera">
<i class="fontello-camera"></i>
</td>
<td class=" retail">
<i class="fontello-grocery-store" aria-hidden="true"></i>
</td>
<td class=" plane">
<i class="fontello-airport" aria-hidden="true"></i>
</td>
<td class=" taxi">
<i class="fontello-taxi" aria-hidden="true"></i>
</td>
</tr>
<tr class="row marker" id="fontawesome">
<td class=" ">
<p><b>FontAwesome</b> (marker icons)</p>
</td>
<td class=" camera">
<i class="fa fa-camera fa-lg"></i>
</td>
<td class=" retail">
<i class="fa fa-shopping-cart fa-lg" aria-hidden="true"></i>
</td>
<td class=" plane">
<i class="fa fa-plane fa-lg" aria-hidden="true"></i>
</td>
<td class=" taxi">
<i class="fa fa-taxi fa-lg" aria-hidden="true"></i>
</td>
</tr>
<tr class="row transparent" id="fontawesome">
<td class=" ">
<p><b>FontAwesome</b> (transparent icons)</p>
</td>
<td class=" camera">
<i class="fa fa-camera fa-lg"></i>
</td>
<td class=" retail">
<i class="fa fa-shopping-cart fa-lg" aria-hidden="true"></i>
</td>
<td class=" plane">
<i class="fa fa-plane fa-lg" aria-hidden="true"></i>
</td>
<td class=" taxi">
<i class="fa fa-taxi fa-lg" aria-hidden="true"></i>
</td>
</tr>
<tr class="row marker" id="materialicons">
<td class=" ">
<p><b>Material Icons</b> (marker icons)</p>
</td>
<td class=" camera">
<i class="material-icons">camera_alt</i>
</td>
<td class=" retail">
<i class="material-icons">shopping_cart</i>
</td>
<td class=" plane">
<i class="material-icons">airplanemode_active</i>
</td>
<td class=" taxi">
<i class="material-icons">directions_car</i>
</td>
</tr>
<tr class="row transparent" id="materialicons">
<td class=" ">
<p><b>Material Icons</b> (transparent icons)</p>
</td>
<td class=" camera ft22">
<i class="material-icons">camera_alt</i>
</td>
<td class=" retail ft22">
<i class="material-icons">shopping_cart</i>
</td>
<td class=" plane ft22">
<i class="material-icons">airplanemode_active</i>
</td>
<td class=" taxi ft22">
<i class="material-icons">directions_car</i>
</td>
</tr>
</table>
</div>
<script src="examples/example.js"></script>
</body>