简体   繁体   中英

How to trigger amcharts Map from ouside link

I want to trigger the map info window from an outside link. For example, we add country link on the map sidebar and want to open the info window from the country list link.

http://projects.thesparxitsolutions.com/SIS415/business-world-map

You can open multiple description windows setting allowMultipleDescriptionWindows to true in your config and then calling clickMapObject on the desired areas to open them programmatically, for example:

AmCharts.makeChart("mapdiv", {
  // ...
  allowMultipleDescriptionWindows: true, 
  listeners: [
    {
      event: "rendered",
      method: function(e) {
        var map = e.chart;
        //trigger the description windows for these regions
        map.clickMapObject(map.getObjectById("FR-D"));
        map.clickMapObject(map.getObjectById("FR-E"));
      }
    }
  ]
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM