mirror of
				https://github.com/ethan-zf/cesium-plot-js.git
				synced 2025-11-04 01:04:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			846 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			846 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
  <head>
 | 
						|
    <meta charset="UTF-8" />
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | 
						|
    <title>CesiumPlot</title>
 | 
						|
    <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>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <div id="root"></div>
 | 
						|
    <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>
 | 
						|
  </body>
 | 
						|
</html>
 |