├── settings.gradle ├── gradle ├── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── checkstyle.gradle ├── transportation mode icons.sketch ├── app ├── src │ ├── main │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ ├── bike_icon.png │ │ │ │ ├── moped_icon.png │ │ │ │ ├── scooter_icon.png │ │ │ │ ├── ic_directions_walk.png │ │ │ │ ├── lock_station_lock.png │ │ │ │ └── selected_scooter_icon.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── bike_icon.png │ │ │ │ ├── moped_icon.png │ │ │ │ ├── scooter_icon.png │ │ │ │ ├── ic_directions_walk.png │ │ │ │ ├── lock_station_lock.png │ │ │ │ └── selected_scooter_icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── bike_icon.png │ │ │ │ ├── moped_icon.png │ │ │ │ ├── scooter_icon.png │ │ │ │ ├── lock_station_lock.png │ │ │ │ ├── ic_directions_walk.png │ │ │ │ └── selected_scooter_icon.png │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── bike_icon.png │ │ │ │ ├── moped_icon.png │ │ │ │ ├── scooter_icon.png │ │ │ │ ├── ic_directions_walk.png │ │ │ │ ├── lock_station_lock.png │ │ │ │ └── selected_scooter_icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── bike_icon.png │ │ │ │ ├── moped_icon.png │ │ │ │ ├── scooter_icon.png │ │ │ │ ├── lock_station_lock.png │ │ │ │ ├── ic_directions_walk.png │ │ │ │ └── selected_scooter_icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── drawables.xml │ │ │ │ ├── styles.xml │ │ │ │ ├── strings.xml │ │ │ │ └── colors.xml │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── drawable │ │ │ │ ├── side_nav_bar.xml │ │ │ │ ├── ic_layers_black_24dp.xml │ │ │ │ ├── ic_transform_white_24dp.xml │ │ │ │ ├── ic_scan_white_24dp.xml │ │ │ │ ├── ic_payment_black_24dp.xml │ │ │ │ ├── ic_access_time_white_24dp.xml │ │ │ │ ├── ic_lock_white_24dp.xml │ │ │ │ ├── ic_search_white_24dp.xml │ │ │ │ ├── ic_flame_white_24dp.xml │ │ │ │ ├── ic_help_black_24dp.xml │ │ │ │ ├── ic_my_location_white_24dp.xml │ │ │ │ ├── ic_style_white_24dp.xml │ │ │ │ ├── ic_cluster_black_24dp.xml │ │ │ │ ├── ic_directions_bike_black_24dp.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── drawable-v21 │ │ │ │ ├── ic_menu_send.xml │ │ │ │ ├── ic_menu_slideshow.xml │ │ │ │ ├── ic_menu_gallery.xml │ │ │ │ ├── ic_menu_manage.xml │ │ │ │ ├── ic_menu_camera.xml │ │ │ │ └── ic_menu_share.xml │ │ │ ├── layout │ │ │ │ ├── nav_fragment_layout.xml │ │ │ │ ├── content_main.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── app_bar_main.xml │ │ │ │ ├── nav_header_main.xml │ │ │ │ └── vehicle_map_fragment_layout.xml │ │ │ ├── drawable-anydpi │ │ │ │ ├── ic_account_circle.xml │ │ │ │ └── ic_camera_alt.xml │ │ │ ├── menu │ │ │ │ ├── activity_main_drawer.xml │ │ │ │ └── main.xml │ │ │ └── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── mapbox │ │ │ │ └── mapboxgoshare │ │ │ │ ├── util │ │ │ │ ├── IconIdConstants.java │ │ │ │ ├── SourceIdConstants.java │ │ │ │ └── LayerIdConstants.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── TurnByTurnNavigationFragment.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── mapbox │ │ │ └── mapboxgoshare │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── mapbox │ │ └── mapboxgoshare │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── build.gradle ├── gradle.properties ├── LICENSE.md ├── .gitignore ├── CONTRIBUTING.md ├── gradlew.bat ├── README.md ├── gradlew ├── datasets ├── bike-preferred-parking.geojson ├── no-go-zones.geojson ├── bike-lock-station-locations.geojson └── bike-neighboorhood-parking-zones.geojson └── config └── checkstyle └── checkstyle.xml /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /transportation mode icons.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/transportation mode icons.sketch -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/bike_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-hdpi/bike_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/moped_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-hdpi/moped_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/bike_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-mdpi/bike_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/moped_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-mdpi/moped_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bike_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xhdpi/bike_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/scooter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-hdpi/scooter_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/scooter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-mdpi/scooter_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/moped_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xhdpi/moped_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/scooter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xhdpi/scooter_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xxhdpi/bike_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moped_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xxhdpi/moped_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bike_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xxxhdpi/bike_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/moped_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xxxhdpi/moped_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/scooter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xxhdpi/scooter_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/scooter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xxxhdpi/scooter_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_directions_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-hdpi/ic_directions_walk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/lock_station_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-hdpi/lock_station_lock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_directions_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-mdpi/ic_directions_walk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/lock_station_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-mdpi/lock_station_lock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/lock_station_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xhdpi/lock_station_lock.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_directions_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xhdpi/ic_directions_walk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_directions_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xxhdpi/ic_directions_walk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lock_station_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xxhdpi/lock_station_lock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/lock_station_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xxxhdpi/lock_station_lock.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/selected_scooter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-hdpi/selected_scooter_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/selected_scooter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-mdpi/selected_scooter_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/selected_scooter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xhdpi/selected_scooter_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/selected_scooter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xxhdpi/selected_scooter_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_directions_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xxxhdpi/ic_directions_walk.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/selected_scooter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/Micro-Mobility-Demo/HEAD/app/src/main/res/drawable-xxxhdpi/selected_scooter_icon.png -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #8045CB 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Feb 18 17:00:03 PST 2019 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.10.1-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 8dp 6 | 176dp 7 | 16dp 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_layers_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /gradle/checkstyle.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'checkstyle' 2 | 3 | checkstyle.toolVersion = '7.1.1' 4 | 5 | task checkstyle(type: Checkstyle) { 6 | description 'Checks if the code adheres to coding standards' 7 | group 'verification' 8 | 9 | configFile = new File(rootDir, "config/checkstyle/checkstyle.xml") 10 | source 'src' 11 | include '**/*.java' 12 | exclude '**/gen/**' 13 | 14 | classpath = files() 15 | ignoreFailures = false 16 | } 17 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_transform_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_scan_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/layout/nav_fragment_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | -------------------------------------------------------------------------------- /app/src/test/java/com/mapbox/mapboxgoshare/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.mapbox.mapboxgoshare; 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 | } -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_payment_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_access_time_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/java/com/mapbox/mapboxgoshare/util/IconIdConstants.java: -------------------------------------------------------------------------------- 1 | package com.mapbox.mapboxgoshare.util; 2 | 3 | public class IconIdConstants { 4 | 5 | public static final String MOPED_GARAGE_ICON_IMAGE_ID = "MOPED_GARAGE_ICON_IMAGE_ID"; 6 | public static final String INDIVIDUAL_BIKE_ICON_IMAGE_ID = "INDIVIDUAL_BIKE_ICON_IMAGE_ID"; 7 | public static final String INDIVIDUAL_SCOOTER_ICON_IMAGE_ID = "INDIVIDUAL_SCOOTER_ICON_IMAGE_ID"; 8 | public static final String PLACES_PLUGIN_SEARCH_RESULT_SYMBOL_ICON_ID = "PLACES_PLUGIN_SEARCH_RESULT_SYMBOL_ICON_ID"; 9 | 10 | } 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_lock_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_search_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_account_circle.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | @android:drawable/ic_menu_camera 3 | @android:drawable/ic_menu_gallery 4 | @android:drawable/ic_menu_slideshow 5 | @android:drawable/ic_menu_manage 6 | @android:drawable/ic_menu_share 7 | @android:drawable/ic_menu_send 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_flame_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_help_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_camera_alt.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_my_location_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_style_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /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 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cluster_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 |