summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/fragment_double_map.xml
diff options
context:
space:
mode:
authorBrad Leege <brad@mapbox.com>2016-01-20 16:53:58 -0500
committerBrad Leege <brad@mapbox.com>2016-01-20 16:53:58 -0500
commitbaae67cafd5bb3cb6f6bb08748edbf05ec9d5fcb (patch)
tree302742007debf06667b44ed73700c4b700c80096 /platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/fragment_double_map.xml
parent0bde7a6fd6c06b29b5e46714723cd28846cd0d01 (diff)
parent3797bbf75c783900b6fa9af1942953c624c2e588 (diff)
downloadqtlocation-mapboxgl-baae67cafd5bb3cb6f6bb08748edbf05ec9d5fcb.tar.gz
Merge pull request #3639 from mapbox/release-android-v3.1.0
Android 3.1.0 --> master
Diffstat (limited to 'platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/fragment_double_map.xml')
-rw-r--r--platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/fragment_double_map.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/fragment_double_map.xml b/platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/fragment_double_map.xml
new file mode 100644
index 0000000000..0695fafd12
--- /dev/null
+++ b/platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/fragment_double_map.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:mapbox="http://schemas.android.com/apk/res-auto"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+
+ <com.mapbox.mapboxsdk.views.MapView
+ android:id="@+id/mapview"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ mapbox:access_token="@string/access_token" />
+
+ <FrameLayout
+ android:id="@+id/map_card"
+ android:layout_width="100dp"
+ android:layout_height="100dp"
+ android:layout_marginLeft="5dp"
+ android:layout_marginRight="5dp"
+ android:layout_marginTop="5dp">
+
+ <com.mapbox.mapboxsdk.views.MapView
+ android:id="@+id/mini_map"
+ android:layout_width="100dp"
+ android:layout_height="100dp"
+ mapbox:access_token="@string/access_token" />
+ </FrameLayout>
+</RelativeLayout> \ No newline at end of file