WebWorldWind/examples/WorldWindShim.js
Zach Glueckert 04ad540776 Refactor the examples reference method of the WorldWind library (#275)
* 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
2017-11-03 13:57:40 -07:00

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;
});