mirror of
				https://github.com/jiawanlong/Cesium-Examples.git
				synced 2025-11-04 09:14:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			188 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			188 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import init from './scene.js';
 | 
						|
 | 
						|
self.onmessage = function ( message ) {
 | 
						|
 | 
						|
	const data = message.data;
 | 
						|
	init( data.drawingSurface, data.width, data.height, data.pixelRatio, data.path );
 | 
						|
 | 
						|
};
 |