heavyai-charting/example/example4.html

78 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>MapD</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/mapdc.min.css" />
<link rel="stylesheet" type="text/css" href="css/chart.min.css" />
<link rel="stylesheet" type="text/css" href="css/mapbox-gl.css" />
<link href='https://fonts.googleapis.com/css?family=Roboto:400,700,300' rel='stylesheet' type='text/css'>
<style>
.title {
font-weight: bold;
text-align:center;
}
.mapd {
position: relative;
top: 2px;
}
.search{
display: inline-block;
margin-top: 12px;
margin-left: 50px;
}
.data-count {
padding-right:20px;
}
.filter-count {
font-weight: bold;
color: #45B1E8;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header" style="margin-top:10px">
<img alt="Brand" src="images/favicon.png" height="30" width="30">
<span class="mapd">MapD Demo</span>
</div>
<div class='search'>Filter Term(s): <small>use a comma between terms to search multiple values</small>
<input class='search-bar'>
</div>
<div class="navbar-text navbar-right">
<div class="data-count">
<span class="total"><span><span class="filter-count"></span></span>
<span>of <span class="total-count"></span> tweets</span>
</div>
</div>
</div>
</nav>
<div class="main-container">
<div class="col-xs-12">
<div class="title">ScatterPlot with Backend Rendering</div>
<div id="chart1-example"></div>
</div>
<div class="col-xs-12">
<div class="title"># of Tweets per 5 Minutes</div>
<div class="chart2-example"></div>
</div>
</div>
<script src="js/lodash.js"></script>
<script src="js/d3.min.js"></script>
<script src="js/thrift.js"></script>
<script src="js/mapd.thrift.js"></script>
<script src="js/mapd_types.js"></script>
<script src="js/MapdCon.js"></script>
<script src="js/mapd-crossfilter.js"></script>
<script src="js/mapdc.js"></script>
<script src="js/mapbox-gl.js"></script>
<script src="js/mapboxgl-overrides.js"></script>
<script src="example4.js"></script>
</body>
</html>