module.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <kibana-panel ng-controller='map2' ng-init="init()">
  2. <style>
  3. .overlay {
  4. fill: none;
  5. pointer-events: all;
  6. }
  7. .land {
  8. fill: #D1D1D1;
  9. }
  10. .boundary {
  11. fill: none;
  12. stroke: #fff;
  13. stroke-linejoin: round;
  14. stroke-linecap: round;
  15. }
  16. .hexagon {
  17. fill: none;
  18. stroke: #000;
  19. stroke-width: .1px;
  20. }
  21. .q1 { fill:rgb(247,251,255); }
  22. .q2 { fill:rgb(222,235,247); }
  23. .q3 { fill:rgb(198,219,239); }
  24. .q4 { fill:rgb(158,202,225); }
  25. .q5 { fill:rgb(107,174,214); }
  26. .q6 { fill:rgb(66,146,198); }
  27. .q7 { fill:rgb(33,113,181); }
  28. .q8 { fill:rgb(8,81,156); }
  29. .q9 { fill:rgb(8,48,107); }
  30. </style>
  31. <span ng-show="panel.spyable" style="position:absolute;right:0px;top:0px" class='panelextra pointer'>
  32. <i bs-modal="'partials/modal.html'" class="icon-eye-open"></i>
  33. </span>
  34. <div map2 params="{{panel}}" style="height:{{panel.height || row.height}}"></div>
  35. </kibana-panel>