forked from orson/bachemap
15 lines
580 B
XML
15 lines
580 B
XML
|
|
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg">
|
||
|
|
<!-- Map pin -->
|
||
|
|
<circle cx="100" cy="40" r="12" fill="#4A90E2"/>
|
||
|
|
<path d="M50,55 Q60,45 70,55 Q80,65 90,55" stroke="#888" stroke-width="3" fill="none" stroke-linecap="round"/>
|
||
|
|
<path d="M100,45 L105,60 L95,60 Z" fill="#fff"/>
|
||
|
|
|
||
|
|
<!-- Pothole shape -->
|
||
|
|
<ellipse cx="100" cy="90" rx="40" ry="10" fill="#bbb" stroke="#777" stroke-width="2" />
|
||
|
|
|
||
|
|
<!-- Typography -->
|
||
|
|
<text x="100" y="130" font-family="Montserrat, sans-serif" font-size="16" fill="#333" text-anchor="middle">
|
||
|
|
Bachemapa
|
||
|
|
</text>
|
||
|
|
</svg>
|