summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/res/layout/mapview_internal.xml
blob: d62fd9cfba66c2d63bdaad4fcfda3687238c790d (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
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">

    <TextureView
        android:id="@+id/textureView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <com.mapbox.mapboxsdk.maps.CompassView
        android:id="@+id/compassView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <ImageView
        android:id="@+id/logoView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:contentDescription="@string/mapboxIconContentDescription"
        android:src="@drawable/attribution_logo" />

    <ImageView
        android:id="@+id/attributionView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:clickable="true"
        android:contentDescription="@string/attributionsIconContentDescription"
        android:padding="7dp"
        android:src="@drawable/ic_info_outline_24dp_selector"
        android:background="@drawable/bg_default_selector"/>

    <com.mapbox.mapboxsdk.maps.UserLocationView
        android:id="@+id/userLocationView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</merge>