From fd22f9f11ce1cccadf2f49d01816707fa62fa9ab Mon Sep 17 00:00:00 2001 From: Ken Kahn Date: Sat, 19 Oct 2024 10:37:19 +0200 Subject: [PATCH] Restored globe texture with better URL --- apps/etymology map game.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/etymology map game.html b/apps/etymology map game.html index 01c84fe..27279ad 100644 --- a/apps/etymology map game.html +++ b/apps/etymology map game.html @@ -338,7 +338,7 @@

Etymology Globe Game

// Initialize the globe const myGlobe = Globe() .backgroundColor('#111') - // .globeImageUrl('//unpkg.com/three-globe/example/img/earth-blue-marble.jpg') // Optional built-in texture + .globeImageUrl('https://unpkg.com/three-globe/example/img/earth-blue-marble.jpg') // Optional built-in texture .pointOfView({ lat: 20, lng: 0, altitude: 2 }); const globeContainer = document.getElementById('globeViz');