forked from TianxiaoNYU/cellTile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcellTile_archive.html
80 lines (75 loc) · 3.3 KB
/
cellTile_archive.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
<!DOCTYPE html>
<html>
<head>
<title>Transcript localization</title>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<link rel="stylesheet" href="css/leaflet.css">
<link rel="stylesheet" href="https://cdn.rawgit.com/ardhi/Leaflet.MousePosition/master/src/L.Control.MousePosition.css">
<script src="js/leaflet.js" type="text/javascript"></script>
<script src="https://cdn.rawgit.com/ardhi/Leaflet.MousePosition/master/src/L.Control.MousePosition.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.css">
<script src="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/jquery-ui.min.css" />
<!--
<style>
html, body, #map { width:100%; height:100%; margin:0; padding:0; z-index: 1; background: #ffffff; }
#slider{ position: absolute; top: 10px; right: 10px; z-index: 5; }
</style>
-->
<script src="https://unpkg.com/popper.js/dist/umd/popper.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-xs-1 col-sm-1 col-md-1 col-lg-1">
<div class="form-check form-check-inline">
<!--
<div class="dropdown">
<button class="btn btn-primary btn-sm dropdown-toggle" type="button" data-toggle="dropdown">Gene
<span class="caret"></span></button>
<ul id="gene_name" class="dropdown-menu scrollable-menu">
</ul>
</div>
-->
<input class="form-check-input" type="checkbox" id="all_genes" value="true">
<label class="form-check-label" for="all_genes">all genes</label>
</div>
</div>
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2">
<div class="form-check form-check-inline">
<label class="form-check-label" for="search_box">Gene:</label>
<input class="form-control autocomplete" id="search_box">
</div>
</div>
<div class="col-xs-1 col-sm-1 col-md-1 col-lg-1">
<div class="dropdown">
<button class="btn btn-primary btn-sm dropdown-toggle" type="button" data-toggle="dropdown">Stain
<span class="caret"></span></button>
<ul id="stain" class="dropdown-menu scrollable-menu">
</ul>
</div>
</div>
<div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
<table id="color_legend">
<tr>
</tr>
</table>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div id="map" style="height: 750px"></div>
</div>
</div>
</div>
<script src="js/script_archive.js"></script>
</body>
</html>