├── ARTest ├── git ├── app │ ├── .gitignore │ ├── sampledata │ │ └── models │ │ │ ├── test.mtl │ │ │ ├── test.obj │ │ │ ├── test.sfa │ │ │ ├── model.sfa │ │ │ ├── materials.mtl │ │ │ └── model.obj │ ├── src │ │ ├── main │ │ │ ├── assets │ │ │ │ ├── floor0.txt │ │ │ │ ├── floor1.txt │ │ │ │ └── floor2.txt │ │ │ ├── ic_star-web.png │ │ │ ├── res │ │ │ │ ├── raw │ │ │ │ │ ├── test.sfb │ │ │ │ │ ├── model.sfb │ │ │ │ │ └── publickey.bks │ │ │ │ ├── drawable │ │ │ │ │ ├── stairs_up.png │ │ │ │ │ ├── destination.png │ │ │ │ │ ├── my_location.png │ │ │ │ │ ├── stairs_down.png │ │ │ │ │ ├── toilet_marker.png │ │ │ │ │ ├── elevator_marker.png │ │ │ │ │ ├── staircase_marker.png │ │ │ │ │ ├── baseline_star_black_18dp.png │ │ │ │ │ ├── baseline_public_black_18dp.png │ │ │ │ │ ├── baseline_share_black_18dp.png │ │ │ │ │ ├── baseline_location_on_black_18dp.png │ │ │ │ │ ├── baseline_library_books_black_18dp.png │ │ │ │ │ ├── baseline_person_pin_circle_black_18dp.png │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── my_launcher2_background.xml │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── ic_wifi.png │ │ │ │ │ ├── ic_login.png │ │ │ │ │ └── ic_compass.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── ic_wifi.png │ │ │ │ │ ├── ic_login.png │ │ │ │ │ └── ic_compass.png │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_star.png │ │ │ │ │ ├── arrow_route.png │ │ │ │ │ ├── ic_compass.png │ │ │ │ │ ├── ic_compass2.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_location.png │ │ │ │ │ ├── my_location.png │ │ │ │ │ ├── ic_recents_gps.png │ │ │ │ │ ├── my_launcher2.png │ │ │ │ │ ├── baseline_search.png │ │ │ │ │ ├── ic_location_gps.png │ │ │ │ │ ├── ic_recent_books.png │ │ │ │ │ ├── arrow_route_round.png │ │ │ │ │ ├── baseline_navigation.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ ├── my_launcher2_round.png │ │ │ │ │ ├── my_location_round.png │ │ │ │ │ ├── ic_location_gps_round.png │ │ │ │ │ ├── ic_recents_foreground.png │ │ │ │ │ ├── ic_recents_gps_round.png │ │ │ │ │ ├── arrow_route_foreground.png │ │ │ │ │ ├── green_marker_foreground.png │ │ │ │ │ ├── ic_happy_star_foreground.png │ │ │ │ │ ├── my_launcher2_foreground.png │ │ │ │ │ ├── my_location_foreground.png │ │ │ │ │ └── ic_location_gps_foreground.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_star.png │ │ │ │ │ ├── arrow_route.png │ │ │ │ │ ├── ic_compass.png │ │ │ │ │ ├── ic_compass2.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_location.png │ │ │ │ │ ├── my_location.png │ │ │ │ │ ├── com1building.jpg │ │ │ │ │ ├── ic_recents_gps.png │ │ │ │ │ ├── my_launcher2.png │ │ │ │ │ ├── ic_location_gps.png │ │ │ │ │ ├── ic_recent_books.png │ │ │ │ │ ├── arrow_route_round.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ ├── my_launcher2_round.png │ │ │ │ │ ├── my_location_round.png │ │ │ │ │ ├── ic_location_gps_round.png │ │ │ │ │ ├── ic_recents_foreground.png │ │ │ │ │ ├── ic_recents_gps_round.png │ │ │ │ │ ├── arrow_route_foreground.png │ │ │ │ │ ├── green_marker_foreground.png │ │ │ │ │ ├── ic_happy_star_foreground.png │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── my_launcher.png │ │ │ │ │ ├── my_launcher2_foreground.png │ │ │ │ │ ├── my_location_foreground.png │ │ │ │ │ ├── ic_location_gps_foreground.png │ │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ │ │ └── my_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_star.png │ │ │ │ │ ├── ic_compass.png │ │ │ │ │ ├── arrow_route.png │ │ │ │ │ ├── ic_compass2.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_location.png │ │ │ │ │ ├── my_launcher2.png │ │ │ │ │ ├── my_location.png │ │ │ │ │ ├── ic_location_gps.png │ │ │ │ │ ├── ic_recent_books.png │ │ │ │ │ ├── ic_recents_gps.png │ │ │ │ │ ├── arrow_route_round.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ ├── my_launcher2_round.png │ │ │ │ │ ├── my_location_round.png │ │ │ │ │ ├── ic_recents_gps_round.png │ │ │ │ │ ├── arrow_route_foreground.png │ │ │ │ │ ├── green_marker_foreground.png │ │ │ │ │ ├── ic_location_gps_round.png │ │ │ │ │ ├── ic_recents_foreground.png │ │ │ │ │ ├── my_launcher2_foreground.png │ │ │ │ │ ├── my_location_foreground.png │ │ │ │ │ ├── ic_happy_star_foreground.png │ │ │ │ │ └── ic_location_gps_foreground.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_star.png │ │ │ │ │ ├── arrow_route.png │ │ │ │ │ ├── ic_compass.png │ │ │ │ │ ├── ic_compass2.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_location.png │ │ │ │ │ ├── my_launcher2.png │ │ │ │ │ ├── my_location.png │ │ │ │ │ ├── ic_recents_gps.png │ │ │ │ │ ├── arrow_route_round.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ ├── ic_location_gps.png │ │ │ │ │ ├── ic_recent_books.png │ │ │ │ │ ├── my_location_round.png │ │ │ │ │ ├── switch_locations.png │ │ │ │ │ ├── my_launcher2_round.png │ │ │ │ │ ├── arrow_route_foreground.png │ │ │ │ │ ├── ic_location_gps_round.png │ │ │ │ │ ├── ic_recents_foreground.png │ │ │ │ │ ├── ic_recents_gps_round.png │ │ │ │ │ ├── my_location_foreground.png │ │ │ │ │ ├── green_marker_foreground.png │ │ │ │ │ ├── ic_happy_star_foreground.png │ │ │ │ │ ├── my_launcher2_foreground.png │ │ │ │ │ └── ic_location_gps_foreground.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── ic_login.png │ │ │ │ │ ├── ic_wifi.png │ │ │ │ │ └── ic_compass.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── ic_wifi.png │ │ │ │ │ ├── ic_compass.png │ │ │ │ │ ├── ic_login.png │ │ │ │ │ ├── green_marker.png │ │ │ │ │ └── purple_marker.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_star.png │ │ │ │ │ ├── arrow_route.png │ │ │ │ │ ├── ic_compass.png │ │ │ │ │ ├── ic_compass2.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_location.png │ │ │ │ │ ├── my_location.png │ │ │ │ │ ├── my_launcher2.png │ │ │ │ │ ├── ic_location_gps.png │ │ │ │ │ ├── ic_recent_books.png │ │ │ │ │ ├── ic_recents_gps.png │ │ │ │ │ ├── arrow_route_round.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ ├── my_launcher2_round.png │ │ │ │ │ ├── my_location_round.png │ │ │ │ │ ├── ic_location_gps_round.png │ │ │ │ │ ├── ic_recents_foreground.png │ │ │ │ │ ├── ic_recents_gps_round.png │ │ │ │ │ ├── arrow_route_foreground.png │ │ │ │ │ ├── green_marker_foreground.png │ │ │ │ │ ├── my_launcher2_foreground.png │ │ │ │ │ ├── my_location_foreground.png │ │ │ │ │ ├── ic_happy_star_foreground.png │ │ │ │ │ └── ic_location_gps_foreground.png │ │ │ │ ├── values │ │ │ │ │ ├── my_launcher2_background.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── attrs.xml │ │ │ │ │ ├── arrays.xml │ │ │ │ │ ├── styles.xml │ │ │ │ │ └── strings.xml │ │ │ │ ├── layout │ │ │ │ │ ├── tool_tips.xml │ │ │ │ │ ├── ar_imageview.xml │ │ │ │ │ ├── upload_listview.xml │ │ │ │ │ ├── lt_layout.xml │ │ │ │ │ ├── activity_place_level1.xml │ │ │ │ │ ├── activity_ar.xml │ │ │ │ │ ├── activity_upload_confirmation.xml │ │ │ │ │ ├── activity_wifi.xml │ │ │ │ │ ├── grid_item.xml │ │ │ │ │ ├── activity_staircase.xml │ │ │ │ │ ├── activity_places_lecture_theatres.xml │ │ │ │ │ ├── activity_collect_data.xml │ │ │ │ │ ├── activity_login.xml │ │ │ │ │ ├── activity_map.xml │ │ │ │ │ ├── activity_compass.xml │ │ │ │ │ ├── activity_places_to_go.xml │ │ │ │ │ └── toolbar_layout.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── arrow_route.xml │ │ │ │ │ ├── ic_recents_gps.xml │ │ │ │ │ ├── my_launcher2.xml │ │ │ │ │ ├── my_location.xml │ │ │ │ │ ├── arrow_route_round.xml │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ ├── my_launcher2_round.xml │ │ │ │ │ ├── my_location_round.xml │ │ │ │ │ ├── ic_launcher_round.xml │ │ │ │ │ ├── ic_location_gps.xml │ │ │ │ │ ├── ic_recents_gps_round.xml │ │ │ │ │ └── ic_location_gps_round.xml │ │ │ │ ├── menu │ │ │ │ │ ├── main_menu.xml │ │ │ │ │ ├── collectdata.xml │ │ │ │ │ ├── confirmupload.xml │ │ │ │ │ └── menu_lt.xml │ │ │ │ └── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── arrow_route-web.png │ │ │ ├── blue_marker-web.png │ │ │ ├── ic_compass-web.png │ │ │ ├── ic_compass2-web.png │ │ │ ├── ic_location-web.png │ │ │ ├── my_location-web.png │ │ │ ├── green_marker-web.png │ │ │ ├── ic_happyStar-web.png │ │ │ ├── my_launcher2-web.png │ │ │ ├── ic_location_gps-web.png │ │ │ ├── ic_recent_books-web.png │ │ │ ├── ic_recents_gps-web.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── arjo129 │ │ │ │ │ └── artest │ │ │ │ │ ├── arrendering │ │ │ │ │ ├── StairException.java │ │ │ │ │ ├── DirectionInstruction.java │ │ │ │ │ ├── StaircaseActivity.java │ │ │ │ │ ├── InitialArrow.java │ │ │ │ │ ├── VisualAnchorCompass.java │ │ │ │ │ └── DisplayRotationHelper.java │ │ │ │ │ ├── places │ │ │ │ │ ├── Connector.java │ │ │ │ │ ├── PlaceSearch.java │ │ │ │ │ ├── BearingUtils.java │ │ │ │ │ ├── GridAdapter.java │ │ │ │ │ ├── PlaceLevel1.java │ │ │ │ │ ├── SearchPlaces.java │ │ │ │ │ ├── PlacesToGo.java │ │ │ │ │ └── RecyclerAdapter.java │ │ │ │ │ ├── datacollection │ │ │ │ │ ├── ServerResponse.java │ │ │ │ │ ├── WifiFingerprint.java │ │ │ │ │ ├── UploadConfirmation.java │ │ │ │ │ └── WifiFingerprintList.java │ │ │ │ │ ├── indoorLocation │ │ │ │ │ ├── WifiNotificationListener.java │ │ │ │ │ ├── SecurityProvider.java │ │ │ │ │ └── WifiService.java │ │ │ │ │ ├── Node.java │ │ │ │ │ ├── device │ │ │ │ │ ├── WifiLocation.java │ │ │ │ │ └── CompassListener.java │ │ │ │ │ ├── ARActivity.java │ │ │ │ │ ├── CompassActivity.java │ │ │ │ │ ├── LoginActivity.java │ │ │ │ │ └── WifiActivity.java │ │ │ └── AndroidManifest.xml │ │ ├── res │ │ │ └── raw │ │ │ │ └── test.sfb │ │ ├── test │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── arjo129 │ │ │ │ └── artest │ │ │ │ └── ExampleUnitTest.java │ │ └── androidTest │ │ │ └── java │ │ │ └── com │ │ │ └── arjo129 │ │ │ └── artest │ │ │ └── ExampleInstrumentedTest.java │ ├── proguard-rules.pro │ └── build.gradle ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── vcs.xml │ ├── runConfigurations.xml │ ├── gradle.xml │ ├── misc.xml │ ├── codeStyles │ │ └── Project.xml │ └── assetWizardSettings.xml ├── .gitignore ├── build.gradle ├── gradle.properties └── gradlew.bat ├── .gitignore └── README.md /ARTest/git: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ARTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ARTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | ARTest/.idea/caches/build_file_checksums.ser 3 | -------------------------------------------------------------------------------- /ARTest/app/sampledata/models/test.mtl: -------------------------------------------------------------------------------- 1 | # Exported from 3D Builder 2 | 3 | newmtl Green 4 | Kd 0.129412 0.733333 0.298039 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/assets/floor0.txt: -------------------------------------------------------------------------------- 1 | 10 2 | 10 2 7 3 | 1 3 4 4 | 2 5 | 2 5 6 | 4 6 9 7 | 5 8 | 1 8 9 | 7 10 | 5 11 | 0 1 -------------------------------------------------------------------------------- /ARTest/app/src/res/raw/test.sfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/res/raw/test.sfb -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_star-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_star-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/raw/test.sfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/raw/test.sfb -------------------------------------------------------------------------------- /ARTest/app/src/main/arrow_route-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/arrow_route-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/blue_marker-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/blue_marker-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_compass-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_compass-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_compass2-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_compass2-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_location-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_location-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/my_location-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/my_location-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/raw/model.sfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/raw/model.sfb -------------------------------------------------------------------------------- /ARTest/app/src/main/green_marker-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/green_marker-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_happyStar-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_happyStar-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/my_launcher2-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/my_launcher2-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/raw/publickey.bks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/raw/publickey.bks -------------------------------------------------------------------------------- /ARTest/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ARTest/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_location_gps-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_location_gps-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_recent_books-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_recent_books-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_recents_gps-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_recents_gps-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/stairs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/stairs_up.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-hdpi/ic_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-hdpi/ic_wifi.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-mdpi/ic_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-mdpi/ic_wifi.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/destination.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/my_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/stairs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/stairs_down.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_star.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_star.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_star.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_star.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-hdpi/ic_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-hdpi/ic_login.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-mdpi/ic_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-mdpi/ic_login.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xhdpi/ic_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xhdpi/ic_login.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xhdpi/ic_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xhdpi/ic_wifi.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xxhdpi/ic_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xxhdpi/ic_wifi.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/toilet_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/toilet_marker.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/arrow_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/arrow_route.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_compass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_compass2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/my_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/arrow_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/arrow_route.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_compass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_compass2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/my_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_star.png -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/arrendering/StairException.java: -------------------------------------------------------------------------------- 1 | package com.arjo129.artest.arrendering; 2 | 3 | public class StairException extends Exception { 4 | } 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-hdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-hdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-mdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-mdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xhdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xhdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xxhdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xxhdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xxhdpi/ic_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xxhdpi/ic_login.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/elevator_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/elevator_marker.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/staircase_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/staircase_marker.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_recents_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_recents_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/my_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/my_launcher2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/com1building.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/com1building.jpg -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_recents_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_recents_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/my_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/my_launcher2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/arrow_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/arrow_route.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_compass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_compass2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/my_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/my_launcher2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/my_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/arrow_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/arrow_route.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_compass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_compass2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/my_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/my_launcher2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/my_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/arrow_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/arrow_route.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_compass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_compass2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/my_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xxhdpi/green_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xxhdpi/green_marker.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/baseline_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/baseline_search.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_location_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_location_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_recent_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_recent_books.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_location_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_location_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_recent_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_recent_books.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_location_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_location_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_recent_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_recent_books.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_recents_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_recents_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_recents_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_recents_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/my_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/my_launcher2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xxhdpi/purple_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xxhdpi/purple_marker.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/arrow_route_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/arrow_route_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/baseline_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/baseline_navigation.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/my_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/my_launcher2_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/my_location_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/my_location_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/arrow_route_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/arrow_route_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/my_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/my_launcher2_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/my_location_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/my_location_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/arrow_route_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/arrow_route_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/my_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/my_launcher2_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/my_location_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/my_location_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/arrow_route_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/arrow_route_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_location_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_location_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_recent_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_recent_books.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/my_location_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/my_location_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/switch_locations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/switch_locations.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recent_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recent_books.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recents_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recents_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/values/my_launcher2_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #000000 4 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/baseline_star_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/baseline_star_black_18dp.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_location_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_location_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_recents_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_recents_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_recents_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_recents_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_location_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_location_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_recents_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_recents_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_recents_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_recents_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_recents_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_recents_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/my_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/my_launcher2_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/arrow_route_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/arrow_route_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/my_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/my_launcher2_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/my_location_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/my_location_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/assets/floor1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 0 2 3 | 1 3 16 4 | 2 9 4 16 5 | 3 5 6 | 4 6 12 7 | 5 7 8 | 6 8 9 | 7 9 14 10 | 3 8 10 11 | 9 11 12 | 10 13 | 5 13 14 | 12 15 | 8 15 16 | 14 17 | 2 3 -------------------------------------------------------------------------------- /ARTest/app/src/main/assets/floor2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 0 2 8 3 | 1 3 12 4 | 2 4 9 5 | 3 5 6 | 4 6 7 | 5 7 8 | 6 11 9 | 1 10 | 3 10 14 11 | 9 11 12 | 7 10 13 | 2 13 14 14 | 12 15 | 9 12 15 16 | 13 14 17 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/baseline_public_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/baseline_public_black_18dp.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/baseline_share_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/baseline_share_black_18dp.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/arrow_route_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/arrow_route_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/green_marker_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/green_marker_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_happy_star_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_happy_star_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/my_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/my_launcher2_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/my_location_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/my_location_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/arrow_route_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/arrow_route_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/green_marker_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/green_marker_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_happy_star_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_happy_star_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/mipmap-hdpi/my_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/mipmap-hdpi/my_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/my_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/my_launcher2_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/my_location_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/my_location_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/arrow_route_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/arrow_route_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/green_marker_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/green_marker_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_location_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_location_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_recents_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_recents_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/my_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/my_launcher2_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/my_location_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/my_location_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/arrow_route_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/arrow_route_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_location_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_location_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_recents_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_recents_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_recents_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_recents_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/my_location_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/my_location_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recents_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recents_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recents_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recents_gps_round.png -------------------------------------------------------------------------------- /ARTest/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_location_gps_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_location_gps_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_location_gps_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_location_gps_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/mipmap-xxxhdpi/my_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/mipmap-xxxhdpi/my_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_happy_star_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_happy_star_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/green_marker_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/green_marker_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_happy_star_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_happy_star_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/my_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/my_launcher2_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/arrow_route_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/arrow_route_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/green_marker_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/green_marker_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/my_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/my_launcher2_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/my_location_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/my_location_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/baseline_location_on_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/baseline_location_on_black_18dp.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_location_gps_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_location_gps_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_location_gps_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_location_gps_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_happy_star_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_happy_star_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location_gps_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location_gps_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/baseline_library_books_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/baseline_library_books_black_18dp.png -------------------------------------------------------------------------------- /ARTest/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/places/Connector.java: -------------------------------------------------------------------------------- 1 | package com.arjo129.artest.places; 2 | 3 | /** 4 | * Done by Chelsey 5 | */ 6 | public enum Connector { 7 | Lift, 8 | Stairs 9 | } 10 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/baseline_person_pin_circle_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/baseline_person_pin_circle_black_18dp.png -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/datacollection/ServerResponse.java: -------------------------------------------------------------------------------- 1 | package com.arjo129.artest.datacollection; 2 | 3 | public enum ServerResponse { 4 | SERVER_RESPONSE_OK, 5 | SERVER_RESPONSE_BAD_AUTH, 6 | SERVER_RESPONSE_ERROR 7 | } 8 | -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/indoorLocation/WifiNotificationListener.java: -------------------------------------------------------------------------------- 1 | package com.arjo129.artest.indoorLocation; 2 | 3 | public interface WifiNotificationListener { 4 | void onServerSendsFix(double lat, double lng, double alt); 5 | } 6 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/tool_tips.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /ARTest/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed May 16 10:08:27 SGT 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip 7 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/arrow_route.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/ic_recents_gps.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/my_launcher2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/my_location.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/arrow_route_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/my_launcher2_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/my_location_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/ic_location_gps.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/ic_recents_gps_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/ic_location_gps_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/ar_imageview.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/menu/collectdata.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 10 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/upload_listview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/lt_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | -------------------------------------------------------------------------------- /ARTest/app/src/test/java/com/arjo129/artest/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.arjo129.artest; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /ARTest/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | #FFFFFF 7 | #f2a24d 8 | #5add9e 9 | #4ef0f2 10 | 11 | #66000000 12 | 13 | 14 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /ARTest/app/sampledata/models/test.obj: -------------------------------------------------------------------------------- 1 | # Exported from 3D Builder 2 | mtllib test.mtl 3 | 4 | o Object.1 5 | v -0.19999001 -0.20000000 0.39998001 6 | v 0.19999001 -0.20000000 0.39998001 7 | v -0.19999001 20.000000 0.39998001 8 | v 0.19999001 0.20000000 0.000000 9 | v -0.19999001 -0.20000000 0.000000 10 | v -0.19999001 0.20000000 0.000000 11 | v 0.19999001 -0.20000000 0.000000 12 | v 0.19999001 0.20000000 0.3998001 13 | 14 | 15 | usemtl Green 16 | f 1 2 3 17 | f 4 5 6 18 | f 5 4 7 19 | f 8 3 2 20 | f 5 7 2 21 | f 5 3 6 22 | f 8 2 7 23 | f 6 3 8 24 | f 5 1 3 25 | f 7 4 8 26 | f 2 1 5 27 | f 8 4 6 28 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/menu/confirmupload.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 14 | -------------------------------------------------------------------------------- /ARTest/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /ARTest/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | 5 | repositories { 6 | google() 7 | jcenter() 8 | mavenCentral() 9 | } 10 | dependencies { 11 | classpath 'com.android.tools.build:gradle:3.1.2' 12 | //NOTE: Add ARCore 13 | classpath 'com.google.ar.sceneform:plugin:1.0.0' 14 | } 15 | } 16 | 17 | allprojects { 18 | repositories { 19 | google() 20 | jcenter() 21 | mavenLocal() 22 | } 23 | } 24 | 25 | task clean(type: Delete) { 26 | delete rootProject.buildDir 27 | } 28 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_place_level1.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_ar.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_upload_confirmation.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/arrendering/DirectionInstruction.java: -------------------------------------------------------------------------------- 1 | package com.arjo129.artest.arrendering; 2 | 3 | import com.arjo129.artest.places.Connector; 4 | 5 | import java.io.Serializable; 6 | 7 | public class DirectionInstruction implements Serializable { 8 | public float direction; //Store the compass angle of which way to go here 9 | public float distance; //Store the distance to travel till you execute this instruction 10 | public boolean isConnector; 11 | public Connector connector_type; 12 | public boolean goingUp; 13 | public DirectionInstruction(float dist, float dir){ 14 | distance = dist; 15 | direction = dir; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /ARTest/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/menu/menu_lt.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 12 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SR1 6 | SR2 7 | SR3 8 | SR4 9 | SR5 10 | SR6 11 | SR7 12 | SR8 13 | SR9 14 | SR10 15 | Canteen 16 | Cerebro@SoC 17 | LT15 18 | LT19 19 | Makers@SoC 20 | Tech Hangout 21 | Fabrication Lab 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /ARTest/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx1536m 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. More details, visit 12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 13 | # org.gradle.parallel=true 14 | -------------------------------------------------------------------------------- /ARTest/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Android-App-AR-Map-Navigation 2 | 3 | This is a proof of concept app that uses AR to guide users in an indoor environment. It was built over the course of two months for NUS Orbital 2018. 4 | The app uses WIFI fingerprinting to perform indoor location. It can be used within NUS COM 1 (I believe the server is still running). The app consists of two parts 5 | a part which contains the routing and UI logic, and another which contains the AR overlay. The map itself is rendered using mapbox. 6 | 7 | # Some videos of the app in action: 8 | [![Navigating To CompBio](http://img.youtube.com/vi/GQzfkelTCxQ/0.jpg)](http://www.youtube.com/watch?v=GQzfkelTCxQ) 9 | [![Multistory Navigation](http://img.youtube.com/vi/D7Onn8yB5sA/0.jpg)](http://www.youtube.com/watch?v=D7Onn8yB5sA) 10 | [![Generic Demo](http://img.youtube.com/vi/pmsJEq3TNSw/0.jpg)](http://www.youtube.com/watch?v=pmsJEq3TNSw) 11 | 12 | -------------------------------------------------------------------------------- /ARTest/app/src/androidTest/java/com/arjo129/artest/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.arjo129.artest; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumented test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("com.arjo129.artest", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_wifi.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 |