https://github.com/mizy/pigeongl
3d map renderer
https://github.com/mizy/pigeongl
Last synced: 5 months ago
JSON representation
3d map renderer
- Host: GitHub
- URL: https://github.com/mizy/pigeongl
- Owner: mizy
- Created: 2018-03-29T08:01:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-13T17:55:15.000Z (almost 3 years ago)
- Last Synced: 2025-05-13T00:47:53.225Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 33 MB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [pigeon-gl](https://mizy.github.io/pigeonGL)
+ 3d map with three.js
+ used in auto-drive simulation systerm
+ map control# demo
[basic](https://mizy.github.io/pigeonGL/examples/basic/index.html)basic

# api
[documention](https://mizy.github.io/pigeonGL/doc/)
```
import PigeonGL from 'pigeon-gl';var map = new PigeonGL.Map({
container:document.getElementById("map"),
center:[0,0],
width:window.innerWidth,
height:window.innerHeight,
pitch:0,
rotation:0,
zoom:21
})//add models
map.world.add(obj)
```# build
```
npm run build
```# doc
```
npm run doc
```