Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html>
<head>
<title>GPS Plotter</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="bower_components/bootstrap/dist/css/bootstrap.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="bower_components/jqrangeslider/css/iThing.css" type="text/css" />
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/jquery-ui/jquery-ui.js"></script>
<script src="bower_components/jqrangeslider/jQDateRangeSlider-min.js"></script>
<script src="bower_components/papaparse/papaparse.min.js"></script>
<style>
#map-canvas {
height: 85%;
/*width: 100%;*/
margin-left: 0px;
margin-right: 0px;
}
#slider {
margin: 0px 35px 10px 35px;
}
#mainHeading {
margin-bottom: 30px;
}
#dropDown {
}
html, body {
height: 100%;
background-color: lightgrey;
}
</style>
</head>
<body>
<!-- Control Panel -->
<div class="row" style="width: 100%"> <!--class="col-xs-4"-->
<div id="mainHeading" class="col-xs-2">
<h4>GPS Plotter</h4>
<p>Upload a CSV File:</p>
<input type="file" id="csv-file" name="files"/>
</div>
<div class="col-xs-8">
<h5 id="sliderHeading"></h5>
<div id="slider"></div>
</div>
<div id="dropDown" class="col-xs-2">
<p>Dropdown goes here</p>
</div>
</div>
<!-- Map Area -->
<div id="map-canvas" class="col-xs-10">
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB7kbzCC9vv9yxONLqYlravPF2tBW-HTuE&callback=initMap" async defer></script>
</div>
<div id="legend-box" class="col-xs-2">
<h5 id="legend-heading"></h5>
<p id="legend-content"></p>
</div>
</div>
</body>
<script src="MapScript.js"></script>
<script src="Parser.js"></script>
<script src="Slider.js"></script>
</html>