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.
Files changed (34) hide show
  1. package/README.md +1 -1
  2. package/dist/globe.gl.js +1 -1
  3. package/dist/globe.gl.min.js +1 -1
  4. package/example/airline-routes/highlight-links.html +2 -2
  5. package/example/airline-routes/us-international-outbound.html +2 -2
  6. package/example/basic/index.html +2 -2
  7. package/example/choropleth-countries/index.html +3 -3
  8. package/example/clouds/index.html +3 -3
  9. package/example/countries-population/index.html +2 -2
  10. package/example/custom-globe-styling/index.html +5 -5
  11. package/example/custom-layer/index.html +3 -3
  12. package/example/day-night-cycle/index.html +4 -3
  13. package/example/earth-shield/index.html +2 -2
  14. package/example/earthquakes/index.html +2 -2
  15. package/example/emit-arcs-on-click/index.html +2 -2
  16. package/example/heatmap/index.html +2 -2
  17. package/example/hexed-polygons/index.html +2 -2
  18. package/example/hollow-globe/index.html +2 -2
  19. package/example/html-markers/index.html +2 -2
  20. package/example/moon-landing-sites/index.html +2 -2
  21. package/example/population-heatmap/index.html +2 -2
  22. package/example/random-arcs/index.html +2 -2
  23. package/example/random-paths/index.html +3 -3
  24. package/example/random-rings/index.html +2 -2
  25. package/example/satellites/index.html +2 -2
  26. package/example/solar-terminator/index.html +2 -2
  27. package/example/submarine-cables/index.html +4 -4
  28. package/example/tile-engine/index.html +1 -1
  29. package/example/tiles/index.html +1 -1
  30. package/example/volcanoes/index.html +3 -3
  31. package/example/volcanoes-heatmap/index.html +2 -2
  32. package/example/world-cities/index.html +3 -3
  33. package/example/world-population/index.html +4 -4
  34. 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 inital position. | `true` |
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 globe.gl - https://github.com/vasturiano/globe.gl
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) :