forked from hwstartup/TheMakerMap.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (65 loc) · 3.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Maker Map</title>
<meta name="viewport" content="width=520,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="./css/screen.css">
<link rel="stylesheet" href="./css/phone.css" media="only screen and (max-device-width: 480px)">
<link rel="stylesheet" href="./css/tablet.css" media="only screen and (min-device-width: 768px) and (max-device-width: 1024px)">
<link href="http://fonts.googleapis.com/css?family=PT+Sans|PT+Sans+Narrow:400,700" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<!-- Header -->
<div id="header" class="band">
<div class="container">
<span class="brand">The <strong>Maker</strong> Map</span>
</div>
<div id="topnav" class="pull-right">
<a href="https://docs.google.com/spreadsheet/viewform?formkey=dFFZc2hBY1h3M3hPM1B2bVphZmhsY0E6MA#gid=0" target="_blank">
<img src="./img/ui_topnav_add.gif" width="36" height="36" alt="Add A Resource" />
</a>
<a href="https://groups.google.com/forum/#!forum/themakermap" target="_blank">
<img src="./img/ui_topnav_discuss.gif" width="36" height="36" alt="Discuss" />
</a>
<a href="https://github.com/hwstartup/TheMakerMap.com/issues" target="_blank">
<img src="./img/ui_topnav_source.gif" width="36" height="36" alt="Source" />
</a>
</div>
</div>
<!-- Controls -->
<div id="controls" class="band">
<div class="container">
<!-- Search -->
<form id="search">
<input type="text" placeholder="Search...">
</form>
<!-- Types -->
<form id="filter">
<span class="subhead">Filter By Business Type</span>
<label class="any-filter"><input type="checkbox" checked="checked" value="any">Any</label>
<label><input type="checkbox" checked="checked" value="retail">Retail</label>
<label><input type="checkbox" checked="checked" value="workspace">Workspace</label>
<label><input type="checkbox" checked="checked" value="fabricator">Fabricator</label>
<label><input type="checkbox" checked="checked" value="distributor">Distributor</label>
<label><input type="checkbox" checked="checked" value="museum">Museum</label>
<label><input type="checkbox" checked="checked" value="service">Service</label>
<label><input type="checkbox" checked="checked" value="incubator">Incubator</label>
</form>
</div>
</div>
<!-- Map -->
<div id="map-wrapper">
<div id="map-canvas"></div>
</div>
<!-- Scripts -->
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="./js/jquery.min.js"></script>
<script src="./js/jquery.hovertips.js"></script>
<script src="./js/index.js"></script>
</body>
</html>