1
0
Fork 0
mirror of https://github.com/noerw/leaflet-playback synced 2025-03-12 18:00:29 +01:00
leaflet-playback/examples/index.html
noerw 1e9ab82e54 lint code & split it into seperate modules
using the usual dist/ & src/ folder structure now
Gruntfile extended
2016-04-22 21:02:16 +02:00

34 lines
1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" charset="UTF-8">
<title>geo2midi - geographic midi sequencer</title>
<link rel="stylesheet" href="lib/leaflet/leaflet.css">
<link rel="stylesheet" href="../dist/leaflet-playback.css">
<style>
html, body, #map {
margin: 0;
height: 100%;
}
.leaflet-container .leaflet-control-attribution {
background-color: transparent;
color: #999;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="lib/leaflet/leaflet.js" charset="utf-8"></script>
<script src="lib/webmidi.min.js" charset="utf-8"></script>
<script src="../dist/leaflet-playback.min.js" charset="utf-8"></script>
<!--script src="../src/lib/storyline.js" charset="utf-8"></script>
<script src="../src/sequencer.js" charset="utf-8"></script>
<script src="../src/playhead.js" charset="utf-8"></script>
<script src="../src/control-playback.js" charset="utf-8"></script-->
<script src="index.js" charset="utf-8"></script>
</body>
</html>