无法使用Jvectormap渲染区域标签

时间:2015-03-03 15:21:21

标签: javascript jvectormap

我尝试按照这个简单的例子,将标签渲染到地图的区域。 http://jvectormap.com/examples/region-labels/

我把我的代码煮成了一个小小的小提琴://jsfiddle.net/V8dyd/189/,但我看不出我做错了什么。

http://jsfiddle.net/V8dyd/188/

$(function()
{
    var map = $('#map')
        .vectorMap(
        {
            map: 'us_aea_en',
            regionLabelStyle:
            {
                initial:
                {
                    fill: '#B90E32'
                },
                hover:
                {
                    fill: 'black'
                }
            },
            labels:
            {
                regions:
                {
                    render: function (code)
                    {
                        return "label";
                    }
                }
            }
        });
});

1 个答案:

答案 0 :(得分:2)

您使用的是旧版jVectorMap。从2.0版开始支持区域静态标签。这是一个updated fiddle

jquery-jvectormap-2.0.1.min.js