Questions tagged [webgl-globe]

The WebGL Globe is a library for visualizing data on a 3d globe in the browser

The WebGL Globe is an open platform for geographic data visualization created by the Google Data Arts Team.

39 questions
4
votes
2 answers

Web GL Globe not working locally

I've been trying to get the Web GL Globe ( http://code.google.com/p/webgl-globe ) working. I downloaded the source code from the Google Code page and unzipped all the files to a single folder. The May 13th release is the latest as of…
3
votes
1 answer

3D lines not rendering out of WebGL Globe (potential CSS conflict?)

I am trying to add a WebGL Globe visualization into a custom SaaS application (Splunk) and instead of getting lines out of the globe, I only see dots. I suspect the application has its own CSS or something that is overriding and hiding or…
hobbes3
  • 28,078
  • 24
  • 87
  • 116
2
votes
0 answers

react-globe.gl shows a distorted version of a geojson file

I did edit a geojson file and want to display it using react-globe.gl which is a 3D (threeJS) globe library. When I see the file on geojson.io it looks perfect: However, when it's displayed it looks like "Morocco" takes up the whole world…
Anas Latique
  • 357
  • 5
  • 13
2
votes
1 answer

Mirrored Raycaster on WebGl Globe (sphere)

For my thesis project I'm using the DataArts WebGL Globe for developing a webpage that will be used in an exhibition on a touch monitor. Being the monitor touch, I need to make the globe clickable in order to select the single country and to make a…
2
votes
0 answers

Change Color of WebGL Earth Globe?

I'm creating a website with an open-source globe found on the WebGL Earth site. The JavaScript code for this globe can be found here: http://www.webglearth.com/v2/api.js I want to alter the colors shown on the globe: the blue water, the tan land,…
AmalTyagi
  • 33
  • 5
2
votes
1 answer

WebGL Earth restart animation at current location

I'm using WebGL's Globe API and its rotating animation capability, but I want the user to be able to stop and restart the animation by double-clicking on the globe. Currently I have the following animation code that runs onload: function…
EliteKnight
  • 87
  • 1
  • 11
2
votes
1 answer

WebGL Globe - multiple datapoints from one vertex

I have been able to follow the source code and get my WebGL globe to work like the example. I am trying to customize this Globe. I have more than one metric that I need to show on the globe. e.g. Instead of showing just the whole population on the…
caramelslice
  • 359
  • 1
  • 4
  • 16
2
votes
1 answer

upside down ThreeJS webgl globe

I am working with the THREE.js WebGL globe and want to remove the constraint that prevents you from rotating the globe upside down: North pole being down and vice-versa. Here's my current experiment: https://mgiraldo.github.io/edda-globe I tried…
mga
  • 1,960
  • 1
  • 23
  • 31
2
votes
2 answers

Removing data (refreshing) WebGL Globe

I'm playing with the WebGL Globe (http://globe.chromeexperiments.com/) and would like to be able to "refresh" it with new data and then animate it to the new state. The examples provided in the library don't help because they load data series at…
CraexIt
  • 179
  • 3
  • 11
2
votes
2 answers

Selecting bars in the WebGL Globe (Google)

We all know http://www.chromeexperiments.com/globe/ WebGL experiments and I really got interested in what they did there. What they do there is they build bars on a globe based on GPS (JSON format) information. Pretty cool in itself. While waiting…
Karpo
  • 23
  • 2
1
vote
1 answer

Hide WebGL globe markers when behind

I'm in the process of building a WebGL Globe using OGL (a lightweight webgl library, way smaller than Three.js) and found a way to place markers on the globe, from lat/long coordinates. It works perfectly and it looks very nice but I am now…
flks
  • 610
  • 10
  • 28
1
vote
1 answer

Why objects overlap although they are far from each other in A-Frame

I have created some charts which are showing in front of another object (globe) as shown below: how objects look like in the A-Frame inspector but when I am using a camera and move in the scene the order of the objects change and the bar charts are…
Moh-Spark
  • 131
  • 7
1
vote
1 answer

three-globe SphereBufferGeometry/Mesh is offset on globe, but lines up if flat

I have a three-globe, and lat/long points perfectly go to the correct locations. The base (Earth) map is 1600x800. However, I also have a RainViewer map (storm radar) which is square (4096x4096). If I scale that to 1600x1600 and overlay the Earth…
Jim
  • 804
  • 6
  • 17
1
vote
1 answer

How to listen the load event of cesium terrain?

let map = new Cesium.Viewer('map-3d'); const terrainProvider = new Cesium.CesiumTerrainProvider({ url: 'http://59.48.1xxxx/xxx', }) map.terrainProvider = terrainProvider Here's the question: how to listen "terrainProvider" whether it begin…
Dreams
  • 23
  • 2
1
vote
1 answer

How to load kml file on cesium resium react components

I need to load a kml file on react component using resium-cesium. I have followed the exact procedure as shown in the official resium page as follows. https://resium.darwineducation.com/getting_started#loading-your-own-data I tried to load sample…
1
2 3