adventure / static /index.html
oggata's picture
Update static/index.html
807a49f verified
raw
history blame contribute delete
522 Bytes
<!DOCTYPE html>
<html>
<head>
<title>3D Town Map</title>
<style>
body { margin: 0; }
canvas { display: block; }
#three-container { width: 100%; height: 100vh; }
</style>
</head>
<body>
<div id="three-container"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/three@0.128.0/examples/js/controls/OrbitControls.js"></script>
<script src="js/three_map.js"></script>
</body>
</html>