AmMap addLabel不起作用

时间:2016-07-27 08:55:54

标签: jquery amcharts ammap

我使用下面的代码在没有数据时渲染地图。数据到来时地图工作正常。我尝试了几种添加标签的方法,但它没有用。最后两行显示了我到目前为止尝试添加标签

// build map
AmCharts.ready(function () {
    AmCharts.theme = AmCharts.themes.dark;
    window.map = new AmCharts.AmMap();

    window.map.areasSettings = {
        unlistedAreasColor: "#000000",
        unlistedAreasAlpha: 0.1
    };
    window.map.imagesSettings.balloonText = "<span style='font-size:14px;'><b>[[title]]</b>: [[value]]</span>";

    var dataProvider = {
        mapVar: AmCharts.maps.worldLow,
        images: []
    }

    // create circle for each country


    // it's better to use circle square to show difference between values, not a radius
    var maxSquare = maxBulletSize * maxBulletSize * 2 * Math.PI;
    var minSquare = minBulletSize * minBulletSize * 2 * Math.PI;

    // create circle for each country
    for (var i = 0; i < mapData.length; i++) {
        var dataItem = mapData[i];
        var value = dataItem.value;
        // calculate size of a bubble
        var square = (value - min) / (max - min) * (maxSquare - minSquare) + minSquare;
        if (square < minSquare) {
            square = minSquare;
        }
        var size = Math.sqrt(square / (Math.PI * 2));
        var id = dataItem.code;

        dataProvider.images.push({
            type: "circle",
            width: size,
            height: size,
            color: "#ff9a00",
            longitude: latlong[id].longitude,
            latitude: latlong[id].latitude,
            title: dataItem.name,
            value: value
        });
    }

    window.map.dataProvider = dataProvider;
    window.map.export = {
        enabled: true
    }
    window.map.projection = "winkel3";
    window.map.write("dash_chart_world");
});

// add label
AmCharts.AmMap.mapdiv.addLabel(0, '50%', 'You don\'t have any sales yet', 'center');

// set opacity of the chart div
AmCharts.AmMap.mapdiv.style.opacity = 0.5;

感谢任何帮助。 感谢

1 个答案:

答案 0 :(得分:1)

你错过的是,只要图表发生某些事情,就需要调用该函数。当您的需求与数据耦合时,我们可以为dataUpdated添加一个事件监听器,并检查图像数组是否为空:

map.addListener("dataUpdated", function() {
    if (map.dataProvider.images.length == 0) {
        // add label
        map.addLabel(0, '50%', 'You don\'t have any sales yet', 'center');

        // set opacity of the chart div
        map.mapContainer.node.style.opacity = 0.1;
  }
});

关于我做的其他改变:

  • 方法addLabel属于AmChart对象而不属于 AmCharts.AmMap.mapdiv。 (那甚至不存在。)
  • 更改包含整个地图的div的不透明度(可以使用map.div [AmChart.div]获取)会改变添加标签的不透明度。如果您只想更改地图本身的不透明度,可以对map.mapContainer.node元素进行更改。 (这是持有地图投影的svg的一部分。)

我准备了一个小demo,您可以在其中看到它使用动态数据。