Amchart使用滚动动态加载地图

时间:2016-11-29 19:40:40

标签: jquery maps amcharts

有没有人知道如何添加

AmCharts.makeChart(“mapdiv”,{“ mouseWheelZoomEnabled ”:true });

这个例子:

jsfiddle.net/amcharts/V7Xq8/

请帮助我绝望

1 个答案:

答案 0 :(得分:0)

documentation mouseWheelZoomEnabled 中所述,属性是一个属性,因此您可以在创建对象后将其设置为true(即:map = new AmCharts.AmMap();)。

所以更新的代码是:

AmCharts.ready(function() {
map = new AmCharts.AmMap();
map.mouseWheelZoomEnabled = true;  // add this line
map.pathToImages = "http://www.ammap.com/lib/images/";

更新的jsfiddle here