mirror of
				https://github.com/jiawanlong/Cesium-Examples.git
				synced 2025-11-04 01:04:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!--********************************************************************
 | 
						|
* by jiawanlong
 | 
						|
*********************************************************************-->
 | 
						|
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
 | 
						|
<head>
 | 
						|
  <meta charset="UTF-8" />
 | 
						|
  <link rel="stylesheet" href="./../../libs/cesium/Cesium1.98/Widgets/widgets.css" />
 | 
						|
  <script type="text/javascript" src="./../../libs/cesium/Cesium1.98/Cesium.js"></script>
 | 
						|
  <link rel="stylesheet" href="./plottingfont/plottingfont.css" />
 | 
						|
  <script src="./jquery-1.8.3.min.js"></script>
 | 
						|
  <script src="./dom-to-image.js"></script>
 | 
						|
  <style>
 | 
						|
    * {
 | 
						|
      margin: 0;
 | 
						|
      padding: 0;
 | 
						|
    }
 | 
						|
 | 
						|
    html,
 | 
						|
    body {
 | 
						|
      width: 100%;
 | 
						|
      height: 100%;
 | 
						|
    }
 | 
						|
 | 
						|
    #cesiumContainer {
 | 
						|
      width: 100%;
 | 
						|
      height: 100%;
 | 
						|
    }
 | 
						|
  </style>
 | 
						|
</head>
 | 
						|
 | 
						|
<body style="
 | 
						|
      margin: 0;
 | 
						|
      overflow: hidden;
 | 
						|
      background: #fff;
 | 
						|
      width: 100%;
 | 
						|
      height: 100%;
 | 
						|
      position: absolute;
 | 
						|
      top: 0;
 | 
						|
    ">
 | 
						|
  <div class="dddddd" style="width: 72px;"><i class="plottingfont plottingfont-8"
 | 
						|
      style="font-size: 72px;color: red;"></i></div>
 | 
						|
  <div id="map" style="margin: 0 auto; width: 100%; height: 100%"></div>
 | 
						|
  <script type="text/javascript">
 | 
						|
    Cesium.Ion.defaultAccessToken =
 | 
						|
      "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIyNDMxOTA2NS1lY2Q3LTQ0YmUtOTE1Mi1iNWE2OGYwZjc0MjkiLCJpZCI6MjM1NjMwLCJpYXQiOjE3MzA3MjQzMTJ9.Xhu-9FyVEyqBKWEr0V9Sybt-elTCWHt9peL9-mNh-4E";
 | 
						|
    const viewer = new Cesium.Viewer("map", {});
 | 
						|
    viewer.scene.debugShowFramesPerSecond = true;
 | 
						|
 | 
						|
    function base64ToBlob(base64) {
 | 
						|
      var parts = base64.split(';base64,');
 | 
						|
      var contentType = parts[0].split(':')[1];
 | 
						|
      var raw = window.atob(parts[1]);
 | 
						|
      var rawLength = raw.length;
 | 
						|
      var uInt8Array = new Uint8Array(rawLength);
 | 
						|
      for (var i = 0; i < rawLength; ++i) {
 | 
						|
        uInt8Array[i] = raw.charCodeAt(i);
 | 
						|
      }
 | 
						|
      return new Blob([uInt8Array], { type: contentType });
 | 
						|
    }
 | 
						|
    domtoimage.toPng(document.getElementsByClassName("dddddd")[0]).then(res => {
 | 
						|
      var blob = base64ToBlob(res);
 | 
						|
      var url = URL.createObjectURL(blob);
 | 
						|
 | 
						|
      var hello = viewer.entities.add({
 | 
						|
        polygon: {
 | 
						|
          hierarchy: Cesium.Cartesian3.fromDegreesArray([
 | 
						|
            -115.0,
 | 
						|
            37.0,
 | 
						|
            -115.0,
 | 
						|
            36.0,
 | 
						|
            -114.0,
 | 
						|
            36.0,
 | 
						|
            -114.0,
 | 
						|
            37.0,
 | 
						|
            -115.0,
 | 
						|
            37.0,
 | 
						|
          ]),
 | 
						|
          material: new Cesium.ImageMaterialProperty({
 | 
						|
            image: url,
 | 
						|
          }),
 | 
						|
        },
 | 
						|
      });
 | 
						|
    })
 | 
						|
 | 
						|
  </script>
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |