20 lines
1.0 KiB
XML
20 lines
1.0 KiB
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
<!--
|
|
Wikipedia globe: circle + central meridian ellipse + equator + two parallels.
|
|
All strokes converted to filled paths via stroke-width trick:
|
|
use actual SVG stroked paths with stroke="black" fill="none" —
|
|
but enclosed in an SVG that has no fill default so mask-image sees strokes.
|
|
Using path + stroke here since SVG stroke IS opaque for mask purposes.
|
|
-->
|
|
<!-- Outer circle -->
|
|
<circle cx="8" cy="8" r="6.3" stroke="black" stroke-width="1.2" fill="none"/>
|
|
<!-- Central meridian ellipse (longitude line) -->
|
|
<ellipse cx="8" cy="8" rx="2.6" ry="6.3" stroke="black" stroke-width="0.9" fill="none"/>
|
|
<!-- Equator -->
|
|
<line x1="1.7" y1="8" x2="14.3" y2="8" stroke="black" stroke-width="0.85" fill="none"/>
|
|
<!-- Upper parallel -->
|
|
<path d="M 3.2 4.8 Q 8 3.5 12.8 4.8" stroke="black" stroke-width="0.75" fill="none"/>
|
|
<!-- Lower parallel -->
|
|
<path d="M 3.2 11.2 Q 8 12.5 12.8 11.2" stroke="black" stroke-width="0.75" fill="none"/>
|
|
</svg>
|