Hi,
I am using the below given java script to load europe map and wanted to make few countries click-able and provided the url using 'link' attribute. But this code doesn't seem to work those links are not working. I am using the trial version of fusion maps for development.
<script type="text/javascript">
<!--
// fusion maps initialization
var myMap = new FusionCharts( "resources/maps/FCMap_Europe.swf", "myMap", "750", "400", "0");
myMap.setJSONData({
"map": {
"showshadow": "0",
"showbevel": "0",
"showcanvasborder": "0",
"bordercolor": "FFFFFF",
"bgAlpha": "0",
"wmode": "transparent"
},
"data": [
{ "id": "IE", "value": "IE", "link": "http://localhost/mapTest/map/IE" },
{ "id": "RU", "value": "RU", "link": "http://localhost/mapTest/map/RU" },
{ "id": "ES", "value": "ES", "link": "http://localhost/mapTest/map/ES" }
]
});
myMap.setTransparent(true);
myMap.render("mapContainer");
// -->
</script>