mirror of
https://github.com/openglobus/openglobus.git
synced 2025-12-08 19:25:27 +00:00
26 lines
776 B
HTML
26 lines
776 B
HTML
<html>
|
|
<head>
|
|
<title>Draco loader sample</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script
|
|
type="text/javascript"
|
|
src="https://www.gstatic.com/draco/versioned/decoders/1.5.7/draco_decoder.js"
|
|
></script>
|
|
<script src="./dracoLoader.js" type="module"></script>
|
|
<link rel="stylesheet" href="../../css/og.css" type="text/css" />
|
|
<style>
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div style="width: 100%; height: 100%">
|
|
<canvas id="frame" style="width: 100%; height: 100%"> </canvas>
|
|
</div>
|
|
</body>
|
|
</html>
|