webglmapview/webviewgl.htm

23 lines
810 B
HTML

<html>
<head>
<script src="js/three.js"></script>
<script src="js/OrbitControls.js"></script>
<script src="js/three-text2d.js"></script>
<script src="js/Detector.js"></script>
<script src="js/mapviewgl.js"></script>
<style type="text/css">
body { margin: 0; }
canvas { width: 75%; height: 100% ; }
#reset-button { position: absolute; top: 0; left: 90%; background-color: #AAA; width: 50px; height: 25px; color: #FFF; font-weight: bold; text-align: center;}
#controls { position: fixed; left: 85%; height: 100%; width: 15%; background-color: #FFF; }
</style>
</head>
<body>
<div id="container"></div>
<div id="reset-button" onClick="reset_view();"> Reset </div>
<div id="controls"> </div>
</body>
</html>