| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <kibana-panel ng-controller='map2' ng-init="init()">
- <style>
- .overlay {
- fill: none;
- pointer-events: all;
- }
- .land {
- fill: #D1D1D1;
- }
- .boundary {
- fill: none;
- stroke: #fff;
- stroke-linejoin: round;
- stroke-linecap: round;
- }
- .hexagon {
- fill: none;
- stroke: #000;
- stroke-width: .1px;
- }
- .q1 { fill:rgb(247,251,255); }
- .q2 { fill:rgb(222,235,247); }
- .q3 { fill:rgb(198,219,239); }
- .q4 { fill:rgb(158,202,225); }
- .q5 { fill:rgb(107,174,214); }
- .q6 { fill:rgb(66,146,198); }
- .q7 { fill:rgb(33,113,181); }
- .q8 { fill:rgb(8,81,156); }
- .q9 { fill:rgb(8,48,107); }
- .arc {
- stroke: #f00;
- stroke-width: .5px;
- fill: none;
- }
- </style>
- <span ng-show="panel.spyable" style="position:absolute;right:0px;top:0px" class='panelextra pointer'>
- <i bs-modal="'partials/modal.html'" class="icon-eye-open"></i>
- </span>
- <div map2 params="{{panel}}" style="height:{{panel.height || row.height}}"></div>
- </kibana-panel>
|