From 043e271985b47af64ead078ffe90758bcdb75497 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Stra=C3=9Fburger?= Date: Mon, 3 Oct 2016 16:42:14 +0200 Subject: [PATCH] :mag: calculating minZoom based on terminal width, fit map on startup --- src/Termap.coffee | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Termap.coffee b/src/Termap.coffee index fa513a6..db9a9dd 100644 --- a/src/Termap.coffee +++ b/src/Termap.coffee @@ -37,6 +37,8 @@ module.exports = class Termap zoom: 0 view: [0, 0] + minZoom: null + constructor: (options) -> @config[key] = val for key, val of options @@ -69,12 +71,14 @@ module.exports = class Termap @_draw() @_resizeRenderer() - @zoom = 4-Math.log(4096/@width)/Math.LN2 + @zoom = @minZoom _resizeRenderer: (cb) -> @width = @config.output.columns >> 1 << 2 @height = @config.output.rows * 4 - 4 + @minZoom = 4-Math.log(4096/@width)/Math.LN2 + @renderer.setSize @width, @height _onClick: (event) -> @@ -168,7 +172,7 @@ module.exports = class Termap #features.map((f) -> JSON.stringify f.feature.properties).join(" - ") zoomBy: (step) -> - return @zoom = 0 if @zoom+step < 0 + return @zoom = @minZoom if @zoom+step < @minZoom before = @zoom @zoom += step