2020-03-11 18:13:44 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-02-17 10:38:33 -05:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-03-11 18:13:44 -07:00
|
|
|
android:layout_width="match_parent"
|
2022-02-17 10:38:33 -05:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
2022-08-23 20:05:19 -04:00
|
|
|
<org.osmdroid.views.MapView
|
|
|
|
|
android:id="@+id/map"
|
2022-02-17 10:38:33 -05:00
|
|
|
android:layout_width="match_parent"
|
2022-08-24 12:16:57 -04:00
|
|
|
android:layout_height="match_parent" />
|
2022-02-17 10:38:33 -05:00
|
|
|
|
2022-08-24 12:16:57 -04:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
|
android:id="@+id/fab_style_toggle"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
|
android:backgroundTint="@color/design_default_color_secondary"
|
|
|
|
|
android:contentDescription="@string/style_selection"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:src="@drawable/baseline_layers_white_24dp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
android:visibility="visible"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
tools:background="@color/design_default_color_secondary" />
|
2022-02-17 10:38:33 -05:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|