main.js 382 B

12345678910111213
  1. /*global require*/
  2. // require in the complete Cesium object and reassign it globally.
  3. // This is meant for use with the Almond loader.
  4. require([
  5. 'Cesium'
  6. ], function(
  7. Cesium) {
  8. "use strict";
  9. /*global self*/
  10. var scope = typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {};
  11. scope.Cesium = Cesium;
  12. }, undefined, true);