2023-08-08 11:45:54 +00:00
|
|
|
<!DOCTYPE html>
|
2023-08-08 07:41:52 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>CesiumPlot</title>
|
2023-08-08 11:45:54 +00:00
|
|
|
<style>
|
|
|
|
@import url(/examples/cesium/Widgets/widgets.css);
|
|
|
|
html,
|
|
|
|
body,
|
|
|
|
#cesiumContainer {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#drawStraightArrow {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
</style>
|
2023-08-08 07:41:52 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="root"></div>
|
2023-08-08 11:45:54 +00:00
|
|
|
<div id="cesiumContainer"></div>
|
|
|
|
<button id="drawStraightArrow" class="btn btn-success">直箭头</button>
|
|
|
|
<script>
|
|
|
|
window.CESIUM_BASE_URL = "./examples/cesium";
|
|
|
|
</script>
|
|
|
|
<script type="module" src="./examples/index.ts"></script>
|
2023-08-08 07:41:52 +00:00
|
|
|
</body>
|
|
|
|
</html>
|