14 lines
382 B
JavaScript
14 lines
382 B
JavaScript
/*global require*/
|
|
// require in the complete Cesium object and reassign it globally.
|
|
// This is meant for use with the Almond loader.
|
|
require([
|
|
'Cesium'
|
|
], function(
|
|
Cesium) {
|
|
'use strict';
|
|
/*global self*/
|
|
var scope = typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {};
|
|
|
|
scope.Cesium = Cesium;
|
|
}, undefined, true);
|