当我从外部链接中选择区域时,我需要显示HTML标签。
我可以使用此选择区域:map.setSelectedRegions([region])
但这不会显示区域标签。
任何人都可以帮我这个吗?我可以使用HTML内容生成此标签吗?
答案 0 :(得分:0)
试试这个
onRegionClick:function(event, code, region){
switch(code){
case"your_state":
window.location.replace("http://your_link_address/");
break;
case"your_state":
window.location.replace("http://your_link_address/");
break; }
}
将“your_state”更改为您所在的州/地区。将“your_link_address”更改为您的地址。