2016-11-06 22:13:50 +01:00
# MapSCII - The Whole World In Your Console.
2016-09-18 19:57:47 +02:00
2016-11-08 15:10:57 +01: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 19:57:47 +02:00
2017-04-27 13:17:25 +02:00
< a href = "https://asciinema.org/a/117813?autoplay=1" target = "_blank" > ![asciicast](https://cloud.githubusercontent.com/assets/1259904/25480718/497a64e2-2b4a-11e7-9cf0-ed52ee0b89c0.png)< / a >
2016-09-29 01:25:47 +02:00
2016-11-08 15:10:57 +01:00
## Features
2017-04-29 00:39:20 +02:00
* Use your mouse to drag and zoom in and out!
2016-11-08 15:10:57 +01:00
* 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
2016-11-06 14:15:30 +01:00
* 100% pure Coffee-/JavaScript! :sunglasses:
2016-09-18 19:57:47 +02:00
2016-11-05 22:02:51 +01:00
## How to install
2016-09-18 19:57:47 +02:00
2017-04-26 18:22:07 +02:00
If you haven't already got Node.js >= version 4.5, then [go get it ](http://nodejs.org/ ).
2016-09-19 09:19:31 +02:00
2016-11-05 22:02:51 +01:00
```
npm install -g mapscii
```
2016-09-19 09:19:31 +02:00
2016-11-05 22:02:51 +01: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 09:19:31 +02:00
2016-11-05 22:02:51 +01:00
## Running
2016-09-18 19:57:47 +02:00
2016-11-05 22:02:51 +01: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 23:02:21 +02:00
2016-09-18 19:57:47 +02:00
## Behind the scenes
### Libraries
2016-09-20 22:36:22 +02:00
#### Mastering the console
2016-09-27 14:53:47 +02:00
* [`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 )
2016-09-20 22:36:22 +02:00
* [`term-mouse` ](https://github.com/CoderPuppy/term-mouse ) for mouse handling
* [`keypress` ](https://github.com/TooTallNate/keypress ) for input handling
#### Discovering the map data
2016-11-03 02:41:08 +01:00
* [`vector-tile` ](https://github.com/mapbox/vector-tile-js ) for [VectorTile ](https://github.com/mapbox/vector-tile-spec/tree/master/2.1 ) parsing
2016-09-20 22:36:22 +02:00
* [`pbf` ](https://github.com/mapbox/pbf ) for [Protobuf ](https://developers.google.com/protocol-buffers/ ) decoding
2016-11-03 02:41:08 +01:00
* [`mbtiles` ](https://github.com/mapbox/node-mbtiles ) for [MBTiles ](https://github.com/mapbox/mbtiles-spec/blob/master/1.2/spec.md ) parsing
2016-09-20 22:36:22 +02:00
#### Juggling the vectors and numbers
2016-09-27 13:57:59 +02:00
* [`earcut` ](https://github.com/mapbox/earcut ) for polygon triangulation
2016-11-10 06:14:20 +01:00
* [`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
2016-11-03 02:41:08 +01:00
#### 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
2017-04-26 23:39:02 +02:00
* [`node-fetch` ](https://github.com/bitinn/node-fetch ) for HTTP requests
2016-11-04 01:42:23 +01:00
* [`userhome` ](https://github.com/shama/userhome ) to determine where to persist downloaded tiles
2016-09-18 02:44:31 +02:00
2016-09-18 21:15:21 +02:00
### TODOs
2016-11-03 02:41:08 +01:00
* MapSCII
2017-04-26 17:55:03 +02:00
* [ ] GeoJSON support via [geojson-vt ](https://github.com/mapbox/geojson-vt )
2016-09-30 15:19:00 +02:00
* [ ] CLI support
* [ ] startup parameters
2016-11-08 15:10:57 +01:00
* [ ] TileSource
2016-09-30 15:19:00 +02:00
* [ ] Style
* [ ] center position
2016-11-08 15:10:57 +01:00
* [ ] zoom
* [ ] demo mode?
2016-09-30 15:19:00 +02:00
* [ ] mouse control
2017-04-27 13:12:56 +02:00
* [ ] get hover lat/lng
2016-11-08 15:10:57 +01:00
* [ ] accurate mouse drag& drop with instant update
* [ ] hover POIs/labels
2016-09-30 15:19:00 +02:00
* [ ] hover maybe even polygons/-lines?
2016-11-03 02:41:08 +01:00
* [ ] zoom into mouse pos
2016-09-30 15:19:00 +02:00
* Styler
2017-04-26 17:59:59 +02:00
* [ ] respect zoom based style ranges
2016-09-30 15:19:00 +02:00
* Renderer
2017-04-27 13:12:56 +02:00
* [ ] download and process tiles in a different thread ([#3](https://github.com/rastapasta/mapscii/issues/3))
* [ ] optimize renderer for large areas ([#6](https://github.com/rastapasta/mapscii/issues/6))
2016-09-30 15:19:00 +02:00
* [ ] label drawing
2016-11-08 15:10:57 +01:00
* [ ] multi line label?
* TileSource
* [ ] implement single vector-tile handling
2016-09-30 15:19:00 +02:00
2016-09-19 09:19:31 +02:00
## License
2016-09-20 22:40:25 +02:00
#### The MIT License (MIT)
2017-04-26 17:59:59 +02:00
Copyright (c) 2017 Michael Straßburger
2016-09-19 09:19:31 +02:00
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.