-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
69 lines (61 loc) · 2.31 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
---
layout: map
title: Colorful Traces
---
<div id="mapid"></div>
<div id="insights-sidebar" class="sidebar sidebar-left active">
<div class="dismiss">
<i class="fas fa-arrow-left"></i>
</div>
<div class="sidebar-header">
<h5>Insights</h5>
</div>
<div class="sidebar-content">
<div class="title">Deliveries throughout the day</div>
<figure id="time-hist"></figure>
<div class="title">Delivery distance</div>
<figure id="distance-hist"></figure>
<div class="title">Delivery duration</div>
<figure id="duration-hist"> </figure>
</div>
</div>
{% include clock.html %}
<div id='right-panel'>
<div class="card map-panel" id='options-card'>
<header class="card-header">
<a href="#" data-toggle="collapse" data-target="#collapse-options" aria-expanded="true" class='collapsed'>
<i class="icon-action fa fa-sort-down"></i>
<span class="title">Options</span>
</a>
</header>
<div class="collapse" id="collapse-options" style="">
<article class="card-body">
<div class="form-check">
<input id="rest-markers-check" class="form-check-input" type="checkbox" value="" checked>
<label class="form-check-label" for="rest-markers-check">
Show restaurants
</label>
</div>
<div>
<label class="btn-toggle-label" for="map-style-toggle">
Map style
</label>
<div id="map-style-toggle" class="btn-group btn-group-toggle" data-toggle="buttons">
<label id="map-style-dark" class="btn btn-secondary btn-sm active">
<input type="radio" name="options" autocomplete="off" checked> Dark
</label>
<label id="map-style-light" class="btn btn-secondary btn-sm">
<input type="radio" name="options" autocomplete="off"> Light
</label>
</div>
</div>
</article>
<div class="card-body">
<label class="legend" for="heatmap_legend">
Legend
</label>
<svg id="heatmap_legend"></svg>
</div>
</div>
</div>
</div>