Event Listeners in Maps

Overview

Listeners help to catch the users actions in order to add or change some information or change something in the performance of maps as a reaction on those actions. Listeners are the way to track what happens with charts and maps in AnyChart, and this article will explain how to use them.

Action Types

There are two types of actions: point-oriented and mouse-oriented. All available listeners are listed in Event listeners article. Any of those can be used with maps.

Listener Types

There are five basic listener methods in AnyMaps:

You can use first two of them to start listening the actions and rest are being used when we want to stop listening for the actions.

You can find everything about listeners in Event Listeners article. Look through the next couple of samples and explore them in the Playground to see that it works with maps the same as with charts.

Playground

// create a function to listen and then unlisten
var func_listen = function(e){
    window.open('https://www.google.com/search?q=Australia');
};

// add a listener
map.listen('dblclick', func_listen);

Here we added a listener that opens a Google Search with "Australia" search when it catches a double-click on a map.

The following sample shows a listener and unlistener working on one map: we listen to the mouseOver action and change colors depending on where the cursor is, but when we click on a map, we stop listening.

// create a function what to listen and then unlisten
var func_listen = function(e){
    pi = e.pointIndex;
    if (pi) {
        series.fill('#FFC9A8');
    } else{
        series.fill('#ADEB85')
    }
};

// add a listener
map.listen('mouseOver', func_listen);

map.listenOnce('click',function() {
    //adding an unlistener 
    map.unlisten('mouseOver', func_listen);
});

Playground

This sample can be modified: you can add an extra field to the map data which would contain a specific URL, so each region will redirect to different pages when double-clicked on.

Look the main Event Listener article to learn more about the listeners.