Capítulo 175 de 859
A loader for the KMZ format.
const loader = new KMZLoader();
const kmz = await loader.loadAsync( './models/kmz/Box.kmz' );
scene.add( kmz.scene );
Constructor
| Signature |
|---|
new KMZLoader( manager : LoadingManager ) |
Methods
| Method | Description |
|---|---|
.load( url : string, onLoad : function, onProgress : onProgressCallback, onError : onErrorCallback ) | Starts loading from the given URL and passes the loaded KMZ asset to the onLoad() callback. |
.parse( data : ArrayBuffer ) : Object | Parses the given KMZ data and returns an object holding the scene. |