Cluster 에 마우스오버시 css

setStyles(), redraw() API를 활용하여 스타일 변경할 수 있습니다.

아래 http://apis.map.kakao.com/web/sample/basicClusterer/ 예제를 바탕으로 한
소스 코드 참고해주시고,

클러스터의 스타일은 크기마다 설정할 수 있으므로
http://apis.map.kakao.com/web/sample/chickenClusterer/ 예제도 같이 참고해주세요.

kakao.maps.event.addListener( clusterer, 'clusterover', function( cluster ) {
        clusterer.setStyles([{
            width : '40px', 
            height : '40px',
	        background: 'black',
    	    color: '#fff',
        	textAlign: 'center',
	        lineHeight: '40px',
            borderRadius: '50px'
        }, 
        {
            width : '60px', 
            height : '60px',
	        background: 'white',
    	    color: 'blue',
            border: '1px solid blue',
        	textAlign: 'center',
	        lineHeight: '60px',
            borderRadius: '60px'
        }]);
    
	    clusterer.redraw();
});