angular.module('kibana.map', []) .controller('map', function($scope, eventBus) { var _id = _.uniqueId(); // Set and populate defaults var _d = { query : "*", map : "world", colors : ['#C8EEFF', '#0071A4'], size : 100, exclude : [], group : "default", } _.defaults($scope.panel,_d) $scope.init = function() { eventBus.register($scope,'time', function(event,time){set_time(time)}); eventBus.register($scope,'query', function(event, query) { $scope.panel.query = query; $scope.get_data(); }); // Now that we're all setup, request the time from our group eventBus.broadcast($scope.$id,$scope.panel.group,'get_time') } $scope.get_data = function() { // Make sure we have everything for the request to complete if(_.isUndefined($scope.panel.index) || _.isUndefined($scope.panel.time)) return var request = $scope.ejs.Request().indices($scope.panel.index); // Then the insert into facet and make the request var results = request .facet(ejs.TermsFacet('map') .field($scope.panel.field) .size($scope.panel['size']) .exclude($scope.panel.exclude) .facetFilter(ejs.QueryFilter( ejs.FilteredQuery( ejs.QueryStringQuery($scope.panel.query || '*'), ejs.RangeFilter(config.timefield) .from($scope.panel.time.from) .to($scope.panel.time.to) )))).size(0) .doSearch(); // Populate scope when we have results results.then(function(results) { $scope.hits = results.hits.total; $scope.data = {}; _.each(results.facets.map.terms, function(v) { $scope.data[v.term.toUpperCase()] = v.count; }); $scope.$emit('render') }); } function set_time(time) { $scope.panel.time = time; $scope.panel.index = _.isUndefined(time.index) ? $scope.panel.index : time.index $scope.get_data(); } $scope.init() }) .directive('map', function() { return { restrict: 'A', link: function(scope, elem, attrs) { // Receive render events scope.$on('render',function(){ render_panel(); }); // Or if the window is resized angular.element(window).bind('resize', function(){ render_panel(); }); function render_panel() { // Using LABjs, wait until all scripts are loaded before rendering panel var scripts = $LAB.script("panels/map/lib/jquery.jvectormap.min.js") .script("panels/map/lib/map."+scope.panel.map+".js") // Populate element. Note that jvectormap appends, does not replace. scripts.wait(function(){ elem.text(''); $('.jvectormap-zoomin,.jvectormap-zoomout,.jvectormap-label').remove(); var map = elem.vectorMap({ map: scope.panel.map, regionStyle: {initial: {fill: '#ddd'}}, zoomOnScroll: false, backgroundColor: '#fff', series: { regions: [{ values: scope.data, scale: scope.panel.colors, normalizeFunction: 'polynomial' }] }, onRegionLabelShow: function(event, label, code){ $('.jvectormap-label').css({ "position" : "absolute", "display" : "none", "border" : "solid 1px #CDCDCD", "background" : "#292929", "color" : "white", "font-family" : "sans-serif, Verdana", "font-size" : "smaller", "padding" : "3px" }) var count = _.isUndefined(scope.data[code]) ? 0 : scope.data[code]; $('.jvectormap-label').text(label.text() + ": " + count); }, onRegionOut: function(event, code) { } }); }) } } }; });