49 lines
2.0 KiB
HTML
49 lines
2.0 KiB
HTML
|
<div id="popup" ng-include="'map-popup.html'" ng-show="displayPopup"></div>
|
||
|
|
||
|
<div id="spinner" ng-show="fetchingHostlist" style="height: {{svgHeight}}; width: {{svgWidth}}"></div>
|
||
|
|
||
|
<div id="mapsvg" ng-hide="fetchingHostlist">
|
||
|
<svg id="map" width="100%" height="100%">
|
||
|
<filter id="circular-markup-text">
|
||
|
<feFlood flood-color="#777777" result="flood"/>
|
||
|
<feGaussianBlur in="flood" stdDeviation="1" result="blur"/>
|
||
|
<feBlend in="SourceGraphic" in2="blur"/>
|
||
|
</filter>
|
||
|
<filter id="circular-markup-text-collapsed">
|
||
|
<feFlood flood-color="blue" result="flood"/>
|
||
|
<feGaussianBlur in="flood" stdDeviation="1" result="blur"/>
|
||
|
<feBlend in="SourceGraphic" in2="blur"/>
|
||
|
</filter>
|
||
|
<filter id="icon-glow-up" x="-50%" y="-50%"
|
||
|
width="200%" height="200%">
|
||
|
<feComponentTransfer in="SourceAlpha" result="solid">
|
||
|
<feFuncR type="table" tableValues="0 0 0 0"/>
|
||
|
<feFuncG type="table" tableValues=".60 0 0 0"/>
|
||
|
<feFuncB type="table" tableValues="0 0 0 0"/>
|
||
|
</feComponentTransfer>
|
||
|
<feGaussianBlur in="solid" stdDeviation="6" result="blur"/>
|
||
|
<feBlend in="SourceGraphic" in2="blur"/>
|
||
|
</filter>
|
||
|
<filter id="icon-glow-down" x="-50%" y="-50%"
|
||
|
width="200%" height="200%">
|
||
|
<feComponentTransfer in="SourceAlpha" result="solid">
|
||
|
<feFuncR type="table" tableValues="1 0 0 0"/>
|
||
|
<feFuncG type="table" tableValues="0 0 0 0"/>
|
||
|
<feFuncB type="table" tableValues="0 0 0 0"/>
|
||
|
</feComponentTransfer>
|
||
|
<feGaussianBlur in="solid" stdDeviation="6" result="blur"/>
|
||
|
<feBlend in="SourceGraphic" in2="blur"/>
|
||
|
</filter>
|
||
|
<filter id="icon-glow-unreachable" x="-50%" y="-50%"
|
||
|
width="200%" height="200%">
|
||
|
<feComponentTransfer in="SourceAlpha" result="solid">
|
||
|
<feFuncR type="table" tableValues=".5 0 0 0"/>
|
||
|
<feFuncG type="table" tableValues="0 0 0 0"/>
|
||
|
<feFuncB type="table" tableValues="0 0 0 0"/>
|
||
|
</feComponentTransfer>
|
||
|
<feGaussianBlur in="solid" stdDeviation="6" result="blur"/>
|
||
|
<feBlend in="SourceGraphic" in2="blurOffset"/>
|
||
|
</filter>
|
||
|
</svg>
|
||
|
</div>
|