Generating the map (svg path via canvas) using kineticjs.
using kineticjs plugin, map generate successfully..
Need to be highlight the layer background color on mouse hover ?
but i can able to show the alert box on mouse hover...
jsfiddle.net/prasadraja07/dqhzjnut/4/
Your nodes are inside layer
. So you need to redraw `layer':
pathnorthen.on('mouseout', function () {
//alert("mouse out");
this.fill('#00dddd');
layer.draw();
});