echarts 设置最大和最小的缩放范围

 geo: {
        map: 'world',
        silent: true,
        label: {
            emphasis: {
                show: false,
                areaColor: '#eee'
            }
        },
        itemStyle: {
            normal: {
                borderWidth: 0.2,
                borderColor: '#404a59'
            }
        },
        left: '6%',
        top: 40,
        bottom: '54%',
        right: '14%',
        roam: true,
        scaleLimit:{                       //所属组件的z分层,z值小的图形会被z值大的图形覆盖
         min:0.5,                          //最小的缩放值
         max:3,                            //最大的缩放值
      }
    },

 

你可能感兴趣的:(echarts 设置最大和最小的缩放范围)