mirror of
https://github.com/NASAWorldWind/WebWorldWind.git
synced 2025-12-08 19:46:18 +00:00
* Add WorldWind shim as library reference - Closes #254 - Update the WorldWind object to reference the KmlControls and KmlTreeVisibility classes - Fix ordering of dependencies in WorldWind
12 lines
552 B
JavaScript
12 lines
552 B
JavaScript
/**
|
|
* This shim is used to switch between the individual WorldWind source files and the minified single file library for
|
|
* the WorldWind module. Switching allows locally developed examples to run from the individual WorldWind source files
|
|
* and hosted examples to use the faster to download minified library. A shim is not required for the use of WorldWind.
|
|
* The minified library (worldwind.min.js) is recommended for use in deployed applications.
|
|
*/
|
|
define(['../src/WorldWind'], function (WorldWind) {
|
|
"use strict";
|
|
|
|
return WorldWind;
|
|
});
|