blob: 110f1b394900d1269381b577fc61f13ff7daa5ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?xml version="1.0" encoding="utf-8"?>
<!--
Wind-direction arrow pointing UP (north).
MapLibre rotates the icon to match wind direction via icon-rotate expression.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<!-- Arrowhead pointing up -->
<path
android:fillColor="#FFFFFF"
android:pathData="M12,2 L18,14 L12,11 L6,14 Z" />
<!-- Shaft -->
<path
android:fillColor="#FFFFFF"
android:pathData="M11,11 L11,22 L13,22 L13,11 Z" />
</vector>
|