module.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. .arc {
  31. stroke: #f00;
  32. stroke-width: .5px;
  33. fill: none;
  34. }
  35. </style>
  36. <span ng-show="panel.spyable" style="position:absolute;right:0px;top:0px" class='panelextra pointer'>
  37. <i bs-modal="'partials/modal.html'" class="icon-eye-open"></i>
  38. </span>
  39. <div map2 params="{{panel}}" style="height:{{panel.height || row.height}}"></div>
  40. </kibana-panel>