Skip to content

Commit 2a971bd

Browse files
committed
Merge branch 'release/0.1.5.alpha'
2 parents ce1b2a2 + d69a6cf commit 2a971bd

File tree

6 files changed

+268
-0
lines changed

6 files changed

+268
-0
lines changed

README.md

1.3 KB

Breath of the Wild WebGL Map

Getting Started

  • Download the latest release of the map files
  • Install Node.js
    • Current or LTS
  • Using a command line, verify install of Node.js and npm
> node -v
v9.3.0

> npm -v
5.5.1
  • Open command line in botw-map-3d-x.x.x directory and install dependancies
botw-map-3d-0.1.5> npm install
added 23 packages in 1.772s
  • Serve the files using Node.js
botw-map-3d-0.1.5> node server.js
Server running on http://localhost:8080/

Check the development branch for the up-to-date map!

package-lock.json

Lines changed: 163 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
{
22
"dependencies": {
3+
"connect": "^3.6.5",
34
"imageutils": "0.0.6",
5+
"serve-static": "^1.13.1",
46
"three": "^0.88.0"
7+
},
8+
"license": "MIT",
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/zephenryus/botw-map-3d.git"
512
}
613
}

server.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
var connect = require('connect');
2+
var serveStatic = require('serve-static');
3+
connect().use(serveStatic(__dirname)).listen(8080, function(){
4+
console.log('Server running on http://localhost:8080/...');
5+
});

style.css

Lines changed: 86 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

style.css.map

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)