-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgetting-started-wcs.html
executable file
·54 lines (49 loc) · 1.66 KB
/
getting-started-wcs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Adding elevation</title>
<link rel="icon" href="../static/favicon.ico" />
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<meta name="title" content="Adding elevation" />
<meta
name="description"
content="
<h2>Introduction</h2>
This tutorial explains how to set elevation
<h2>Code in Mizar</h2>
TODO
<br/><br/>
Look at the code and change it to test it.
<br/>
"
/>
<link
rel="stylesheet"
type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css"
/>
<link
rel="stylesheet"
type="text/css"
href="https://cdn.jsdelivr.net/gh/wallynm/jquery-loadmask@master/jquery.loadmask.min.css"
/>
</head>
<body style="margin: 0; padding: 0; overflow: hidden;">
<div id="container">
<div id="fps" style="color: white; position: absolute; top: 10px; left: 45%;">FPS : 0</div>
<canvas id="MizarCanvas" style="border: none; margin: 0; padding: 0;"></canvas>
</div>
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.1/moment-with-locales.min.js"
></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.x-git.min.js"></script>
<script
src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
crossorigin="anonymous"
></script>
<script type="text/javascript" src="../dist/mizar.js"></script>
<script type="text/javascript" src="getting-started-wcs.js"></script>
</body>
</html>