diff --git a/examples/WebsocketGateway/content/index.html b/examples/WebsocketGateway/content/index.html index ada6e4ac1bbcf5d10375a9bf28a9a7c067428013..2bbc8a64448b90156685adfea1a0a377bf024bd7 100644 --- a/examples/WebsocketGateway/content/index.html +++ b/examples/WebsocketGateway/content/index.html @@ -27,13 +27,13 @@ to lat/lon/alt. <!-- Note: this is using a Google Maps API key linked to me, DMcG. For serious use, go to --> <!-- https://code.google.com/apis/console and get your own api key. Using this key is fine for demo purposes. --> - <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAZihiWY3ho8hHfkhu9_6mcMSkxSvpjbTI&sensor=true"></script> + <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAZihiWY3ho8hHfkhu9_6mcMSkxSvpjbTI&sensor=true"></script> <!-- Binary DIS implementation, also coordinate system conversion utilities --> - <script type="text/javascript" src="scripts/dis.js"></script> - <script type="text/javascript" src="scripts/DisAppearance.js"></script> + <script src="scripts/dis.js"></script> + <script src="scripts/DisAppearance.js"></script> - <script type="text/javascript" src="scripts/app/index.js"></script> + <script src="scripts/app/index.js"></script> </head> <body> <div id="map-canvas"></div> diff --git a/examples/WebsocketGateway/logs/jetty-2021_07_01.request.log b/examples/WebsocketGateway/logs/jetty-2021_07_01.request.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/examples/WebsocketGateway/nbproject/project.properties b/examples/WebsocketGateway/nbproject/project.properties index 1e6e3d0b43b1fe9479219e2097cb07bb2126778e..e9fc3e3c4ddc8648f7ee5ad7a2a59efb92217d0b 100644 --- a/examples/WebsocketGateway/nbproject/project.properties +++ b/examples/WebsocketGateway/nbproject/project.properties @@ -117,6 +117,7 @@ meta.inf.dir=${src.dir}/META-INF mkdist.disabled=false no.dependencies=true platform.active=default_platform +project.license=MOVES run.classpath=\ ${javac.classpath}:\ ${build.classes.dir}:\ diff --git a/examples/src/OpenDis7Examples/ExampleSimulationProgram.java b/examples/src/OpenDis7Examples/ExampleSimulationProgram.java index 1c3c9fca032c2a78456238ee25fdfcc50b78f0bc..a9d2b086d0d47eeaf4843525755546a1eb3b0207 100644 --- a/examples/src/OpenDis7Examples/ExampleSimulationProgram.java +++ b/examples/src/OpenDis7Examples/ExampleSimulationProgram.java @@ -97,7 +97,7 @@ public class ExampleSimulationProgram // Where is my entity? Insert changes in position; this sample only changes X position. entityStatePdu_1.getEntityLocation().setX(entityStatePdu_1.getEntityLocation().getX() + 1.0); // 1m per timestep - // decide whether to fire, and then update the firePdu. Hmmm, you might want a target to shoort at! + // decide whether to fire, and then update the firePdu. Hmmm, you might want a target to shoot at! // etc. etc. your code goes here for your simulation of interest