WebWorldWind/examples/MultiWindow.html
eirizarry 3387ef4eed Make "WorldWind" the name standard (#200)
All instances of "World Wind" in the source code and supporting documents have been changed to "WorldWind".
2017-08-17 11:37:53 -07:00

28 lines
1.2 KiB
HTML

<!--@version $Id: MultiWindow.html 3103 2015-05-20 00:27:44Z tgaskins $-->
<!DOCTYPE html>
<html>
<head lang="en">
<!--NOTE: Most Web WorldWind examples use jquery, Bootstrap and requirejs but those technologies are NOT-->
<!--required by Web WorldWind. See SimplestExample.html for an example of using Web WorldWind without them.-->
<meta charset="UTF-8">
<title>WorldWind Multi-window Example</title>
<script data-main="MultiWindow" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.17/require.min.js"></script>
</head>
<body>
<div id="page">
<div id="div1" style="position:absolute; top:20px; left:20px;">
<canvas id="canvasOne" width="300" height="300" style="border: 10px solid mediumblue;">
Your browser does not support HTML5 Canvas.
</canvas>
</div>
<div id="div2" style="position:absolute; top:20px; left:350px;" >
<canvas id="canvasTwo" width="300" height="300" style="border: 10px solid #ff0000;">
</canvas>
</div>
<div id="div3" style="position:absolute; top:20px; left:680px;" >
<canvas id="canvasThree" width="300" height="300" style="border: 10px solid #00ff00;">
</canvas>
</div>
</div>
</body>
</html>