mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-02 10:24:11 +01:00
fcb3e8c152
Use it to the beginnings of the MapPosition fragment.
20 lines
651 B
XML
20 lines
651 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<SeekBar
|
|
android:id="@+id/altitude_slider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:max="50" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/map_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/map_positioner_background" >
|
|
</FrameLayout>
|
|
|
|
</LinearLayout> |