我正在使用这个很棒的插件。但是缩放停止有问题
panZoom = svgPanZoom('#svg3336', {
zoomEnabled: true,
controlIconsEnabled: false,
fit: true,
center: true,
panEnabled: true,
zoomScaleSensitivity: 2,
beforeZoom: function(){
if(zoomed)
{
return false;
}
else
{
zoomed = true;
}
},
mouseWheelZoomEnabled: false,
minZoom: 0.1
});
所以在return false
我的地图上消失了。我检查了矩阵数据,发现坐标有很大的负数
transform="matrix(5.630453109741211,0,0,5.630453109741211,-2396.02587890625,-7678.998046875)"
如何解决这个问题?