MapSCII - The Whole World In Your Console.
 
 
Go to file
Michael Straßburger 7ed86ceed4 🏃 converting colors on Tile load, not on every feature draw 2016-11-07 02:49:07 +01:00
bin ➡️ global linking of 'mapscii' 2016-11-03 23:13:44 +01:00
src 🏃 converting colors on Tile load, not on every feature draw 2016-11-07 02:49:07 +01:00
styles 🏃 converting colors on Tile load, not on every feature draw 2016-11-07 02:49:07 +01:00
.gitignore 🛀 cleaning up, removing obsolete dev tiles and scripts 2016-11-05 18:28:12 +01:00
LICENSE Initial commit 2016-09-18 02:40:44 +02:00
README.md 🏃 converting colors on Tile load, not on every feature draw 2016-11-07 02:49:07 +01:00
main.js 👷 cleanup, testing tiles with an extent of 512, config params 2016-11-06 14:15:30 +01:00
package.json 🏃 removing matrix translations, combinding reduce/move/scale in one loop 2016-11-06 17:14:38 +01:00

README.md

MapSCII - The Whole World In Your Console.

MapSCII is a node.js based Vector Tile to Braille renderer for xterm-compatible terminals.

  • Discover the globe or zoom in to explore your neighbourhood
  • See Point-of-Interest around any given location
  • Highly customizable layer styling with Mapbox Styles
  • Compatible with Linux and OSX terminals, Windows support via PuTTY
  • Connect to any vector tile server - or just use my custom OpenStreetMap based one
  • Work offline and discover local VectorTile/MBTiles
  • 100% pure Coffee-/JavaScript! 😎

How to install

If you haven't already got Node.js >= version 4, then go get it.

npm install -g mapscii

If you're on OSX, or get an error about file permissions, you may need to do sudo npm install -g mapscii

Running

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.

Behind the scenes

Libraries

Mastering the console

Discovering the map data

Juggling the vectors and numbers

Handling the flow

TODOs

  • MapSCII

    • CLI support
      • global linking for npm install -g
      • startup parameters
        • TileSource
          • VectorTile
          • MBTile
          • Tileserver
        • Style
        • center position
        • POI filter?
    • Viewport
      • start with zoom level which shows full
        • world
        • vector tile
      • boundary based on current zoom & size
      • determain tiles to show
      • zoom while keeping center
      • calculate tile areas
      • center based on mercator
      • handle console resize
    • mapscii-server
      • telnet
      • ssh
    • handle console resize
    • mouse control
      • accurate mouse drag&drop with instant update
      • hover POIs/labels
      • hover maybe even polygons/-lines?
      • get hover lat/lng
      • zoom into mouse pos
    • API
      • setCenter
      • setZoom
  • Styler

    • compile filters to function chains
    • support constants
    • respect minzoom
  • Renderer

    • position tiles accordingly

    • line drawing

      • support for stroke width
      • support for dashed/dotted lines?
    • feature selection for priority rerendering (roads -> warter -> roads:bridges)

    • label drawing

      • support for point labels
      • dynamic decluttering of labels
      • centering text labels
      • clipping fix when x<0 after repositioning
      • multi line label
      • label margin to avoid POI overlap?
      • translatable raster fonts
    • filled polygons

      • convert polygons to triangles
      • use triangulation for filling
      • respect fill/line style file based setting
  • Tile

    • directly throw away features that aren't covered by any style
    • TileSource class (abstracting URL, mbtiles, single vector tile source)
    • tile request system
      • from single vector-tile
      • from local mbtiles
      • from remote url
        • permanent caching of received files

License

The MIT License (MIT)

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.