0

我有以下代码:

onRegionClick: function (event, code) {
    // search for the state based on the code of the region clicked.
    for (var r = 0; r < mapData.stateList.length; r++) {
        if (mapData.stateList[r].state == code) {
            if (mapData.stateList[r].markets.length == 1) {
                // state only has one region - navigate to it.
                window.location = mapData.stateList[r].markets[0].url;
                break;
            } else {
                // state has multiple regions - zoom into it on the map and show the markets.
                $("#map-reset").show();
                $('.map-label').text('Click a city below to view communities in that area.');
                $('body').addClass('map-zoomed');
                showState(code);
                break;
            }
        }
    }
}

如何向所选区域添加课程?根据通过 Google 和 Stack Overflow 发现的类似问题,我尝试了几条路线,但均无济于事。任何帮助是极大的赞赏。

4

1 回答 1

0

检查我的修复方法:

http://pastebin.com/s5GwcEMy

我添加了这个方法“setSelectedRegionStyle”

您需要参考地图:

map = $("#world-map-gdp").vectorMap('get', 'mapObject');

设置自定义颜色后:

map.setSelectedRegionStyle('IT', '#b2c9cb'); 

在我的情况下只需要更改颜色,但您可以使用萤火虫检查其他选项。

这是添加的方法(在过去的bin中检查)

setSelectedRegionStyle : function (r,c) {
return this.regions[r].element.style.selected.fill = c;
},
于 2013-03-12T14:04:40.133 回答