feat(minimap): add scaling

This commit is contained in:
moklick
2019-08-05 17:29:26 +02:00
parent f61f89410f
commit 34a0df46f9
6 changed files with 13 additions and 11 deletions
+3 -2
View File
@@ -33631,7 +33631,8 @@
width: 200
};
var index = (function (_ref) {
var style = _ref.style,
var _ref$style = _ref.style,
style = _ref$style === void 0 ? {} : _ref$style,
className = _ref.className,
_ref$bgColor = _ref.bgColor,
bgColor = _ref$bgColor === void 0 ? '#f8f8f8' : _ref$bgColor,
@@ -33668,7 +33669,7 @@
var x = pos.x * state.transform[2] + transformX;
var y = pos.y * state.transform[2] + transformY;
ctx.fillStyle = nodeColor;
ctx.fillRect(x * scaleFactor, y * scaleFactor, n.__rg.width * scaleFactor, n.__rg.height * scaleFactor);
ctx.fillRect(x * scaleFactor, y * scaleFactor, n.__rg.width * scaleFactor * state.transform[2], n.__rg.height * scaleFactor * state.transform[2]);
});
}
}, [nodePositions, state.transform, height]);