module.html 727 B

12345678910111213
  1. <kibana-panel ng-controller='bettermap' ng-init="init()">
  2. <!-- questionable if this is allowed in HTML5 -->
  3. <link rel="stylesheet" href="panels/bettermap/lib/leaflet.css" />
  4. <link rel="stylesheet" href="panels/bettermap/lib/plugins.css" />
  5. <span ng-show="panel.spyable" style="position:absolute;right:0px;top:0px" class='panelextra pointer'>
  6. <i bs-modal="'partials/modal.html'" class="icon-eye-open"></i>
  7. </span>
  8. <!-- This solution might work well for other panels that have trouble with heights -->
  9. <div style="padding-right:10px;padding-top:10px;height:{{panel.height|| row.height}};overflow:hidden">
  10. <div bettermap id='bettermap' params="{{panel}}" style="height:100%"></div>
  11. </div>
  12. </kibana-panel>