Skip to content

Commit

Permalink
Merge pull request #32 from DavidLevinsky/newdev
Browse files Browse the repository at this point in the history
Fixed rotation x direction + new demos
  • Loading branch information
davidmtech authored Apr 27, 2017
2 parents 186ea01 + b640c1a commit 0c393cb
Show file tree
Hide file tree
Showing 66 changed files with 1,103 additions and 2,150 deletions.
Empty file modified .babelrc
100644 → 100755
Empty file.
29 changes: 0 additions & 29 deletions .eslintrc

This file was deleted.

Empty file modified CODE_OF_CONDUCT.md
100644 → 100755
Empty file.
Empty file modified CONTRIBUTING.md
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified Makefile
100644 → 100755
Empty file.
6 changes: 3 additions & 3 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# VTS Browser JS

The VTS Browser JS is a *JavaScript WebGL 3D maps rendering engine* used and
developed by Melown SE (http://melown.com) in their products.
developed by Melown Technologies SE (http://melown.com) in their products.

The build system uses [webpack module bundler](http://webpack.github.io/).
Typical development cycle starts with `npm install` for installation of
Expand Down Expand Up @@ -61,7 +61,7 @@ The development server is serving local files at
node_modules/.bin/webpack-dev-server
```

And go to [http://localhost:8080/demos/browser/basic/](http://localhost:8080/demos/browser/basic/)
And go to [http://localhost:8080/demos/](http://localhost:8080/demos/)

## Makefile

Expand All @@ -76,4 +76,4 @@ See the `LICENSE` file for VTS Browser JS license, run `webpack` and check the

## How to contribute

Check the [CONTRIBUTING.md](CONTRIBUTING.md) file.
Check out the [CONTRIBUTING.md](CONTRIBUTING.md) file.
13 changes: 13 additions & 0 deletions demos/basic/demo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

/* Basic example with 3D map */

(function startDemo() {

// create map in the html div with id 'map-div'
// parameter 'map' sets path to the map which will be displayed
// you can create your own map on melown.com
var browser = vts.browser('map-div', {
map: 'https://cdn.melown.com/mario/store/melown2015/map-config/melown/VTS-Tutorial-map/mapConfig.json'
});

})();
6 changes: 3 additions & 3 deletions demos/browser/basic/index.html → demos/basic/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<html>
<head>
<title>VTS Browser - Basic</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" type="text/css" href="../../../build/vts-browser.css" />
<script type="text/javascript" src="../../../build/vts-browser.js"></script>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="../../build/vts-browser.css" />
<script type="text/javascript" src="../../build/vts-browser.js"></script>
</head>

<body style = "padding: 0; margin: 0;">
Expand Down
6 changes: 0 additions & 6 deletions demos/browser/basic/demo.js

This file was deleted.

43 changes: 0 additions & 43 deletions demos/browser/flights/demo.js

This file was deleted.

85 changes: 0 additions & 85 deletions demos/browser/hit-surface/demo.js

This file was deleted.

79 changes: 0 additions & 79 deletions demos/browser/lines-and-images/demo.js

This file was deleted.

46 changes: 0 additions & 46 deletions demos/browser/view-switch/demo.js

This file was deleted.

Loading

0 comments on commit 0c393cb

Please sign in to comment.