globe.gl 2.41.1 → 2.41.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/globe.gl.js +1 -1
- package/dist/globe.gl.min.js +1 -1
- package/example/airline-routes/highlight-links.html +2 -2
- package/example/airline-routes/us-international-outbound.html +2 -2
- package/example/basic/index.html +2 -2
- package/example/choropleth-countries/index.html +3 -3
- package/example/clouds/index.html +3 -3
- package/example/countries-population/index.html +2 -2
- package/example/custom-globe-styling/index.html +5 -5
- package/example/custom-layer/index.html +3 -3
- package/example/day-night-cycle/index.html +4 -3
- package/example/earth-shield/index.html +2 -2
- package/example/earthquakes/index.html +2 -2
- package/example/emit-arcs-on-click/index.html +2 -2
- package/example/heatmap/index.html +2 -2
- package/example/hexed-polygons/index.html +2 -2
- package/example/hollow-globe/index.html +2 -2
- package/example/html-markers/index.html +2 -2
- package/example/moon-landing-sites/index.html +2 -2
- package/example/population-heatmap/index.html +2 -2
- package/example/random-arcs/index.html +2 -2
- package/example/random-paths/index.html +3 -3
- package/example/random-rings/index.html +2 -2
- package/example/satellites/index.html +2 -2
- package/example/solar-terminator/index.html +2 -2
- package/example/submarine-cables/index.html +4 -4
- package/example/tile-engine/index.html +1 -1
- package/example/tiles/index.html +1 -1
- package/example/volcanoes/index.html +3 -3
- package/example/volcanoes-heatmap/index.html +2 -2
- package/example/world-cities/index.html +3 -3
- package/example/world-population/index.html +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -108,7 +108,7 @@ new Globe(<domElement>, { configOptions })
|
|
|
108
108
|
| --- | --- | :--: |
|
|
109
109
|
| <b>rendererConfig</b>: <i>object</i> | Configuration parameters to pass to the [ThreeJS WebGLRenderer](https://threejs.org/docs/#api/en/renderers/WebGLRenderer) constructor. | `{ antialias: true, alpha: true }` |
|
|
110
110
|
| <b>waitForGlobeReady</b>: <i>boolean</i> | Whether to wait until the globe wrapping or background image has been fully loaded before rendering the globe or any of the data layers. | `true` |
|
|
111
|
-
| <b>animateIn</b>: <i>boolean</i> | Whether to animate the globe initialization, by scaling and rotating the globe into its
|
|
111
|
+
| <b>animateIn</b>: <i>boolean</i> | Whether to animate the globe initialization, by scaling and rotating the globe into its initial position. | `true` |
|
|
112
112
|
|
|
113
113
|
### Container Layout
|
|
114
114
|
|
package/dist/globe.gl.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Version 2.41.
|
|
1
|
+
// Version 2.41.2 globe.gl - https://github.com/vasturiano/globe.gl
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(factory) :
|