1 /***************************************
  2  * Copyright 2011, 2012 GlobWeb contributors.
  3  *
  4  * This file is part of GlobWeb.
  5  *
  6  * GlobWeb is free software: you can redistribute it and/or modify
  7  * it under the terms of the GNU Lesser General Public License as published by
  8  * the Free Software Foundation, version 3 of the License, or
  9  * (at your option) any later version.
 10  *
 11  * GlobWeb is distributed in the hope that it will be useful,
 12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 14  * GNU Lesser General Public License for more details.
 15  *
 16  * You should have received a copy of the GNU General Public License
 17  * along with GlobWeb. If not, see <http://www.gnu.org/licenses/>.
 18  ***************************************/
 19  
 20 define( ["./Globe", "./GeoBound",
 21 		"./WMSLayer", "./WMTSLayer", "./WCSElevationLayer", "./OSMLayer", "./BingLayer", "./VectorLayer", "./AtmosphereLayer", // Layers
 22 		"./Navigation", "./FeatureStyle", "./Stats", "./KMLParser", // Others
 23 		"./PointRenderer", "./LineStringRenderable"], // Renderers
 24 	function(Globe, GeoBound, WMSLayer, WMTSLayer, WCSElevationLayer, OSMLayer, BingLayer, VectorLayer, AtmosphereLayer, Navigation, FeatureStyle, Stats, KMLParser) {
 25 
 26 // Declare GlobWeb 
 27 var GlobWeb = {};
 28 
 29 GlobWeb.Globe = Globe;
 30 GlobWeb.GeoBound = GeoBound;
 31 GlobWeb.WMSLayer = WMSLayer;
 32 GlobWeb.WMTSLayer = WMTSLayer;
 33 GlobWeb.WCSElevationLayer = WCSElevationLayer;
 34 GlobWeb.OSMLayer = OSMLayer;
 35 GlobWeb.BingLayer = BingLayer;
 36 GlobWeb.VectorLayer = VectorLayer;
 37 GlobWeb.FeatureStyle = FeatureStyle;
 38 GlobWeb.AtmosphereLayer = AtmosphereLayer;
 39 GlobWeb.Navigation = Navigation;
 40 GlobWeb.Stats = Stats;
 41 GlobWeb.KMLParser = KMLParser;
 42 
 43 window.GlobWeb = GlobWeb;
 44 
 45 return GlobWeb;
 46 
 47 });
 48