onMapError

fires when an error occurs while trying to render the chart

void onMapError(string id,string message);
idstringthe code of the error
messagestringthe error message

Example

$$("map").attachEvent("onMapError",function(id,message){
    // your code here
});

Back to top