Skip to content

Commit

Permalink
all
Browse files Browse the repository at this point in the history
  • Loading branch information
Goinging committed Nov 27, 2023
1 parent 4114114 commit 2b90977
Show file tree
Hide file tree
Showing 6 changed files with 121 additions and 0 deletions.
12 changes: 12 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/* Stylesheet by Ian H Freel, 2023 */
html,
body {
overflow: hidden;
margin: 0px;
padding: 0px;
height: 100%;
}
#cesiumContainer {
height: 100%;
}

Empty file added data/readme.md
Empty file.
Empty file added img/readme.md
Empty file.
89 changes: 89 additions & 0 deletions index.html

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions js/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/* Stylesheet by Ian H Freel, 2023 */
// server.js
// where your node app starts

// init project
const express = require('express');
const app = express();

// http://expressjs.com/en/starter/static-files.html
app.use(express.static('.'));

// http://expressjs.com/en/starter/basic-routing.html
app.get('/', function(request, response) {
response.sendFile(__dirname + '/index.html');
});

// listen for requests :)
const listener = app.listen(process.env.PORT, function() {
console.log('Your app is listening on port ' + listener.address().port);
});
Empty file added lib/readme.md
Empty file.

0 comments on commit 2b90977

Please sign in to comment.