mapscii/README.md

111 wiersze
5.0 KiB
Markdown
Czysty Zwykły widok Historia

# MapSCII - The Whole World In Your Console.
2016-09-18 17:57:47 +00:00
A node.js based [Vector Tile](http://wiki.openstreetmap.org/wiki/Vector_tiles) to [Braille](http://www.fileformat.info/info/unicode/block/braille_patterns/utf8test.htm) and [ASCII](https://de.wikipedia.org/wiki/American_Standard_Code_for_Information_Interchange) renderer for [xterm](https://en.wikipedia.org/wiki/Xterm)-compatible terminals.
2016-09-18 17:57:47 +00:00
<img src="docs/berlin_cbase.gif" width="100%" />
2016-09-28 23:25:47 +00:00
## Features
* Use your mouse to drag and zoom in and out
* Discover Point-of-Interests around any given location
* Highly customizable layer styling with [Mapbox Styles](https://www.mapbox.com/mapbox-gl-style-spec/) support
* Connect to any public or private vector tile server
* Or just use the supplied and optimized [OpenStreetMap](https://en.wikipedia.org/wiki/OpenStreetMap) based one
* Work offline and discover local [VectorTile](https://github.com/mapbox/vector-tile-spec)/[MBTiles](https://github.com/mapbox/mbtiles-spec)
* Compatible with most Linux and OSX terminals
* Highly optimizied algorithms for a smooth experience
* 100% pure Coffee-/JavaScript! :sunglasses:
2016-09-18 17:57:47 +00:00
## How to install
2016-09-18 17:57:47 +00:00
If you haven't already got Node.js >= version 4, then [go get it](http://nodejs.org/).
2016-09-19 07:19:31 +00:00
```
npm install -g mapscii
```
2016-09-19 07:19:31 +00:00
If you're on OSX, or get an error about file permissions, you may need to do ```sudo npm install -g mapscii```
2016-09-19 07:19:31 +00:00
## Running
2016-09-18 17:57:47 +00:00
This is pretty simple too.
```
mapscii
```
## Keyboard shortcuts
* Arrows **up**, **down**, **left**, **right** to scroll around
* Press **a** or **z** to zoom in and out
* Press **q** to quit
## Mouse control
If your terminal supports mouse events you can drag the map and use your scroll wheel to zoom in and out.
2016-09-20 21:02:21 +00:00
2016-09-18 17:57:47 +00:00
## Behind the scenes
### Libraries
#### Mastering the console
* [`x256`](https://github.com/substack/node-x256) for converting RGB values to closest xterm-256 [color code](https://en.wikipedia.org/wiki/File:Xterm_256color_chart.svg)
* [`term-mouse`](https://github.com/CoderPuppy/term-mouse) for mouse handling
* [`keypress`](https://github.com/TooTallNate/keypress) for input handling
#### Discovering the map data
* [`vector-tile`](https://github.com/mapbox/vector-tile-js) for [VectorTile](https://github.com/mapbox/vector-tile-spec/tree/master/2.1) parsing
* [`pbf`](https://github.com/mapbox/pbf) for [Protobuf](https://developers.google.com/protocol-buffers/) decoding
* [`mbtiles`](https://github.com/mapbox/node-mbtiles) for [MBTiles](https://github.com/mapbox/mbtiles-spec/blob/master/1.2/spec.md) parsing
#### Juggling the vectors and numbers
* [`earcut`](https://github.com/mapbox/earcut) for polygon triangulation
* [`rbush`](https://github.com/mourner/rbush) for 2D spatial indexing of geo and label data
* [`breseham`](https://github.com/madbence/node-bresenham) for line point calculations
* [`simplify-js`](https://github.com/mourner/simplify-js) for polyline simplifications
#### Handling the flow
* [`bluebird`](https://github.com/petkaantonov/bluebird) for all the asynchronous [Promise](https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Promise) magic
* [`request-promise`](https://github.com/request/request-promise) for promisified HTTP request handling
* [`userhome`](https://github.com/shama/userhome) to determine where to persist downloaded tiles
2016-09-18 00:44:31 +00:00
### TODOs
* MapSCII
* [ ] GeoJSON support via [geojson-vt](https://github.com/mapbox/geojson-vt)
2016-09-30 13:19:00 +00:00
* [ ] CLI support
* [ ] startup parameters
* [ ] TileSource
2016-09-30 13:19:00 +00:00
* [ ] Style
* [ ] center position
* [ ] zoom
* [ ] demo mode?
2016-09-30 13:19:00 +00:00
* [ ] mouse control
* [ ] accurate mouse drag&drop with instant update
* [ ] hover POIs/labels
2016-09-30 13:19:00 +00:00
* [ ] hover maybe even polygons/-lines?
* [ ] get hover lat/lng
* [ ] zoom into mouse pos
2016-09-30 13:19:00 +00:00
* Styler
* [ ] respect zoom based style stops
2016-09-30 13:19:00 +00:00
* Renderer
* [ ] polygons
* [ ] holes
* [ ] use rbush?
2016-09-30 13:19:00 +00:00
* [ ] label drawing
* [ ] multi line label?
* TileSource
* [ ] implement single vector-tile handling
2016-09-30 13:19:00 +00:00
2016-09-19 07:19:31 +00:00
## License
2016-09-20 20:40:25 +00:00
#### The MIT License (MIT)
2016-09-19 07:19:31 +00:00
Copyright (c) 2016 Michael Straßburger
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.