module.html 763 B

123456789101112131415161718192021222324252627282930
  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: .5px;
  20. }
  21. </style>
  22. <span ng-show="panel.spyable" style="position:absolute;right:0px;top:0px" class='panelextra pointer'>
  23. <i bs-modal="'partials/modal.html'" class="icon-eye-open"></i>
  24. </span>
  25. <div map2 params="{{panel}}" style="height:{{panel.height || row.height}}"></div>
  26. </kibana-panel>