🗺 MapSCII is a Braille & ASCII world map renderer for your console - enter => telnet mapscii.me <= on Mac (brew install telnet) and Linux, connect with PuTTY on Windows
Go to file
2016-09-21 19:47:20 +02:00
scripts refactoring into separate modules, extending Canvas 2016-09-21 14:57:43 +02:00
src 🔨 refactoring and becoming more classy 2016-09-21 19:47:20 +02:00
styles 🔨 refactoring and becoming more classy 2016-09-21 19:47:20 +02:00
tiles 🌲 using r-tree spatial indexing to declutter the labels 2016-09-20 20:52:49 +02:00
.gitignore 🔥 initial commit! 2016-09-18 02:44:31 +02:00
LICENSE Initial commit 2016-09-18 02:40:44 +02:00
package.json 🔍 adapting label decluttering to centered labels 2016-09-21 17:35:16 +02:00
README.md 🔍 adapting label decluttering to centered labels 2016-09-21 17:35:16 +02:00
termap.coffee 🔨 refactoring and becoming more classy 2016-09-21 19:47:20 +02:00

termap - Terminal Map Viewer

No web browser around? No worries - discover the planet in your console!

  • Use your mouse or keys to navigate
  • Discover the globe or zoom in to learn about house numbers
  • See Point-of-Interest around any given location
  • Use an online map server or work offline with VectorTile/MBTiles
  • Highly customizable styling (colors, feature visibility, ...)
  • Compatible with Linux and OS X (Windows to be tested)
  • 99% pure Coffee-/JavaScript! 😎

How to get it?

  • Make sure to have at least node.js version 4 installed

  • Install termap with

    npm install -g termap

How to use it?

Basic usage

  • Start termap with

    termap

Behind the scenes

Libraries

Mastering the console

Discovering the map data

Juggling the vectors and numbers

TODOs

  • cli linking
  • mapping of view to tiles to show
  • line drawing
    • support for stroke width
  • 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
    • implement fillTriangle into drawille-canvas-blessed-contrib
    • respect fill/line style file based setting
  • lat/lng-center + zoom based viewport
    • bbox awareness
    • zoom -> scale calculation
  • TileSource class (abstracting URL, mbtiles, single vector tile source)
  • tile request system
    • from local mbtiles
    • from remote url
      • permanent caching of received files
  • zoom while keeping center
  • API
    • setCenter
    • setZoom
  • start with zoom level which shows full vector tile
  • accurate mouse drag&drop
  • handle console resize
  • styling
    • abstracted MapBox style JSON support
  • turn this into a blessed-contrib widget

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.