summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/res/layout/mapview_internal.xml
blob: df0060b3d22c0933dd9161d3b9196b7a9b946832 (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
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">

    <SurfaceView
        android:id="@+id/surfaceView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <com.mapbox.mapboxsdk.maps.widgets.MarkerViewLayout
        android:id="@+id/markerViewLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/transparent" />

    <com.mapbox.mapboxsdk.maps.widgets.MyLocationView
        android:id="@+id/userLocationView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <com.mapbox.mapboxsdk.maps.widgets.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:background="@drawable/bg_default_selector"
        android:clickable="true"
        android:contentDescription="@string/attributionsIconContentDescription"
        android:padding="7dp"
        android:src="@drawable/ic_info_outline_24dp_selector" />

</merge>