Constructor
new Globe(options)
Name | Type | Attributes | Default | Description | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options | IGlobeParams | Options: Properties
| ||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||
options.autoActivate | boolean | <optional> | true | Globe rendering auto activation flag. True is default. | ||||||||||||||||||||||||
options.attributionContainer | HTMLElement | <optional> | Container for attribution list. | |||||||||||||||||||||||||
options.maxGridSize | number | <optional> | 128 | = Maximal segment grid size. 128 is default | ||||||||||||||||||||||||
options.fontsSrc | string | <optional> | Fonts collection url. | |||||||||||||||||||||||||
options.resourcesSrc | string | <optional> | Resources root src. | |||||||||||||||||||||||||
options.nightTextureSrc | string | <optional> | Night glowing image sources | |||||||||||||||||||||||||
options.specularTextureSrc | string | <optional> | Specular water mask image sourcr | |||||||||||||||||||||||||
options.maxAltitude | number | <optional> | 15000000.0 | Maximal camera altitude above terrain | ||||||||||||||||||||||||
options.minAltitude | number | <optional> | 1.0 | Minimal camera altitude above terrain | ||||||||||||||||||||||||
options.maxEqualZoomAltitude | number | <optional> | 15000000.0 | Maximal altitude since segments on the screen became the same zoom level | ||||||||||||||||||||||||
options.minEqualZoomAltitude | number | <optional> | 10000.0 | Minimal altitude since segments on the screen became the same zoom level | ||||||||||||||||||||||||
options.minEqualZoomCameraSlope | number | <optional> | 0.8 | Minimal camera slope above te globe where segments on the screen became the same zoom level | ||||||||||||||||||||||||
options.loadingBatchSize | number | <optional> | 12 | |||||||||||||||||||||||||
options.quadTreeStrategyPrototype | number | <optional> | Prototype of quadTree. QuadTreeStrategy for Earth is default. | |||||||||||||||||||||||||
options.msaa | number | <optional> | 0 | MSAA antialiasing parameter: 2,4,8,16. Default is 0. | ||||||||||||||||||||||||
options.dpi | number | <optional> | Device pixel ratio. Default is current screen DPI. | |||||||||||||||||||||||||
options.atmosphereEnabled | boolean | <optional> | Enables atmosphere effect. | |||||||||||||||||||||||||
options.transtitionOpacityEnabled | boolean | <optional> | Enables terrain smooth opacity transition effect. | |||||||||||||||||||||||||
options.atmosphereParameters | IAtmosphereParams | <optional> | Atmosphere model parameters. | |||||||||||||||||||||||||
options.gamma | number | <optional> | Gamma | |||||||||||||||||||||||||
options.exposure | number | <optional> | Exposure |
Basic initialization
globus = new Globe({
'atmosphere': false,
'target': 'globus',
'name': 'Earth',
'controls': [
new control.MouseNavigation({ autoActivate: true }),
new control.KeyboardNavigation({ autoActivate: true }),
new control.EarthCoordinates({ autoActivate: true, center: false }),
new control.LayerSwitcher({ autoActivate: true }),
new control.ZoomControl({ autoActivate: true }),
new control.TouchNavigation({ autoActivate: true }),
new control.Sun({ autoActivate: true })
],
'terrain': new GlobusTerrain(),
'layers': [
new XYZ("OpenStreetMap", { isBaseLayer: true, url: "http://b.tile.openstreetmap.org/{z}/{x}/{y}.png", visibility: true, attribution: 'Data @ <a href="http://www.openstreetmap.org/">OpenStreetMap</a> contributors, <a href="http://www.openstreetmap.org/copyright">ODbL</a>' })
],
'autoActivate': true
});
Members
$inner :Element
Dom element where WebGL canvas creates
- Element
Methods
fadeIn()
Starts screen brightness fading in effect by the duration time.
fadeOut()
Starts screen brightness fading out effect by the duration time.