WebGL Earth Examples
Leaflet compatible API (replace "L." with "WE.")
View example on a separate pageSimple example.
WebGL Earth is a 3D globe for web and mobile (Android, iOS) devices. It is completely free and open-source software.
Source code
<!DOCTYPE HTML> <html> <head> <script src="https://www.webglearth.com/v2/api.js"></script> <script> function initialize() { var earth = new WE.map('earth_div'); WE.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',{ attribution: '© OpenStreetMap contributors' }).addTo(earth); } </script> <style> html, body{padding: 0; margin: 0;} #earth_div{top: 0; right: 0; bottom: 0; left: 0; position: absolute !important;} </style> <title>WebGL Earth API: Hello World example</title> <meta name="description" content="This is a basic tutorial for showing a map on a 3D globe. It could be used on web and Android & iOS mobile devices."> </head> <body onload="initialize()"> <div id="earth_div"></div> </body> </html>