2020-03-11 18:13:44 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-03-30 11:56:59 -07:00
|
|
|
|
2020-04-07 11:27:51 -07:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-03-30 11:56:59 -07:00
|
|
|
xmlns:mapbox="http://schemas.android.com/apk/res-auto"
|
2020-03-11 18:13:44 -07:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2020-04-07 11:27:51 -07:00
|
|
|
android:id="@+id/mapFrame"> <!-- tab layout requires a unique ID -->
|
|
|
|
|
|
|
|
|
|
<com.mapbox.mapboxsdk.maps.MapView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:id="@+id/mapView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:clickable="true"
|
|
|
|
|
mapbox:mapbox_uiZoomGestures="true"
|
|
|
|
|
mapbox:mapbox_uiScrollGestures="true"></com.mapbox.mapboxsdk.maps.MapView>
|
|
|
|
|
|
|
|
|
|
</FrameLayout>
|