Showing Elevation Along a Path

by denis_miroshnikov_ts

HTML

<!DOCTYPE HTML>
<html>
<head>
<script src="http://www.webglearth.com/v3/api.js"></script>
<script>
  function initialize() {
    var options = { zoom: 3.0, position: [47.19537,8.524404] };
    var earth = new WE.map('earth_div', options); 
  }
</script>
</head>
<body onload="initialize()">
  <h1>WebGL Earth API/h1>
  <div id="earth_div" style="width:600px;height:400px;border:1px solid gray; padding:2px;"></div>
</body>
</html>