🗺 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-10-03 19:19:41 +02:00
scripts 🔨 json style merge helper script, merged line-width into bright style 2016-09-29 00:55:05 +02:00
src 🔳 accurate calculation of current viewport bbox 2016-10-03 19:19:41 +02:00
styles 🔳 accurate calculation of current viewport bbox 2016-10-03 19:19:41 +02:00
tiles 🐁 adding Renderer.featuresAt to return features for mouse positions 2016-09-29 20:03:53 +02:00
.gitignore 🎨 optimizing label/marker rendering 2016-09-29 01:24:00 +02:00
LICENSE Initial commit 2016-09-18 02:40:44 +02:00
main.js 🔳 accurate calculation of current viewport bbox 2016-10-03 19:19:41 +02:00
package.json 📐 using earcut for triangulation, implementing own Canvas 2016-09-27 13:57:59 +02:00
README.md ↔️ adding config for used input/output stream 2016-10-01 21:05:16 +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 explore your neighbourhood
  • 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

  • Termap

    • CLI support
      • global linking for npm install -g
      • startup parameters
        • Style
        • center position
        • POI filter?
        • VectorTile
        • MBTile
        • Tileserver
    • termap-server
      • telnet
      • ssh
    • Viewport
      • start with zoom level which shows full 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
    • handle console resize
    • mouse control
      • accurate mouse drag&drop with instant update
      • hover POIs/labels
      • hover maybe even polygons/-lines?
    • API
      • setCenter
      • setZoom
  • Styler

    • compile filters to function chains
    • support constants
  • 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 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.