From f6171f524e64966355fa64644a46939a35beb412 Mon Sep 17 00:00:00 2001 From: Isidro Henoch Date: Mon, 3 Jan 2022 15:15:50 -0600 Subject: Splits the MapFragment funcionality - Now there's MapFragment, which is the map and is responsible for displaying markers and focusing on a particular point. This functionality will be extended. - UnitMapFragment is the entity in charge of the subscriptions and converts UnitInformation entities to something MapFragment can handle. --- androidApp/src/main/res/layout/map_fragment.xml | 17 -------- .../src/main/res/layout/unit_map_fragment.xml | 46 ++++++++++++++++++++++ 2 files changed, 46 insertions(+), 17 deletions(-) delete mode 100644 androidApp/src/main/res/layout/map_fragment.xml create mode 100644 androidApp/src/main/res/layout/unit_map_fragment.xml (limited to 'androidApp/src/main/res/layout') diff --git a/androidApp/src/main/res/layout/map_fragment.xml b/androidApp/src/main/res/layout/map_fragment.xml deleted file mode 100644 index 8d36fc1..0000000 --- a/androidApp/src/main/res/layout/map_fragment.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/androidApp/src/main/res/layout/unit_map_fragment.xml b/androidApp/src/main/res/layout/unit_map_fragment.xml new file mode 100644 index 0000000..914558a --- /dev/null +++ b/androidApp/src/main/res/layout/unit_map_fragment.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3