├── .gitignore ├── LICENSE.md ├── README.md ├── Store Finder Sketch file.sketch ├── StoreLocator ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── mapbox │ │ │ └── storelocator │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── LICENSE.md │ │ │ └── list_of_locations.geojson │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── mapbox │ │ │ │ └── storelocator │ │ │ │ ├── activity │ │ │ │ ├── MapActivity.java │ │ │ │ └── ThemePickerActivity.java │ │ │ │ ├── adapter │ │ │ │ └── LocationRecyclerViewAdapter.java │ │ │ │ ├── model │ │ │ │ └── IndividualLocation.java │ │ │ │ └── util │ │ │ │ ├── LinearLayoutManagerWithSmoothScroller.java │ │ │ │ └── StringConstants.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── bicycle_icon.png │ │ │ ├── blue_button_image.png │ │ │ ├── blue_circle.png │ │ │ ├── blue_selected_burger.png │ │ │ ├── blue_selected_house.png │ │ │ ├── blue_selected_ice_cream.png │ │ │ ├── blue_selected_money.png │ │ │ ├── blue_unselected_burger.png │ │ │ ├── blue_unselected_house.png │ │ │ ├── blue_unselected_ice_cream.png │ │ │ ├── blue_unselected_money.png │ │ │ ├── blue_user_location.png │ │ │ ├── cheese_burger_icon.png │ │ │ ├── divider_line.png │ │ │ ├── gray_button_image.png │ │ │ ├── gray_circle.png │ │ │ ├── gray_selected_bike.png │ │ │ ├── gray_selected_house.png │ │ │ ├── gray_user_location.png │ │ │ ├── green_button_image.png │ │ │ ├── green_circle.png │ │ │ ├── green_selected_money.png │ │ │ ├── green_unselected_money.png │ │ │ ├── green_user_location.png │ │ │ ├── house_icon.png │ │ │ ├── ice_cream_icon.png │ │ │ ├── money_bag_icon.png │ │ │ ├── neutral_button_image.png │ │ │ ├── neutral_orange_user_location.png │ │ │ ├── purple_button_image.png │ │ │ ├── purple_circle.png │ │ │ ├── purple_selected_burger.png │ │ │ ├── purple_selected_house.png │ │ │ ├── purple_selected_ice_cream.png │ │ │ ├── purple_selected_money.png │ │ │ ├── purple_unselected_burger.png │ │ │ ├── purple_unselected_house.png │ │ │ ├── purple_unselected_ice_cream.png │ │ │ ├── purple_unselected_money.png │ │ │ ├── purple_user_location.png │ │ │ ├── splash_fill_gradient_background.png │ │ │ ├── white_circle.png │ │ │ ├── white_unselected_bike.png │ │ │ └── white_unselected_house.png │ │ │ ├── drawable-mdpi │ │ │ ├── bicycle_icon.png │ │ │ ├── blue_button_image.png │ │ │ ├── blue_circle.png │ │ │ ├── blue_selected_burger.png │ │ │ ├── blue_selected_house.png │ │ │ ├── blue_selected_ice_cream.png │ │ │ ├── blue_selected_money.png │ │ │ ├── blue_unselected_burger.png │ │ │ ├── blue_unselected_house.png │ │ │ ├── blue_unselected_ice_cream.png │ │ │ ├── blue_unselected_money.png │ │ │ ├── blue_user_location.png │ │ │ ├── cheese_burger_icon.png │ │ │ ├── divider_line.png │ │ │ ├── gray_button_image.png │ │ │ ├── gray_circle.png │ │ │ ├── gray_selected_bike.png │ │ │ ├── gray_selected_house.png │ │ │ ├── gray_user_location.png │ │ │ ├── green_button_image.png │ │ │ ├── green_circle.png │ │ │ ├── green_selected_money.png │ │ │ ├── green_unselected_money.png │ │ │ ├── green_user_location.png │ │ │ ├── house_icon.png │ │ │ ├── ice_cream_icon.png │ │ │ ├── money_bag_icon.png │ │ │ ├── neutral_button_image.png │ │ │ ├── neutral_orange_user_location.png │ │ │ ├── purple_button_image.png │ │ │ ├── purple_circle.png │ │ │ ├── purple_selected_burger.png │ │ │ ├── purple_selected_house.png │ │ │ ├── purple_selected_ice_cream.png │ │ │ ├── purple_selected_money.png │ │ │ ├── purple_unselected_burger.png │ │ │ ├── purple_unselected_house.png │ │ │ ├── purple_unselected_ice_cream.png │ │ │ ├── purple_unselected_money.png │ │ │ ├── purple_user_location.png │ │ │ ├── splash_fill_gradient_background.png │ │ │ ├── white_circle.png │ │ │ ├── white_unselected_bike.png │ │ │ └── white_unselected_house.png │ │ │ ├── drawable-xhdpi │ │ │ ├── bicycle_icon.png │ │ │ ├── blue_button_image.png │ │ │ ├── blue_circle.png │ │ │ ├── blue_selected_burger.png │ │ │ ├── blue_selected_house.png │ │ │ ├── blue_selected_ice_cream.png │ │ │ ├── blue_selected_money.png │ │ │ ├── blue_unselected_burger.png │ │ │ ├── blue_unselected_house.png │ │ │ ├── blue_unselected_ice_cream.png │ │ │ ├── blue_unselected_money.png │ │ │ ├── blue_user_location.png │ │ │ ├── cheese_burger_icon.png │ │ │ ├── divider_line.png │ │ │ ├── gray_button_image.png │ │ │ ├── gray_circle.png │ │ │ ├── gray_selected_bike.png │ │ │ ├── gray_selected_house.png │ │ │ ├── gray_user_location.png │ │ │ ├── green_button_image.png │ │ │ ├── green_circle.png │ │ │ ├── green_selected_money.png │ │ │ ├── green_unselected_money.png │ │ │ ├── green_user_location.png │ │ │ ├── house_icon.png │ │ │ ├── ice_cream_icon.png │ │ │ ├── money_bag_icon.png │ │ │ ├── neutral_button_image.png │ │ │ ├── neutral_orange_user_location.png │ │ │ ├── purple_button_image.png │ │ │ ├── purple_circle.png │ │ │ ├── purple_selected_burger.png │ │ │ ├── purple_selected_house.png │ │ │ ├── purple_selected_ice_cream.png │ │ │ ├── purple_selected_money.png │ │ │ ├── purple_unselected_burger.png │ │ │ ├── purple_unselected_house.png │ │ │ ├── purple_unselected_ice_cream.png │ │ │ ├── purple_unselected_money.png │ │ │ ├── purple_user_location.png │ │ │ ├── splash_fill_gradient_background.png │ │ │ ├── white_circle.png │ │ │ ├── white_unselected_bike.png │ │ │ └── white_unselected_house.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── bicycle_icon.png │ │ │ ├── blue_button_image.png │ │ │ ├── blue_circle.png │ │ │ ├── blue_selected_burger.png │ │ │ ├── blue_selected_house.png │ │ │ ├── blue_selected_ice_cream.png │ │ │ ├── blue_selected_money.png │ │ │ ├── blue_unselected_burger.png │ │ │ ├── blue_unselected_house.png │ │ │ ├── blue_unselected_ice_cream.png │ │ │ ├── blue_unselected_money.png │ │ │ ├── blue_user_location.png │ │ │ ├── cheese_burger_icon.png │ │ │ ├── divider_line.png │ │ │ ├── gray_button_image.png │ │ │ ├── gray_circle.png │ │ │ ├── gray_selected_bike.png │ │ │ ├── gray_selected_house.png │ │ │ ├── gray_user_location.png │ │ │ ├── green_button_image.png │ │ │ ├── green_circle.png │ │ │ ├── green_selected_money.png │ │ │ ├── green_unselected_money.png │ │ │ ├── green_user_location.png │ │ │ ├── house_icon.png │ │ │ ├── ice_cream_icon.png │ │ │ ├── money_bag_icon.png │ │ │ ├── neutral_button_image.png │ │ │ ├── neutral_orange_user_location.png │ │ │ ├── purple_button_image.png │ │ │ ├── purple_circle.png │ │ │ ├── purple_selected_burger.png │ │ │ ├── purple_selected_house.png │ │ │ ├── purple_selected_ice_cream.png │ │ │ ├── purple_selected_money.png │ │ │ ├── purple_unselected_burger.png │ │ │ ├── purple_unselected_house.png │ │ │ ├── purple_unselected_ice_cream.png │ │ │ ├── purple_unselected_money.png │ │ │ ├── purple_user_location.png │ │ │ ├── splash_fill_gradient_background.png │ │ │ ├── white_circle.png │ │ │ ├── white_unselected_bike.png │ │ │ └── white_unselected_house.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── bicycle_icon.png │ │ │ ├── blue_button_image.png │ │ │ ├── blue_circle.png │ │ │ ├── blue_selected_burger.png │ │ │ ├── blue_selected_house.png │ │ │ ├── blue_selected_ice_cream.png │ │ │ ├── blue_selected_money.png │ │ │ ├── blue_unselected_burger.png │ │ │ ├── blue_unselected_house.png │ │ │ ├── blue_unselected_ice_cream.png │ │ │ ├── blue_unselected_money.png │ │ │ ├── blue_user_location.png │ │ │ ├── cheese_burger_icon.png │ │ │ ├── divider_line.png │ │ │ ├── gray_button_image.png │ │ │ ├── gray_circle.png │ │ │ ├── gray_selected_bike.png │ │ │ ├── gray_selected_house.png │ │ │ ├── gray_user_location.png │ │ │ ├── green_button_image.png │ │ │ ├── green_circle.png │ │ │ ├── green_selected_money.png │ │ │ ├── green_unselected_money.png │ │ │ ├── green_user_location.png │ │ │ ├── house_icon.png │ │ │ ├── ice_cream_icon.png │ │ │ ├── money_bag_icon.png │ │ │ ├── neutral_button_image.png │ │ │ ├── neutral_orange_user_location.png │ │ │ ├── purple_button_image.png │ │ │ ├── purple_circle.png │ │ │ ├── purple_selected_burger.png │ │ │ ├── purple_selected_house.png │ │ │ ├── purple_selected_ice_cream.png │ │ │ ├── purple_selected_money.png │ │ │ ├── purple_unselected_burger.png │ │ │ ├── purple_unselected_house.png │ │ │ ├── purple_unselected_ice_cream.png │ │ │ ├── purple_unselected_money.png │ │ │ ├── purple_user_location.png │ │ │ ├── splash_fill_gradient_background.png │ │ │ ├── white_circle.png │ │ │ ├── white_unselected_bike.png │ │ │ └── white_unselected_house.png │ │ │ ├── font │ │ │ ├── bariol_bold.otf │ │ │ └── bariol_regular.otf │ │ │ ├── layout-land │ │ │ └── single_location_map_view_rv_card.xml │ │ │ ├── layout │ │ │ ├── activity_map.xml │ │ │ ├── activity_theme_picker.xml │ │ │ └── single_location_map_view_rv_card.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimensions.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── mapbox │ │ └── storelocator │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── TUTORIAL.md └── circle.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/README.md -------------------------------------------------------------------------------- /Store Finder Sketch file.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/Store Finder Sketch file.sketch -------------------------------------------------------------------------------- /StoreLocator/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/build.gradle -------------------------------------------------------------------------------- /StoreLocator/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/proguard-rules.pro -------------------------------------------------------------------------------- /StoreLocator/app/src/androidTest/java/com/mapbox/storelocator/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/androidTest/java/com/mapbox/storelocator/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /StoreLocator/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /StoreLocator/app/src/main/assets/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/assets/LICENSE.md -------------------------------------------------------------------------------- /StoreLocator/app/src/main/assets/list_of_locations.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/assets/list_of_locations.geojson -------------------------------------------------------------------------------- /StoreLocator/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/java/com/mapbox/storelocator/activity/MapActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/java/com/mapbox/storelocator/activity/MapActivity.java -------------------------------------------------------------------------------- /StoreLocator/app/src/main/java/com/mapbox/storelocator/activity/ThemePickerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/java/com/mapbox/storelocator/activity/ThemePickerActivity.java -------------------------------------------------------------------------------- /StoreLocator/app/src/main/java/com/mapbox/storelocator/adapter/LocationRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/java/com/mapbox/storelocator/adapter/LocationRecyclerViewAdapter.java -------------------------------------------------------------------------------- /StoreLocator/app/src/main/java/com/mapbox/storelocator/model/IndividualLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/java/com/mapbox/storelocator/model/IndividualLocation.java -------------------------------------------------------------------------------- /StoreLocator/app/src/main/java/com/mapbox/storelocator/util/LinearLayoutManagerWithSmoothScroller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/java/com/mapbox/storelocator/util/LinearLayoutManagerWithSmoothScroller.java -------------------------------------------------------------------------------- /StoreLocator/app/src/main/java/com/mapbox/storelocator/util/StringConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/java/com/mapbox/storelocator/util/StringConstants.java -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/bicycle_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/bicycle_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/blue_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/blue_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/blue_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/blue_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/blue_selected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/blue_selected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/blue_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/blue_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/blue_selected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/blue_selected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/blue_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/blue_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/blue_unselected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/blue_unselected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/blue_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/blue_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/blue_unselected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/blue_unselected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/blue_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/blue_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/blue_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/blue_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/cheese_burger_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/cheese_burger_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/divider_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/divider_line.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/gray_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/gray_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/gray_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/gray_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/gray_selected_bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/gray_selected_bike.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/gray_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/gray_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/gray_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/gray_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/green_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/green_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/green_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/green_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/green_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/green_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/green_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/green_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/green_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/green_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/house_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/house_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/ice_cream_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/ice_cream_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/money_bag_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/money_bag_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/neutral_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/neutral_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/neutral_orange_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/neutral_orange_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/purple_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/purple_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/purple_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/purple_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/purple_selected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/purple_selected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/purple_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/purple_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/purple_selected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/purple_selected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/purple_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/purple_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/purple_unselected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/purple_unselected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/purple_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/purple_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/purple_unselected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/purple_unselected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/purple_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/purple_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/purple_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/purple_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/splash_fill_gradient_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/splash_fill_gradient_background.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/white_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/white_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/white_unselected_bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/white_unselected_bike.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-hdpi/white_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-hdpi/white_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/bicycle_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/bicycle_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/blue_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/blue_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/blue_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/blue_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/blue_selected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/blue_selected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/blue_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/blue_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/blue_selected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/blue_selected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/blue_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/blue_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/blue_unselected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/blue_unselected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/blue_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/blue_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/blue_unselected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/blue_unselected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/blue_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/blue_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/blue_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/blue_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/cheese_burger_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/cheese_burger_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/divider_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/divider_line.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/gray_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/gray_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/gray_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/gray_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/gray_selected_bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/gray_selected_bike.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/gray_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/gray_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/gray_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/gray_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/green_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/green_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/green_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/green_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/green_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/green_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/green_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/green_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/green_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/green_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/house_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/house_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/ice_cream_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/ice_cream_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/money_bag_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/money_bag_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/neutral_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/neutral_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/neutral_orange_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/neutral_orange_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/purple_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/purple_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/purple_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/purple_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/purple_selected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/purple_selected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/purple_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/purple_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/purple_selected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/purple_selected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/purple_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/purple_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/purple_unselected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/purple_unselected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/purple_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/purple_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/purple_unselected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/purple_unselected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/purple_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/purple_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/purple_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/purple_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/splash_fill_gradient_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/splash_fill_gradient_background.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/white_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/white_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/white_unselected_bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/white_unselected_bike.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-mdpi/white_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-mdpi/white_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/bicycle_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/bicycle_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/blue_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/blue_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/blue_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/blue_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/blue_selected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/blue_selected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/blue_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/blue_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/blue_selected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/blue_selected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/blue_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/blue_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/blue_unselected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/blue_unselected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/blue_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/blue_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/blue_unselected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/blue_unselected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/blue_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/blue_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/blue_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/blue_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/cheese_burger_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/cheese_burger_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/divider_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/divider_line.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/gray_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/gray_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/gray_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/gray_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/gray_selected_bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/gray_selected_bike.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/gray_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/gray_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/gray_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/gray_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/green_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/green_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/green_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/green_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/green_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/green_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/green_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/green_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/green_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/green_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/house_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/house_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/ice_cream_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/ice_cream_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/money_bag_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/money_bag_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/neutral_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/neutral_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/neutral_orange_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/neutral_orange_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/purple_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/purple_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/purple_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/purple_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/purple_selected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/purple_selected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/purple_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/purple_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/purple_selected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/purple_selected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/purple_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/purple_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/purple_unselected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/purple_unselected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/purple_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/purple_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/purple_unselected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/purple_unselected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/purple_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/purple_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/purple_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/purple_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/splash_fill_gradient_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/splash_fill_gradient_background.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/white_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/white_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/white_unselected_bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/white_unselected_bike.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xhdpi/white_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xhdpi/white_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/bicycle_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/bicycle_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/blue_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/blue_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/blue_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/blue_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/blue_selected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/blue_selected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/blue_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/blue_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/blue_selected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/blue_selected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/blue_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/blue_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/blue_unselected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/blue_unselected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/blue_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/blue_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/blue_unselected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/blue_unselected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/blue_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/blue_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/blue_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/blue_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/cheese_burger_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/cheese_burger_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/divider_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/divider_line.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/gray_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/gray_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/gray_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/gray_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/gray_selected_bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/gray_selected_bike.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/gray_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/gray_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/gray_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/gray_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/green_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/green_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/green_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/green_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/green_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/green_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/green_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/green_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/green_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/green_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/house_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/house_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/ice_cream_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/ice_cream_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/money_bag_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/money_bag_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/neutral_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/neutral_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/neutral_orange_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/neutral_orange_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/purple_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/purple_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/purple_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/purple_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/purple_selected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/purple_selected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/purple_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/purple_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/purple_selected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/purple_selected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/purple_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/purple_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/purple_unselected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/purple_unselected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/purple_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/purple_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/purple_unselected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/purple_unselected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/purple_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/purple_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/purple_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/purple_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/splash_fill_gradient_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/splash_fill_gradient_background.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/white_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/white_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/white_unselected_bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/white_unselected_bike.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxhdpi/white_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxhdpi/white_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/bicycle_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/bicycle_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_selected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_selected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_selected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_selected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_unselected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_unselected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_unselected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_unselected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/blue_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/cheese_burger_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/cheese_burger_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/divider_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/divider_line.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/gray_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/gray_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/gray_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/gray_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/gray_selected_bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/gray_selected_bike.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/gray_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/gray_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/gray_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/gray_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/green_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/green_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/green_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/green_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/green_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/green_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/green_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/green_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/green_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/green_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/house_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/house_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/ice_cream_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/ice_cream_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/money_bag_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/money_bag_icon.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/neutral_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/neutral_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/neutral_orange_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/neutral_orange_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_button_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_button_image.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_selected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_selected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_selected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_selected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_selected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_selected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_selected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_selected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_unselected_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_unselected_burger.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_unselected_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_unselected_ice_cream.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_unselected_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_unselected_money.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_user_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/purple_user_location.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/splash_fill_gradient_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/splash_fill_gradient_background.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/white_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/white_circle.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/white_unselected_bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/white_unselected_bike.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/drawable-xxxhdpi/white_unselected_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/drawable-xxxhdpi/white_unselected_house.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/font/bariol_bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/font/bariol_bold.otf -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/font/bariol_regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/font/bariol_regular.otf -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/layout-land/single_location_map_view_rv_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/layout-land/single_location_map_view_rv_card.xml -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/layout/activity_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/layout/activity_map.xml -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/layout/activity_theme_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/layout/activity_theme_picker.xml -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/layout/single_location_map_view_rv_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/layout/single_location_map_view_rv_card.xml -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/values/dimensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/values/dimensions.xml -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /StoreLocator/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /StoreLocator/app/src/test/java/com/mapbox/storelocator/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/app/src/test/java/com/mapbox/storelocator/ExampleUnitTest.java -------------------------------------------------------------------------------- /StoreLocator/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/build.gradle -------------------------------------------------------------------------------- /StoreLocator/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/gradle.properties -------------------------------------------------------------------------------- /StoreLocator/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /StoreLocator/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /StoreLocator/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/gradlew -------------------------------------------------------------------------------- /StoreLocator/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/StoreLocator/gradlew.bat -------------------------------------------------------------------------------- /StoreLocator/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/TUTORIAL.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/store-locator-android/HEAD/circle.yml --------------------------------------------------------------------------------