blob: e5b86b7dd844add078f90f8858b50135678bb485 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<org.maplibre.android.maps.MapView
android:id="@+id/map_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:maplibre_cameraTargetLat="37.0"
app:maplibre_cameraTargetLng="-122.0"
app:maplibre_cameraZoom="5.0" />
<!-- Loading / error overlay -->
<TextView
android:id="@+id/status_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|center_horizontal"
android:layout_marginTop="16dp"
android:background="#AA000000"
android:paddingHorizontal="12dp"
android:paddingVertical="4dp"
android:textColor="#FFFFFF"
android:textSize="14sp"
android:visibility="gone" />
</FrameLayout>
|