Skip to content

Commit 8343193

Browse files
authored
Fix/release candidate fixes (NASAWorldWind#829)
* Added charset tag and note on 3rd party libraries to HTML files that lacked them * Commented out a debugging console.log message that returns the GetCapabilities document * Updated README for v0.10.0 RC. Updated npm packages. * 0.10.0 * Corrected typo.
1 parent 9e68520 commit 8343193

18 files changed

+38
-15
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
# Web WorldWind
44

55
## NASA Renews Commitment to WorldWind
6-
WorldWind has received renewed commitment from NASA for continued development and support. NASA will continue to release updates to the WorldWind SDKs, and will continue to make the WorldWind Servers accessible for all Users. We plan to make an announcement soon regarding a path forward for improved support of the WorldWind User & Developer communities.
6+
WorldWind has received renewed commitment from NASA for continued development and support. NASA will continue to release updates
7+
to the WorldWind SDKs, and will continue to make the WorldWind Servers accessible for all Users.
78

89
If you have questions and/or concerns, please feel free to email at:
910

@@ -17,19 +18,19 @@ collection for shapes for displaying and interacting with geographic or geo-loca
1718
modern web browser. High-resolution terrain and imagery is retrieved from remote servers automatically as needed, while
1819
enabling developers to include their own custom terrain and imagery.
1920

20-
- [worldwind.arc.nasa.gov](https://worldwind.arc.nasa.gov) has setup instructions, developers guides, API documentation and more
21-
- [Forum](https://forum.worldwindcentral.com) provides help from the WorldWind community
22-
- [WebStorm](https://www.jetbrains.com/webstorm) is used by the NASA WorldWind development team
21+
- [worldwind.arc.nasa.gov](https://worldwind.arc.nasa.gov) has setup instructions, developers guides, API documentation and more.
2322

2423
## Get Started
2524

2625
The Web WorldWind [Developer's Guide](https://worldwind.arc.nasa.gov/web) has a complete description of Web WorldWind's
27-
functionality. You'll also find there links to many Web WorldWind resources, including a user guide. The latest
28-
Web WorldWind release provides many simple examples showing how to use all of Web WorldWind's functionality.
26+
functionality. You'll also find there links to many Web WorldWind resources, including a user guide. For novices on WorldWind,
27+
A [Get Started](https://worldwind.arc.nasa.gov/web/get-started/) tutorial is the place to go. The latest Web WorldWind release
28+
provides many simple [examples](https://github.com/NASAWorldWind/WebWorldWind/tree/develop/examples) showing how to use all of
29+
Web WorldWind's functionality.
2930

3031
## Building
3132

32-
[Install NodeJS](https://nodejs.org). The build is known to work with Node.js 10.15.3 LTS and 11.12.0.
33+
[Install NodeJS](https://nodejs.org). The build is known to work with Node.js 12.18.0 LTS.
3334

3435
- `npm install` downloads WorldWind's dependencies
3536

apps/Explorer.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
<!--NOTE: Most Web WorldWind examples use jquery, Bootstrap and requirejs but those technologies are NOT-->
5+
<!--required by Web WorldWind. See SimplestExample.html for an example of using Web WorldWind without them.-->
46
<meta charset="utf-8">
57
<title>Explorer</title>
68
<meta name="viewport" content="width=device-width, initial-scale=1">

apps/NEO.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
<!--NOTE: Most Web WorldWind examples use jquery, Bootstrap and requirejs but those technologies are NOT-->
5+
<!--required by Web WorldWind. See SimplestExample.html for an example of using Web WorldWind without them.-->
46
<meta charset="utf-8">
57
<title>NASA NEO Viewer</title>
68
<meta name="viewport" content="width=device-width, initial-scale=1">

apps/SentinelWMTS.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
<!--NOTE: Most Web WorldWind examples use jquery, Bootstrap and requirejs but those technologies are NOT-->
5+
<!--required by Web WorldWind. See SimplestExample.html for an example of using Web WorldWind without them.-->
46
<meta charset="utf-8">
57
<title>WorldWind Sentinel WMTS</title>
68
<meta name="viewport" content="width=device-width, initial-scale=1">

apps/SentinelWMTS/SentinelWMTS.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ define(['../../src/WorldWind',
4242

4343
$.get(wmtsServer + '?REQUEST=GetCapabilities&SERVICE=WMTS', function (response) {
4444
wmtsCapabilities = new WorldWind.WmtsCapabilities(response);
45-
console.log(wmtsCapabilities);
45+
// console.log(wmtsCapabilities);
4646
}).done(function () {
4747
// Internal layers
4848
var layers = [

apps/SubSurface.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
<!--NOTE: Most Web WorldWind examples use jquery, Bootstrap and requirejs but those technologies are NOT-->
5+
<!--required by Web WorldWind. See SimplestExample.html for an example of using Web WorldWind without them.-->
46
<meta charset="utf-8">
57
<title>WorldWind Subsurface</title>
68
<meta name="viewport" content="width=device-width, initial-scale=1">

apps/USGSSlabs.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
<!--NOTE: Most Web WorldWind examples use jquery, Bootstrap and requirejs but those technologies are NOT-->
5+
<!--required by Web WorldWind. See SimplestExample.html for an example of using Web WorldWind without them.-->
46
<meta charset="utf-8">
57
<title>WorldWind USGS Slabs</title>
68
<meta name="viewport" content="width=device-width, initial-scale=1">

apps/USGSWells.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
<!--NOTE: Most Web WorldWind examples use jquery, Bootstrap and requirejs but those technologies are NOT-->
5+
<!--required by Web WorldWind. See SimplestExample.html for an example of using Web WorldWind without them.-->
46
<meta charset="utf-8">
57
<title>WorldWind USGS Wells</title>
68
<meta name="viewport" content="width=device-width, initial-scale=1">

examples/Annotations.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
<!--NOTE: Most Web WorldWind examples use jquery, Bootstrap and requirejs but those technologies are NOT-->
5+
<!--required by Web WorldWind. See SimplestExample.html for an example of using Web WorldWind without them.-->
46
<meta charset="utf-8">
57
<meta name="viewport" content="width=device-width, initial-scale=1">
68
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">

examples/Collada.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
<!--required by Web WorldWind. See SimplestExample.html for an example of using Web WorldWind without them.-->
66
<meta charset="utf-8">
77
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
98
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
10-
119
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
1210
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
1311
<script data-main="Collada" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.17/require.min.js"></script>

0 commit comments

Comments
 (0)