├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── icon_bus_station.png │ ├── icon_end.png │ ├── icon_road_blue_arrow.png │ ├── icon_road_green_arrow.png │ ├── icon_road_nofocus.png │ ├── icon_road_red_arrow.png │ ├── icon_road_yellow_arrow.png │ ├── icon_start.png │ ├── icon_subway_station.png │ ├── icon_walk_route.png │ ├── night_baidu.data │ ├── panorama.html │ └── region.json │ ├── java │ ├── com │ │ ├── amap │ │ │ └── mapapi │ │ │ │ └── overlay │ │ │ │ ├── AMapServicesUtil.java │ │ │ │ ├── AMapUtil.java │ │ │ │ ├── BusLineOverlay.java │ │ │ │ ├── BusRouteOverlay.java │ │ │ │ ├── ChString.java │ │ │ │ ├── DrivingRouteOverlay.java │ │ │ │ ├── PoiOverlay.java │ │ │ │ ├── RideRouteOverlay.java │ │ │ │ ├── RouteOverlay.java │ │ │ │ ├── TraceOverlay.java │ │ │ │ └── WalkRouteOverlay.java │ │ └── baidu │ │ │ └── mapapi │ │ │ └── overlayutil │ │ │ ├── BikingRouteOverlay.java │ │ │ ├── BusLineOverlay.java │ │ │ ├── DrivingRouteOverlay.java │ │ │ ├── MassTransitRouteOverlay.java │ │ │ ├── OverlayManager.java │ │ │ ├── TransitRouteOverlay.java │ │ │ └── WalkingRouteOverlay.java │ └── me │ │ └── gfuil │ │ └── bmap │ │ └── lite │ │ ├── BApp.java │ │ ├── activity │ │ ├── AboutActivity.java │ │ ├── ChangeCityActivity.java │ │ ├── FavoriteActivity.java │ │ ├── MainActivity.java │ │ ├── OfflineMapActivity.java │ │ ├── PanoramaActivity.java │ │ ├── RouteActivity.java │ │ ├── RouteAmapBusActivity.java │ │ ├── RouteBaiduBusActivity.java │ │ ├── SearchActivity.java │ │ ├── SelectPoiActivity.java │ │ ├── SettingActivity.java │ │ └── WebActivity.java │ │ ├── adapter │ │ ├── AboutAdapter.java │ │ ├── AmapBusRouteAdapter.java │ │ ├── AmapDownloadCityAdapter.java │ │ ├── BaiduBusRouteAdapter.java │ │ ├── BaiduDownloadCityAdapter.java │ │ ├── BaiduIndoorInfoAdapter.java │ │ ├── OfflineCityExpandAdapter.java │ │ ├── RegionExpandAdapter.java │ │ ├── RouteDetailsAdapter.java │ │ ├── RouteHistoryAdapter.java │ │ ├── SearchHotAdapter.java │ │ ├── SearchKeywordAdapter.java │ │ ├── SearchPoiResultAdapter.java │ │ ├── SearchResultRecyclerAdapter.java │ │ ├── SearchSuggtionCityAdapter.java │ │ ├── SearchTipsAdatper.java │ │ └── ViewPagerAdapter.java │ │ ├── base │ │ ├── BaseActivity.java │ │ ├── BaseExpandableAdapter.java │ │ ├── BaseFragment.java │ │ ├── BaseListAdapter.java │ │ ├── BaseRecyclerAdapter.java │ │ └── OnBaseListener.java │ │ ├── fragment │ │ ├── AmapBusFragment.java │ │ ├── AmapDownloadMapFragment.java │ │ ├── AmapFragment.java │ │ ├── AmapRouteFragment.java │ │ ├── AmapSelectPoiFragment.java │ │ ├── BaiduBusFragment.java │ │ ├── BaiduDownloadMapFragment.java │ │ ├── BaiduMapFragment.java │ │ ├── BaiduMapRouteFragment.java │ │ ├── BaiduMapSelectPoiFragment.java │ │ ├── OfflineMapFragment.java │ │ └── RouteHistoryFragment.java │ │ ├── interacter │ │ ├── CacheInteracter.java │ │ ├── ConfigInteracter.java │ │ ├── FavoriteInteracter.java │ │ └── SearchInteracter.java │ │ ├── listener │ │ ├── MyOrientationListener.java │ │ ├── OnSearchResultListener.java │ │ └── OnSearchTipsListener.java │ │ ├── model │ │ ├── AboutModel.java │ │ ├── BusRouteModel.java │ │ ├── MyPoiModel.java │ │ ├── MyRegionModel.java │ │ ├── RouteHistoryModel.java │ │ ├── TypeMap.java │ │ ├── TypeNavigation.java │ │ ├── TypePoi.java │ │ └── TypeSearch.java │ │ ├── tools │ │ └── ADFilterTools.java │ │ ├── utils │ │ ├── AppUtils.java │ │ ├── FileUtils.java │ │ ├── LogUtils.java │ │ ├── PermissionUtils.java │ │ ├── PreferenceUtils.java │ │ ├── StatusBarUtils.java │ │ ├── StringUtils.java │ │ └── TimeUtils.java │ │ └── view │ │ └── LoadMoreListView.java │ └── res │ ├── drawable-hdpi │ ├── amap_bus.png │ ├── amap_car.png │ ├── amap_end.png │ ├── amap_man.png │ ├── amap_ride.png │ ├── amap_start.png │ ├── amap_through.png │ ├── dir1.png │ ├── dir10.png │ ├── dir11.png │ ├── dir12.png │ ├── dir13.png │ ├── dir14.png │ ├── dir15.png │ ├── dir16.png │ ├── dir2.png │ ├── dir3.png │ ├── dir4.png │ ├── dir5.png │ ├── dir6.png │ ├── dir7.png │ ├── dir8.png │ ├── dir9.png │ ├── ic_call_24dp.png │ ├── ic_close_24dp.png │ ├── ic_close_white_24dp.png │ ├── ic_compare_arrows_24dp.png │ ├── ic_delete_forever_24dp.png │ ├── ic_directions_bus_18dp.png │ ├── ic_directions_bus_24dp.png │ ├── ic_directions_primary_24dp.png │ ├── ic_directions_subway_18dp.png │ ├── ic_directions_subway_24dp.png │ ├── ic_directions_white_24dp.png │ ├── ic_explore_24dp.png │ ├── ic_grade_18dp.png │ ├── ic_grade_24dp.png │ ├── ic_grade_point.png │ ├── ic_grade_point_2.png │ ├── ic_grade_white_24dp.png │ ├── ic_history_18dp.png │ ├── ic_info_18dp.png │ ├── ic_info_24dp.png │ ├── ic_local_convenience_store_18dp.png │ ├── ic_local_gas_station_18dp.png │ ├── ic_local_grocery_store_18dp.png │ ├── ic_local_hospital_18dp.png │ ├── ic_local_hotel_18dp.png │ ├── ic_local_mall_18dp.png │ ├── ic_local_movies_18dp.png │ ├── ic_local_parking_black_18dp.png │ ├── ic_local_see_18dp.png │ ├── ic_map_18dp.png │ ├── ic_map_24dp.png │ ├── ic_my_location_24dp.png │ ├── ic_near_me_24dp.png │ ├── ic_restaurant_menu_18dp.png │ ├── ic_satellite_24dp.png │ ├── ic_search_white_24dp.png │ ├── ic_settings_24dp.png │ ├── ic_share_18dp.png │ ├── ic_share_white_24dp.png │ ├── ic_store_mall_directory_18dp.png │ ├── ic_straighten_24dp.png │ ├── ic_streetview_24dp.png │ ├── ic_terrain_18dp.png │ ├── ic_traffic_24dp.png │ ├── ic_undo_24dp.png │ ├── icon_gcoding.png │ ├── icon_gcoding_2.png │ ├── map_location_marker.png │ └── maps_dav_compass_needle_large.png │ ├── drawable-mdpi │ ├── bus.png │ ├── car.png │ ├── end.png │ ├── ic_call_24dp.png │ ├── ic_close_24dp.png │ ├── ic_close_white_24dp.png │ ├── ic_compare_arrows_24dp.png │ ├── ic_delete_forever_24dp.png │ ├── ic_directions_bus_18dp.png │ ├── ic_directions_bus_24dp.png │ ├── ic_directions_primary_24dp.png │ ├── ic_directions_subway_18dp.png │ ├── ic_directions_subway_24dp.png │ ├── ic_directions_white_24dp.png │ ├── ic_explore_24dp.png │ ├── ic_grade_18dp.png │ ├── ic_grade_24dp.png │ ├── ic_grade_white_24dp.png │ ├── ic_history_18dp.png │ ├── ic_info_18dp.png │ ├── ic_info_24dp.png │ ├── ic_local_convenience_store_18dp.png │ ├── ic_local_gas_station_18dp.png │ ├── ic_local_grocery_store_18dp.png │ ├── ic_local_hospital_18dp.png │ ├── ic_local_hotel_18dp.png │ ├── ic_local_mall_18dp.png │ ├── ic_local_movies_18dp.png │ ├── ic_local_parking_black_18dp.png │ ├── ic_local_see_18dp.png │ ├── ic_map_18dp.png │ ├── ic_map_24dp.png │ ├── ic_my_location_24dp.png │ ├── ic_near_me_24dp.png │ ├── ic_restaurant_menu_18dp.png │ ├── ic_satellite_24dp.png │ ├── ic_search_white_24dp.png │ ├── ic_settings_24dp.png │ ├── ic_share_18dp.png │ ├── ic_share_white_24dp.png │ ├── ic_store_mall_directory_18dp.png │ ├── ic_straighten_24dp.png │ ├── ic_streetview_24dp.png │ ├── ic_terrain_18dp.png │ ├── ic_traffic_24dp.png │ ├── ic_undo_24dp.png │ ├── man.png │ └── start.png │ ├── drawable-v21 │ ├── bg_btn_poi_selector.xml │ └── bg_btn_poi_selector_2.xml │ ├── drawable-xhdpi │ ├── bus.png │ ├── car.png │ ├── end.png │ ├── ic_call_24dp.png │ ├── ic_close_24dp.png │ ├── ic_close_white_24dp.png │ ├── ic_compare_arrows_24dp.png │ ├── ic_delete_forever_24dp.png │ ├── ic_directions_bus_18dp.png │ ├── ic_directions_bus_24dp.png │ ├── ic_directions_primary_24dp.png │ ├── ic_directions_subway_18dp.png │ ├── ic_directions_subway_24dp.png │ ├── ic_directions_white_24dp.png │ ├── ic_explore_24dp.png │ ├── ic_grade_18dp.png │ ├── ic_grade_24dp.png │ ├── ic_grade_white_24dp.png │ ├── ic_history_18dp.png │ ├── ic_info_18dp.png │ ├── ic_info_24dp.png │ ├── ic_local_convenience_store_18dp.png │ ├── ic_local_gas_station_18dp.png │ ├── ic_local_grocery_store_18dp.png │ ├── ic_local_hospital_18dp.png │ ├── ic_local_hotel_18dp.png │ ├── ic_local_mall_18dp.png │ ├── ic_local_movies_18dp.png │ ├── ic_local_parking_black_18dp.png │ ├── ic_local_see_18dp.png │ ├── ic_map_18dp.png │ ├── ic_map_24dp.png │ ├── ic_my_location_24dp.png │ ├── ic_near_me_24dp.png │ ├── ic_restaurant_menu_18dp.png │ ├── ic_satellite_24dp.png │ ├── ic_search_white_24dp.png │ ├── ic_settings_24dp.png │ ├── ic_share_18dp.png │ ├── ic_share_white_24dp.png │ ├── ic_store_mall_directory_18dp.png │ ├── ic_straighten_24dp.png │ ├── ic_streetview_24dp.png │ ├── ic_terrain_18dp.png │ ├── ic_traffic_24dp.png │ ├── ic_undo_24dp.png │ ├── man.png │ └── start.png │ ├── drawable-xxhdpi │ ├── ic_call_24dp.png │ ├── ic_close_24dp.png │ ├── ic_close_white_24dp.png │ ├── ic_compare_arrows_24dp.png │ ├── ic_delete_forever_24dp.png │ ├── ic_directions_bus_18dp.png │ ├── ic_directions_bus_24dp.png │ ├── ic_directions_primary_24dp.png │ ├── ic_directions_subway_18dp.png │ ├── ic_directions_subway_24dp.png │ ├── ic_directions_white_24dp.png │ ├── ic_explore_24dp.png │ ├── ic_grade_18dp.png │ ├── ic_grade_24dp.png │ ├── ic_grade_white_24dp.png │ ├── ic_history_18dp.png │ ├── ic_info_18dp.png │ ├── ic_info_24dp.png │ ├── ic_local_convenience_store_18dp.png │ ├── ic_local_gas_station_18dp.png │ ├── ic_local_grocery_store_18dp.png │ ├── ic_local_hospital_18dp.png │ ├── ic_local_hotel_18dp.png │ ├── ic_local_mall_18dp.png │ ├── ic_local_movies_18dp.png │ ├── ic_local_parking_black_18dp.png │ ├── ic_local_see_18dp.png │ ├── ic_map_18dp.png │ ├── ic_map_24dp.png │ ├── ic_my_location_24dp.png │ ├── ic_near_me_24dp.png │ ├── ic_restaurant_menu_18dp.png │ ├── ic_satellite_24dp.png │ ├── ic_search_white_24dp.png │ ├── ic_settings_24dp.png │ ├── ic_share_18dp.png │ ├── ic_share_white_24dp.png │ ├── ic_store_mall_directory_18dp.png │ ├── ic_straighten_24dp.png │ ├── ic_streetview_24dp.png │ ├── ic_terrain_18dp.png │ ├── ic_traffic_24dp.png │ └── ic_undo_24dp.png │ ├── drawable-xxxhdpi │ ├── ic_call_24dp.png │ ├── ic_close_24dp.png │ ├── ic_close_white_24dp.png │ ├── ic_compare_arrows_24dp.png │ ├── ic_delete_forever_24dp.png │ ├── ic_directions_bus_18dp.png │ ├── ic_directions_bus_24dp.png │ ├── ic_directions_primary_24dp.png │ ├── ic_directions_subway_18dp.png │ ├── ic_directions_subway_24dp.png │ ├── ic_directions_white_24dp.png │ ├── ic_explore_24dp.png │ ├── ic_grade_18dp.png │ ├── ic_grade_24dp.png │ ├── ic_grade_white_24dp.png │ ├── ic_history_18dp.png │ ├── ic_info_18dp.png │ ├── ic_info_24dp.png │ ├── ic_local_convenience_store_18dp.png │ ├── ic_local_gas_station_18dp.png │ ├── ic_local_grocery_store_18dp.png │ ├── ic_local_hospital_18dp.png │ ├── ic_local_hotel_18dp.png │ ├── ic_local_mall_18dp.png │ ├── ic_local_movies_18dp.png │ ├── ic_local_parking_black_18dp.png │ ├── ic_local_see_18dp.png │ ├── ic_map_18dp.png │ ├── ic_map_24dp.png │ ├── ic_my_location_24dp.png │ ├── ic_near_me_24dp.png │ ├── ic_restaurant_menu_18dp.png │ ├── ic_satellite_24dp.png │ ├── ic_search_white_24dp.png │ ├── ic_settings_24dp.png │ ├── ic_share_18dp.png │ ├── ic_share_white_24dp.png │ ├── ic_store_mall_directory_18dp.png │ ├── ic_straighten_24dp.png │ ├── ic_streetview_24dp.png │ ├── ic_terrain_18dp.png │ ├── ic_traffic_24dp.png │ └── ic_undo_24dp.png │ ├── drawable │ ├── bg_btn_poi_selector.xml │ ├── bg_btn_poi_selector_2.xml │ ├── shape_point.xml │ ├── shape_point_poi.xml │ └── side_nav_bar.xml │ ├── layout │ ├── activity_about.xml │ ├── activity_change_city.xml │ ├── activity_favorite.xml │ ├── activity_main.xml │ ├── activity_offline_map.xml │ ├── activity_panorama.xml │ ├── activity_panorama2.xml │ ├── activity_ranging.xml │ ├── activity_route.xml │ ├── activity_route_bus_amap.xml │ ├── activity_route_bus_baidu.xml │ ├── activity_search.xml │ ├── activity_select_poi.xml │ ├── activity_setting.xml │ ├── activity_web.xml │ ├── fragment_bus.xml │ ├── fragment_map_amap.xml │ ├── fragment_map_amap_route.xml │ ├── fragment_map_baidu.xml │ ├── fragment_map_baidu_route.xml │ ├── fragment_route_history.xml │ ├── item_about.xml │ ├── item_bus_route.xml │ ├── item_download_city.xml │ ├── item_indoor_floor.xml │ ├── item_route_details.xml │ ├── item_search_history.xml │ ├── item_search_hot.xml │ ├── item_search_result.xml │ ├── item_search_tips.xml │ ├── item_suggion_city.xml │ ├── view_bottom_sheet_bus.xml │ ├── view_bottom_sheet_navigation.xml │ ├── view_bottom_sheet_poi.xml │ ├── view_bottom_sheet_search_result.xml │ ├── view_header.xml │ ├── view_line.xml │ ├── view_load_more_footer.xml │ └── view_topbar.xml │ ├── menu │ ├── activity_main_drawer.xml │ ├── favorite.xml │ ├── main.xml │ ├── offline_map.xml │ ├── ranging.xml │ ├── route.xml │ ├── search.xml │ ├── search_othor.xml │ ├── select_poi.xml │ └── web.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-night │ ├── colors.xml │ └── styles.xml │ ├── values-v21 │ └── styles.xml │ └── values │ ├── arrays.xml │ ├── arrays_div_ad.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── build.gradle ├── debug.jks ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio Navigation editor temp files 30 | .navigation/ 31 | 32 | # Android Studio captures folder 33 | captures/ 34 | 35 | # IntelliJ 36 | *.iml 37 | .idea/workspace.xml 38 | .idea/tasks.xml 39 | .idea/gradle.xml 40 | .idea/assetWizardSettings.xml 41 | .idea/dictionaries 42 | .idea/libraries 43 | .idea/caches 44 | 45 | # Keystore files 46 | # Uncomment the following line if you do not want to check your keystore files in. 47 | #*.jks 48 | 49 | # External native build folder generated in Android Studio 2.2 and later 50 | .externalNativeBuild 51 | 52 | # Google Services (e.g. APIs or Firebase) 53 | google-services.json 54 | 55 | # Freeline 56 | freeline.py 57 | freeline/ 58 | freeline_project_description.json 59 | 60 | # fastlane 61 | fastlane/report.xml 62 | fastlane/Preview.html 63 | fastlane/screenshots 64 | fastlane/test_output 65 | fastlane/readme.md 66 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BmapLite 2 | 3 | 基于百度地图SDK、高德地图SDK开发的可换源的地图app,Bmap的简版,不含导航组件 4 | 需自行下载百度地图sdk放到项目lib中编译 5 | 6 | [Bmap 下载地址](http://www.coolapk.com/apk/me.gfuil.bmap) 7 | 8 | [Bmap 官方网站](http://www.bmap6.cn/) 9 | 10 | BmapLite开源代码仅供学习交流使用。 11 | 12 | 鄙视APP市场上使用该源码盈利、蹭国家北斗导航的名头,欺骗用户的人或公司,你们都是一群垃圾、社会蛀虫,善恶有报,你们终将尝到恶果!祝你们出行不顺利,旅途不愉快。🙂 13 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | signingConfigs { 5 | debugConfig { 6 | keyAlias 'debug' 7 | keyPassword 'qaz123' 8 | storeFile file('../debug.jks') 9 | storePassword 'qaz123' 10 | } 11 | 12 | } 13 | compileSdkVersion 27 14 | buildToolsVersion '27.0.3' 15 | defaultConfig { 16 | applicationId "me.gfuil.bmap.lite" 17 | minSdkVersion 15 18 | targetSdkVersion 27 19 | versionCode 2 20 | versionName "1.1" 21 | multiDexEnabled true 22 | ndk { abiFilters "armeabi" } 23 | } 24 | sourceSets { 25 | main { 26 | jniLibs.srcDirs = ['libs'] 27 | } 28 | } 29 | buildTypes { 30 | release { 31 | minifyEnabled false 32 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 33 | signingConfig signingConfigs.debugConfig 34 | } 35 | debug { 36 | signingConfig signingConfigs.debugConfig 37 | versionNameSuffix '.debug' 38 | } 39 | } 40 | repositories { 41 | flatDir { 42 | dirs 'libs' 43 | } 44 | } 45 | lintOptions { 46 | abortOnError false 47 | } 48 | productFlavors { 49 | } 50 | } 51 | 52 | dependencies { 53 | implementation fileTree(include: ['*.jar'], dir: 'libs') 54 | implementation 'com.android.support:appcompat-v7:27.1.1' 55 | implementation 'com.android.support:design:27.1.1' 56 | implementation 'com.android.support:cardview-v7:27.1.1' 57 | implementation 'com.android.support:support-v13:27.1.1' 58 | implementation 'com.android.support:multidex:1.0.3' 59 | implementation 'com.amap.api:3dmap:6.3.0' 60 | implementation 'com.amap.api:search:6.1.0' 61 | } 62 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /app/src/main/assets/icon_bus_station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/assets/icon_bus_station.png -------------------------------------------------------------------------------- /app/src/main/assets/icon_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/assets/icon_end.png -------------------------------------------------------------------------------- /app/src/main/assets/icon_road_blue_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/assets/icon_road_blue_arrow.png -------------------------------------------------------------------------------- /app/src/main/assets/icon_road_green_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/assets/icon_road_green_arrow.png -------------------------------------------------------------------------------- /app/src/main/assets/icon_road_nofocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/assets/icon_road_nofocus.png -------------------------------------------------------------------------------- /app/src/main/assets/icon_road_red_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/assets/icon_road_red_arrow.png -------------------------------------------------------------------------------- /app/src/main/assets/icon_road_yellow_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/assets/icon_road_yellow_arrow.png -------------------------------------------------------------------------------- /app/src/main/assets/icon_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/assets/icon_start.png -------------------------------------------------------------------------------- /app/src/main/assets/icon_subway_station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/assets/icon_subway_station.png -------------------------------------------------------------------------------- /app/src/main/assets/icon_walk_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/assets/icon_walk_route.png -------------------------------------------------------------------------------- /app/src/main/assets/night_baidu.data: -------------------------------------------------------------------------------- 1 | [{"featureType":"land","elementType":"geometry","stylers":{"color":"#212121"}},{"featureType":"building","elementType":"geometry","stylers":{"color":"#2b2b2b"}},{"featureType":"highway","elementType":"geometry.stroke","stylers":{"color":"#2e2e2e"}},{"featureType":"highway","elementType":"geometry.fill","stylers":{"color":"#6f695d"}},{"featureType":"arterial","elementType":"geometry.fill","stylers":{"color":"#33342e"}},{"featureType":"arterial","elementType":"geometry.stroke","stylers":{"color":"#0f0f0f"}},{"featureType":"green","elementType":"geometry","stylers":{"color":"#1b1b1b"}},{"featureType":"water","elementType":"geometry","stylers":{"color":"#181818"}},{"featureType":"subway","elementType":"geometry.stroke","stylers":{"color":"#181818"}},{"featureType":"manmade","elementType":"geometry","stylers":{"color":"#1b1b1b"}},{"featureType":"local","elementType":"geometry","stylers":{"color":"#3d3d3d"}},{"featureType":"boundary","elementType":"geometry","stylers":{"color":"#5f5e5c"}},{"featureType":"districtlabel","elementType":"labels.text.stroke","stylers":{"color":"#313131"}},{"featureType":"districtlabel","elementType":"labels.text.fill","stylers":{"color":"#8b8787"}},{"featureType":"poilabel","elementType":"labels.text.stroke","stylers":{"color":"#313131"}},{"featureType":"poilabel","elementType":"labels.text.fill","stylers":{"color":"#8b8787"}},{"featureType":"highway","elementType":"labels.text.stroke","stylers":{"color":"#313131"}},{"featureType":"highway","elementType":"labels.text.fill","stylers":{"color":"#8b8787"}},{"featureType":"arterial","elementType":"labels.text.stroke","stylers":{"color":"#313131"}},{"featureType":"arterial","elementType":"labels.text.fill","stylers":{"color":"#8b8787"}},{"featureType":"local","elementType":"labels.text.stroke","stylers":{"color":"#313131"}},{"featureType":"local","elementType":"labels.text.fill","stylers":{"color":"#8b8787"}}] -------------------------------------------------------------------------------- /app/src/main/assets/panorama.html: -------------------------------------------------------------------------------- 1 | 全景图
-------------------------------------------------------------------------------- /app/src/main/assets/region.json: -------------------------------------------------------------------------------- 1 | [{"a":"直辖市及特区","b":"北京,天津,上海,重庆,香港,澳门"},{"a":"安徽","b":"安庆,蚌埠,巢湖,池州,滁州,阜阳,淮北,淮南,黄山,六安,马鞍山,宿州,铜陵,芜湖,宣城,亳州,合肥"},{"a":"福建","b":"福州,龙岩,南平,宁德,莆田,泉州,三明,厦门,漳州"},{"a":"甘肃","b":"兰州,白银,定西,甘南,嘉峪关,金昌,酒泉,临夏,陇南,平凉,庆阳,天水,武威,张掖"},{"a":"广东","b":"广州,深圳,潮州,东莞,佛山,河源,惠州,江门,揭阳,茂名,梅州,清远,汕头,汕尾,韶关,阳江,云浮,湛江,肇庆,中山,珠海"},{"a":"广西","b":"南宁,桂林,百色,北海,崇左,防城港,贵港,河池,贺州,来宾,柳州,钦州,梧州,玉林"},{"a":"贵州","b":"贵阳,安顺,毕节,六盘水,黔东南,黔南,黔西南,铜仁,遵义"},{"a":"海南","b":"海口,三亚,白沙,保亭,昌江,澄迈县,定安县,东方,乐东,临高县,陵水,琼海,琼中,屯昌县,万宁,文昌,五指山,儋州"},{"a":"河北","b":"石家庄,保定,沧州,承德,邯郸,衡水,廊坊,秦皇岛,唐山,邢台,张家口"},{"a":"河南","b":"郑州,洛阳,开封,安阳,鹤壁,济源,焦作,南阳,平顶山,三门峡,商丘,新乡,信阳,许昌,周口,驻马店,漯河,濮阳"},{"a":"黑龙江","b":"哈尔滨,大庆,大兴安岭,鹤岗,黑河,鸡西,佳木斯,牡丹江,七台河,齐齐哈尔,双鸭山,绥化,伊春"},{"a":"湖北","b":"武汉,仙桃,鄂州,黄冈,黄石,荆门,荆州,潜江,神农架林区,十堰,随州,天门,咸宁,襄樊,孝感,宜昌,恩施"},{"a":"湖南","b":"长沙,张家界,常德,郴州,衡阳,怀化,娄底,邵阳,湘潭,湘西,益阳,永州,岳阳,株洲"},{"a":"吉林","b":"长春,吉林,白城,白山,辽源,四平,松原,通化,延边"},{"a":"江苏","b":"南京,苏州,无锡,常州,淮安,连云港,南通,宿迁,泰州,徐州,盐城,扬州,镇江"},{"a":"江西","b":"南昌,抚州,赣州,吉安,景德镇,九江,萍乡,上饶,新余,宜春,鹰潭"},{"a":"辽宁","b":"沈阳,大连,鞍山,本溪,朝阳,丹东,抚顺,阜新,葫芦岛,锦州,辽阳,盘锦,铁岭,营口"},{"a":"内蒙古","b":"呼和浩特,阿拉善盟,巴彦淖尔盟,包头,赤峰,鄂尔多斯,呼伦贝尔,通辽,乌海,乌兰察布市,锡林郭勒盟,兴安盟"},{"a":"宁夏","b":"银川,固原,石嘴山,吴忠,中卫"},{"a":"青海","b":"西宁,果洛,海北,海东,海南,海西,黄南,玉树"},{"a":"山东","b":"济南,青岛,滨州,德州,东营,菏泽,济宁,莱芜,聊城,临沂,日照,泰安,威海,潍坊,烟台,枣庄,淄博"},{"a":"山西","b":"太原,长治,大同,晋城,晋中,临汾,吕梁,朔州,忻州,阳泉,运城"},{"a":"陕西","b":"西安,安康,宝鸡,汉中,商洛,铜川,渭南,咸阳,延安,榆林"},{"a":"四川","b":"成都,绵阳,阿坝,巴中,达州,德阳,甘孜,广安,广元,乐山,凉山,眉山,南充,内江,攀枝花,遂宁,雅安,宜宾,资阳,自贡,泸州"},{"a":"西藏","b":"拉萨,阿里,昌都,林芝,那曲,日喀则,山南"},{"a":"新疆","b":"乌鲁木齐,阿克苏,阿拉尔,巴音郭楞,博尔塔拉,昌吉,哈密,和田,喀什,克拉玛依,克孜勒苏,石河子,图木舒克,吐鲁番,五家渠,伊犁"},{"a":"云南","b":"昆明,怒江,普洱,丽江,保山,楚雄,大理,德宏,迪庆,红河,临沧,曲靖,文山,西双版纳,玉溪,昭通"},{"a":"浙江","b":"杭州,湖州,嘉兴,金华,丽水,宁波,绍兴,台州,温州,舟山,衢州"},{"a":"台湾","b":"台北,台北,高雄,基隆,台中,台南,新竹,嘉义"}] -------------------------------------------------------------------------------- /app/src/main/java/com/amap/mapapi/overlay/AMapServicesUtil.java: -------------------------------------------------------------------------------- 1 | package com.amap.mapapi.overlay; 2 | 3 | /** 4 | * 5 | */ 6 | 7 | import java.io.ByteArrayOutputStream; 8 | import java.io.IOException; 9 | import java.io.InputStream; 10 | import java.util.ArrayList; 11 | import java.util.List; 12 | import android.graphics.Bitmap; 13 | 14 | import com.amap.api.maps.model.LatLng; 15 | import com.amap.api.services.core.LatLonPoint; 16 | 17 | class AMapServicesUtil { 18 | public static int BUFFER_SIZE = 2048; 19 | 20 | public static byte[] inputStreamToByte(InputStream in) throws IOException { 21 | 22 | ByteArrayOutputStream outStream = new ByteArrayOutputStream(); 23 | byte[] data = new byte[BUFFER_SIZE]; 24 | int count = -1; 25 | while ((count = in.read(data, 0, BUFFER_SIZE)) != -1) 26 | outStream.write(data, 0, count); 27 | 28 | data = null; 29 | return outStream.toByteArray(); 30 | } 31 | public static LatLonPoint convertToLatLonPoint(LatLng latlon) { 32 | return new LatLonPoint(latlon.latitude, latlon.longitude); 33 | } 34 | public static LatLng convertToLatLng(LatLonPoint latLonPoint) { 35 | return new LatLng(latLonPoint.getLatitude(), latLonPoint.getLongitude()); 36 | } 37 | public static ArrayList convertArrList(List shapes) { 38 | ArrayList lineShapes = new ArrayList(); 39 | for (LatLonPoint point : shapes) { 40 | LatLng latLngTemp = AMapServicesUtil.convertToLatLng(point); 41 | lineShapes.add(latLngTemp); 42 | } 43 | return lineShapes; 44 | } 45 | public static Bitmap zoomBitmap(Bitmap bitmap, float res) { 46 | if (bitmap == null) { 47 | return null; 48 | } 49 | int width, height; 50 | width = (int) (bitmap.getWidth() * res); 51 | height = (int) (bitmap.getHeight() * res); 52 | Bitmap newbmp = Bitmap.createScaledBitmap(bitmap, width, height, true); 53 | return newbmp; 54 | } 55 | 56 | } 57 | -------------------------------------------------------------------------------- /app/src/main/java/com/amap/mapapi/overlay/ChString.java: -------------------------------------------------------------------------------- 1 | package com.amap.mapapi.overlay; 2 | 3 | public class ChString { 4 | public static final String Kilometer = "\u516c\u91cc";// "公里"; 5 | public static final String Meter = "\u7c73";// "米"; 6 | public static final String ByFoot = "\u6b65\u884c";// "步行"; 7 | public static final String To = "\u53bb\u5f80";// "去往"; 8 | public static final String Station = "\u8f66\u7ad9";// "车站"; 9 | public static final String TargetPlace = "\u76ee\u7684\u5730";// "目的地"; 10 | public static final String StartPlace = "\u51fa\u53d1\u5730";// "出发地"; 11 | public static final String About = "\u5927\u7ea6";// "大约"; 12 | public static final String Direction = "\u65b9\u5411";// "方向"; 13 | 14 | public static final String GetOn = "\u4e0a\u8f66";// "上车"; 15 | public static final String GetOff = "\u4e0b\u8f66";// "下车"; 16 | public static final String Zhan = "\u7ad9";// "站"; 17 | 18 | public static final String cross = "\u4ea4\u53c9\u8def\u53e3"; // 交叉路口 19 | public static final String type = "\u7c7b\u522b"; // 类别 20 | public static final String address = "\u5730\u5740"; // 地址 21 | public static final String PrevStep = "\u4e0a\u4e00\u6b65"; 22 | public static final String NextStep = "\u4e0b\u4e00\u6b65"; 23 | public static final String Gong = "\u516c\u4ea4"; 24 | public static final String ByBus = "\u4e58\u8f66"; 25 | public static final String Arrive = "\u5230\u8FBE";// 到达 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/com/amap/mapapi/overlay/TraceOverlay.java: -------------------------------------------------------------------------------- 1 | package com.amap.mapapi.overlay; 2 | 3 | import java.util.ArrayList; 4 | import java.util.List; 5 | import com.amap.api.maps.AMap; 6 | import com.amap.api.maps.CameraUpdateFactory; 7 | import com.amap.api.maps.model.BitmapDescriptorFactory; 8 | import com.amap.api.maps.model.LatLng; 9 | import com.amap.api.maps.model.LatLngBounds; 10 | import com.amap.api.maps.model.Polyline; 11 | import com.amap.api.maps.model.PolylineOptions; 12 | import com.amap.api.maps.model.LatLngBounds.Builder; 13 | 14 | public class TraceOverlay { 15 | private Polyline mPolyline; 16 | private PolylineOptions mOption; 17 | private AMap mAMap; 18 | private List mTracedList = new ArrayList(); 19 | public static final int TRACE_STATUS_PROCESSING = 1; 20 | public static final int TRACE_STATUS_FINISH = 2; 21 | public static final int TRACE_STATUS_FAILURE = 3; 22 | public static final int TRACE_STATUS_PREPARE = 4; 23 | 24 | private int mTraceStatus = TRACE_STATUS_PREPARE; 25 | private int mDistance; 26 | private int mWaitTime; 27 | 28 | public TraceOverlay(AMap amap, List lines) { 29 | this.mAMap = amap; 30 | options(); 31 | mOption.addAll(lines); 32 | mPolyline = amap.addPolyline(mOption); 33 | } 34 | 35 | public TraceOverlay(AMap amap) { 36 | this.mAMap = amap; 37 | options(); 38 | } 39 | 40 | public void add(List segments) { 41 | if (segments == null || segments.size() == 0) { 42 | return; 43 | } 44 | mTracedList.addAll(segments); 45 | options(); 46 | if (mPolyline == null) { 47 | mPolyline = mAMap.addPolyline(mOption); 48 | } 49 | mPolyline.setPoints(mTracedList); 50 | } 51 | 52 | public void remove() { 53 | if (mPolyline != null) { 54 | mPolyline.remove(); 55 | } 56 | } 57 | 58 | public void setProperCamera(List lists) { 59 | Builder builder = LatLngBounds.builder(); 60 | if (lists == null || lists.size() == 0) { 61 | return; 62 | } 63 | for (LatLng latlng : lists) { 64 | builder.include(latlng); 65 | } 66 | try { 67 | LatLngBounds bounds = builder.build(); 68 | mAMap.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, 20)); 69 | } catch (IllegalStateException e) { 70 | e.printStackTrace(); 71 | } 72 | } 73 | 74 | public void zoopToSpan() { 75 | List lists = mOption.getPoints(); 76 | setProperCamera(lists); 77 | } 78 | 79 | private PolylineOptions options() { 80 | if (mOption == null) { 81 | mOption = new PolylineOptions(); 82 | mOption.setCustomTexture(BitmapDescriptorFactory 83 | .fromAsset("tracelinetexture.png")); 84 | mOption.width(40); 85 | } 86 | return mOption; 87 | } 88 | 89 | public int getTraceStatus() { 90 | return mTraceStatus; 91 | } 92 | 93 | public void setTraceStatus(int mTraceStatus) { 94 | this.mTraceStatus = mTraceStatus; 95 | } 96 | 97 | public int getDistance() { 98 | return mDistance; 99 | } 100 | 101 | public void setDistance(int mDistance) { 102 | this.mDistance = mDistance; 103 | } 104 | 105 | public int getWaitTime() { 106 | return mWaitTime; 107 | } 108 | 109 | public void setWaitTime(int mWaitTime) { 110 | this.mWaitTime = mWaitTime; 111 | } 112 | } 113 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/adapter/AboutAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.adapter; 20 | 21 | import android.content.Context; 22 | import android.view.View; 23 | import android.view.ViewGroup; 24 | import android.widget.TextView; 25 | 26 | import java.util.List; 27 | 28 | import me.gfuil.bmap.lite.R; 29 | import me.gfuil.bmap.lite.base.BaseListAdapter; 30 | import me.gfuil.bmap.lite.model.AboutModel; 31 | 32 | /** 33 | * @author gfuil 34 | */ 35 | 36 | public class AboutAdapter extends BaseListAdapter { 37 | public AboutAdapter(Context context, List list) { 38 | super(context, list); 39 | } 40 | 41 | @Override 42 | public View getView(int position, View convertView, ViewGroup parent) { 43 | if (null == convertView){ 44 | convertView = getInflater().inflate(R.layout.item_about, parent, false); 45 | } 46 | TextView textName = ViewHolder.get(convertView, R.id.text_name); 47 | TextView textInfo = ViewHolder.get(convertView, R.id.text_info); 48 | 49 | AboutModel about = getList().get(position); 50 | textName.setText(about.getName()); 51 | if (null != about.getInfo() && !about.getInfo().isEmpty()) { 52 | textInfo.setVisibility(View.VISIBLE); 53 | textInfo.setText(getList().get(position).getInfo()); 54 | }else { 55 | textInfo.setVisibility(View.GONE); 56 | } 57 | 58 | return convertView; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/adapter/AmapBusRouteAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.adapter; 20 | 21 | import android.content.Context; 22 | import android.view.View; 23 | import android.view.ViewGroup; 24 | import android.widget.TextView; 25 | 26 | import com.amap.api.services.route.BusPath; 27 | 28 | import java.util.List; 29 | 30 | import me.gfuil.bmap.lite.R; 31 | import me.gfuil.bmap.lite.base.BaseListAdapter; 32 | import com.amap.mapapi.overlay.AMapUtil; 33 | 34 | /** 35 | * @author gfuil 36 | */ 37 | 38 | public class AmapBusRouteAdapter extends BaseListAdapter { 39 | public AmapBusRouteAdapter(Context context, List list) { 40 | super(context, list); 41 | } 42 | 43 | @Override 44 | public View getView(int position, View convertView, ViewGroup parent) { 45 | if (null == convertView) { 46 | convertView = getInflater().inflate(R.layout.item_bus_route, parent, false); 47 | } 48 | TextView textInfo = ViewHolder.get(convertView, R.id.text_info); 49 | TextView textRoute = ViewHolder.get(convertView, R.id.text_route); 50 | 51 | if (getList().get(position).getSteps() != null ) { 52 | textInfo.setText(AMapUtil.getBusPathTitle(getList().get(position))); 53 | textRoute.setText(AMapUtil.getBusPathDes(getList().get(position))); 54 | } 55 | 56 | return convertView; 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/adapter/BaiduIndoorInfoAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.adapter; 20 | 21 | import android.content.Context; 22 | import android.graphics.Color; 23 | import android.view.View; 24 | import android.view.ViewGroup; 25 | import android.widget.TextView; 26 | 27 | import java.util.List; 28 | 29 | import me.gfuil.bmap.lite.R; 30 | import me.gfuil.bmap.lite.base.BaseListAdapter; 31 | 32 | /** 33 | * @author gfuil 34 | */ 35 | 36 | public class BaiduIndoorInfoAdapter extends BaseListAdapter { 37 | private String floorId; 38 | private String curFloor; 39 | 40 | public BaiduIndoorInfoAdapter(Context context, List list, String curFloor, String floorId) { 41 | super(context, list); 42 | setCurFloor(curFloor); 43 | setFloorId(floorId); 44 | } 45 | 46 | public String getFloorId() { 47 | return floorId; 48 | } 49 | 50 | public void setFloorId(String floorId) { 51 | this.floorId = floorId; 52 | } 53 | 54 | public String getCurFloor() { 55 | return curFloor; 56 | } 57 | 58 | public void setCurFloor(String curFloor) { 59 | this.curFloor = curFloor; 60 | if (null == this.curFloor || this.curFloor.trim().isEmpty()){ 61 | this.curFloor = "F1"; 62 | } 63 | } 64 | 65 | @Override 66 | public View getView(int position, View convertView, ViewGroup parent) { 67 | if (null == convertView){ 68 | convertView = getInflater().inflate(R.layout.item_indoor_floor, parent, false); 69 | } 70 | TextView text = ViewHolder.get(convertView, R.id.text_floor); 71 | text.setText(getList().get(position)); 72 | if (getList().get(position).equals(getCurFloor())){ 73 | text.setBackgroundColor(getContext().getResources().getColor(R.color.colorPressed)); 74 | }else { 75 | text.setBackgroundColor(Color.TRANSPARENT); 76 | } 77 | return convertView; 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/adapter/OfflineCityExpandAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.adapter; 20 | 21 | import android.content.Context; 22 | import android.view.View; 23 | import android.view.ViewGroup; 24 | import android.widget.TextView; 25 | 26 | import com.baidu.mapapi.map.offline.MKOLSearchRecord; 27 | 28 | import java.util.List; 29 | 30 | import me.gfuil.bmap.lite.base.BaseExpandableAdapter; 31 | 32 | /** 33 | * @author gfuil 34 | */ 35 | 36 | public class OfflineCityExpandAdapter extends BaseExpandableAdapter { 37 | public OfflineCityExpandAdapter(Context context, List list) { 38 | super(context, list); 39 | } 40 | 41 | @Override 42 | public int getChildrenCount(int groupPosition) { 43 | return (null != getList() && null != getList().get(groupPosition).childCities) ? getList().get(groupPosition).childCities.size() : 0; 44 | } 45 | 46 | @Override 47 | public Object getChild(int groupPosition, int childPosition) { 48 | return (null != getList() && null != getList().get(groupPosition).childCities) ? getList().get(groupPosition).childCities.get(childPosition) : null; 49 | } 50 | 51 | @Override 52 | public long getChildId(int groupPosition, int childPosition) { 53 | return childPosition; 54 | } 55 | 56 | @Override 57 | public boolean hasStableIds() { 58 | return true; 59 | } 60 | 61 | @Override 62 | public boolean isChildSelectable(int groupPosition, int childPosition) { 63 | return true; 64 | } 65 | 66 | @Override 67 | public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) { 68 | if (null == convertView){ 69 | convertView = getInflater().inflate(android.R.layout.simple_expandable_list_item_1, parent, false); 70 | } 71 | TextView textName = ViewHolder.get(convertView, android.R.id.text1); 72 | textName.setText(getList().get(groupPosition).cityName); 73 | return convertView; 74 | } 75 | 76 | @Override 77 | public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) { 78 | if (null == convertView){ 79 | convertView = getInflater().inflate(android.R.layout.simple_list_item_1, parent, false); 80 | } 81 | TextView textName = ViewHolder.get(convertView, android.R.id.text1); 82 | textName.setText(getList().get(groupPosition).childCities.get(childPosition).cityName); 83 | return convertView; 84 | } 85 | 86 | } 87 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/adapter/RegionExpandAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.adapter; 20 | 21 | import android.content.Context; 22 | import android.view.View; 23 | import android.view.ViewGroup; 24 | import android.widget.TextView; 25 | 26 | import java.util.List; 27 | 28 | import me.gfuil.bmap.lite.base.BaseExpandableAdapter; 29 | import me.gfuil.bmap.lite.model.MyRegionModel; 30 | 31 | /** 32 | * @author gfuil 33 | */ 34 | 35 | public class RegionExpandAdapter extends BaseExpandableAdapter { 36 | public RegionExpandAdapter(Context context, List list) { 37 | super(context, list); 38 | } 39 | 40 | @Override 41 | public int getChildrenCount(int groupPosition) { 42 | return (null != getList() && null != getList().get(groupPosition).getChild()) ? getList().get(groupPosition).getChild().size() : 0; 43 | } 44 | 45 | @Override 46 | public Object getChild(int groupPosition, int childPosition) { 47 | return (null != getList() && null != getList().get(groupPosition).getChild()) ? getList().get(groupPosition).getChild().get(childPosition) : null; 48 | } 49 | 50 | @Override 51 | public long getChildId(int groupPosition, int childPosition) { 52 | return childPosition; 53 | } 54 | 55 | @Override 56 | public boolean hasStableIds() { 57 | return true; 58 | } 59 | 60 | @Override 61 | public boolean isChildSelectable(int groupPosition, int childPosition) { 62 | return true; 63 | } 64 | 65 | @Override 66 | public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) { 67 | if (null == convertView){ 68 | convertView = getInflater().inflate(android.R.layout.simple_expandable_list_item_1, parent, false); 69 | } 70 | TextView textName = ViewHolder.get(convertView, android.R.id.text1); 71 | textName.setText(getList().get(groupPosition).getName()); 72 | return convertView; 73 | } 74 | 75 | @Override 76 | public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) { 77 | if (null == convertView){ 78 | convertView = getInflater().inflate(android.R.layout.simple_list_item_1, parent, false); 79 | } 80 | TextView textName = ViewHolder.get(convertView, android.R.id.text1); 81 | textName.setText(getList().get(groupPosition).getChild().get(childPosition)); 82 | return convertView; 83 | } 84 | 85 | } 86 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/adapter/RouteDetailsAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.adapter; 20 | 21 | import android.content.Context; 22 | import android.text.Html; 23 | import android.view.LayoutInflater; 24 | import android.view.View; 25 | import android.view.ViewGroup; 26 | import android.widget.TextView; 27 | 28 | import java.util.List; 29 | 30 | import me.gfuil.bmap.lite.R; 31 | import me.gfuil.bmap.lite.base.BaseRecyclerAdapter; 32 | 33 | /** 34 | * @author gfuil 35 | */ 36 | 37 | public class RouteDetailsAdapter extends BaseRecyclerAdapter { 38 | private OnItemClickListener onItemClickListener; 39 | 40 | public OnItemClickListener getOnItemClickListener() { 41 | return onItemClickListener; 42 | } 43 | 44 | public void setOnItemClickListener(OnItemClickListener onItemClickListener) { 45 | this.onItemClickListener = onItemClickListener; 46 | } 47 | 48 | public RouteDetailsAdapter(Context context, List list) { 49 | super(context, list); 50 | } 51 | 52 | @Override 53 | public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { 54 | View view = LayoutInflater.from(getContext()).inflate(R.layout.item_route_details, parent, false); 55 | return new ViewHolder(view); 56 | } 57 | 58 | @Override 59 | public void onBindViewHolder(ViewHolder holder, final int position) { 60 | TextView textDetails = ViewHolder.get(holder.getItemView(), R.id.text_details); 61 | textDetails.setText(Html.fromHtml(getList().get(position))); 62 | holder.getItemView().setOnClickListener(new View.OnClickListener() { 63 | @Override 64 | public void onClick(View v) { 65 | if (null != onItemClickListener) { 66 | onItemClickListener.onItemClick(position, getList().get(position)); 67 | } 68 | } 69 | }); 70 | } 71 | 72 | public interface OnItemClickListener { 73 | void onItemClick(int position, String route); 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/adapter/RouteHistoryAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.adapter; 20 | 21 | import android.content.Context; 22 | import android.view.View; 23 | import android.view.ViewGroup; 24 | import android.widget.ImageView; 25 | import android.widget.TextView; 26 | 27 | import java.util.List; 28 | 29 | import me.gfuil.bmap.lite.R; 30 | import me.gfuil.bmap.lite.base.BaseListAdapter; 31 | import me.gfuil.bmap.lite.model.RouteHistoryModel; 32 | 33 | /** 34 | * @author gfuil 35 | */ 36 | 37 | public class RouteHistoryAdapter extends BaseListAdapter { 38 | private OnRouteHistoryDeleteListener onRouteHistoryDeleteListener; 39 | 40 | public void setOnRouteHistoryDeleteListener(OnRouteHistoryDeleteListener onRouteHistoryDeleteListener) { 41 | this.onRouteHistoryDeleteListener = onRouteHistoryDeleteListener; 42 | } 43 | 44 | public RouteHistoryAdapter(Context context, List list) { 45 | super(context, list); 46 | } 47 | 48 | @Override 49 | public View getView(final int position, View convertView, ViewGroup parent) { 50 | if (convertView == null){ 51 | convertView = getInflater().inflate(R.layout.item_search_history, parent, false); 52 | } 53 | TextView textKeyword = ViewHolder.get(convertView, R.id.text_keyword); 54 | ImageView imageClose = ViewHolder.get(convertView, R.id.btn_close); 55 | textKeyword.setText(getList().get(position).getNameStart() + " >> " + getList().get(position).getNameEnd()); 56 | imageClose.setOnClickListener(new View.OnClickListener() { 57 | @Override 58 | public void onClick(View v) { 59 | if (null != onRouteHistoryDeleteListener){ 60 | onRouteHistoryDeleteListener.onRouteHistoryDelete(getList().get(position)); 61 | } 62 | } 63 | }); 64 | return convertView; 65 | } 66 | 67 | public interface OnRouteHistoryDeleteListener{ 68 | void onRouteHistoryDelete(RouteHistoryModel history); 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/adapter/SearchHotAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.adapter; 20 | 21 | import android.content.Context; 22 | import android.graphics.drawable.Drawable; 23 | import android.view.View; 24 | import android.view.ViewGroup; 25 | import android.widget.TextView; 26 | 27 | import java.util.List; 28 | 29 | import me.gfuil.bmap.lite.R; 30 | import me.gfuil.bmap.lite.base.BaseListAdapter; 31 | import me.gfuil.bmap.lite.utils.AppUtils; 32 | 33 | /** 34 | * @author gfuil 35 | */ 36 | 37 | public class SearchHotAdapter extends BaseListAdapter { 38 | private int[] resIds = { 39 | R.drawable.ic_restaurant_menu_18dp, 40 | R.drawable.ic_local_grocery_store_18dp, 41 | R.drawable.ic_local_hotel_18dp, 42 | R.drawable.ic_local_convenience_store_18dp, 43 | R.drawable.ic_local_see_18dp, 44 | R.drawable.ic_local_hospital_18dp, 45 | R.drawable.ic_local_mall_18dp, 46 | R.drawable.ic_local_movies_18dp, 47 | R.drawable.ic_local_parking_black_18dp, 48 | R.drawable.ic_local_gas_station_18dp, 49 | R.drawable.ic_directions_bus_18dp, 50 | R.drawable.ic_directions_subway_18dp 51 | }; 52 | 53 | private int[] colorIds = { 54 | R.color.keyword1, 55 | R.color.keyword2, 56 | R.color.keyword3, 57 | R.color.keyword4, 58 | R.color.keyword5, 59 | R.color.keyword6, 60 | R.color.keyword7, 61 | R.color.keyword8, 62 | R.color.keyword9, 63 | R.color.keyword10, 64 | R.color.keyword11, 65 | R.color.keyword12, 66 | 67 | }; 68 | 69 | public SearchHotAdapter(Context context, List list) { 70 | super(context, list); 71 | } 72 | 73 | @Override 74 | public View getView(int position, View convertView, ViewGroup parent) { 75 | if (null == convertView) { 76 | convertView = getInflater().inflate(R.layout.item_search_hot, parent, false); 77 | } 78 | TextView textHot = ViewHolder.get(convertView, R.id.text_keyword); 79 | textHot.setText(getList().get(position)); 80 | Drawable drawable = getContext().getResources().getDrawable(resIds[position]); 81 | drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight()); 82 | textHot.setCompoundDrawables(drawable, null, null, null); 83 | textHot.setCompoundDrawablePadding(AppUtils.dip2Px(getContext(), 5)); 84 | 85 | textHot.setTextColor(getContext().getResources().getColor(colorIds[position])); 86 | 87 | 88 | return convertView; 89 | } 90 | } 91 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/adapter/SearchKeywordAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.adapter; 20 | 21 | import android.content.Context; 22 | import android.view.View; 23 | import android.view.ViewGroup; 24 | import android.widget.ImageView; 25 | import android.widget.TextView; 26 | 27 | import java.util.List; 28 | 29 | import me.gfuil.bmap.lite.R; 30 | import me.gfuil.bmap.lite.base.BaseListAdapter; 31 | 32 | /** 33 | * @author gfuil 34 | */ 35 | 36 | public class SearchKeywordAdapter extends BaseListAdapter { 37 | private OnSearchHistoryDeleteListener onSearchHistoryDeleteListener; 38 | 39 | public void setOnSearchHistoryDeleteListener(OnSearchHistoryDeleteListener onSearchHistoryDeleteListener) { 40 | this.onSearchHistoryDeleteListener = onSearchHistoryDeleteListener; 41 | } 42 | 43 | public SearchKeywordAdapter(Context context, List list) { 44 | super(context, list); 45 | } 46 | 47 | @Override 48 | public View getView(final int position, View convertView, ViewGroup parent) { 49 | if (convertView == null){ 50 | convertView = getInflater().inflate(R.layout.item_search_history, parent, false); 51 | } 52 | TextView textKeyword = ViewHolder.get(convertView, R.id.text_keyword); 53 | ImageView imageClose = ViewHolder.get(convertView, R.id.btn_close); 54 | textKeyword.setText(getList().get(position)); 55 | imageClose.setOnClickListener(new View.OnClickListener() { 56 | @Override 57 | public void onClick(View v) { 58 | if (null != onSearchHistoryDeleteListener){ 59 | onSearchHistoryDeleteListener.onSearchHistoryDelete(getList().get(position)); 60 | } 61 | } 62 | }); 63 | return convertView; 64 | } 65 | 66 | public interface OnSearchHistoryDeleteListener { 67 | void onSearchHistoryDelete(String keyword); 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/adapter/ViewPagerAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.adapter; 20 | 21 | 22 | import android.app.Fragment; 23 | import android.app.FragmentManager; 24 | import android.support.v13.app.FragmentPagerAdapter; 25 | 26 | import java.util.List; 27 | 28 | /** 29 | * viewpager适配器 30 | * 31 | * @author gfuil 32 | */ 33 | public class ViewPagerAdapter extends FragmentPagerAdapter { 34 | private List mFragments; 35 | private List mTitles; 36 | 37 | public List getFragments() { 38 | return mFragments; 39 | } 40 | 41 | public void setFragments(List fragments) { 42 | this.mFragments = fragments; 43 | } 44 | 45 | public List getTitles() { 46 | return mTitles; 47 | } 48 | 49 | public void setTitles(List titles) { 50 | this.mTitles = titles; 51 | } 52 | 53 | public ViewPagerAdapter(FragmentManager fm) { 54 | super(fm); 55 | } 56 | 57 | public ViewPagerAdapter(FragmentManager fm, List fragments, List titles) { 58 | super(fm); 59 | this.mFragments = fragments; 60 | this.mTitles = titles; 61 | } 62 | 63 | @Override 64 | public Fragment getItem(int position) { 65 | return mFragments.get(position); 66 | } 67 | 68 | @Override 69 | public int getCount() { 70 | return mFragments.size(); 71 | } 72 | 73 | @Override 74 | public CharSequence getPageTitle(int position) { 75 | return mTitles.get(position); 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/base/OnBaseListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.base; 20 | 21 | /** 22 | * 监听器 23 | * 24 | * @author gfuil 25 | */ 26 | public interface OnBaseListener { 27 | 28 | void onMessage(String msg); 29 | 30 | void onResult(int code, String msg); 31 | 32 | void onNoData(String type); 33 | 34 | void onShowData(String type); 35 | 36 | void close(); 37 | 38 | } 39 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/listener/MyOrientationListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.listener; 20 | 21 | import android.content.Context; 22 | import android.hardware.Sensor; 23 | import android.hardware.SensorEvent; 24 | import android.hardware.SensorEventListener; 25 | import android.hardware.SensorManager; 26 | 27 | /** 28 | * 监听手机方向变化 29 | */ 30 | 31 | public class MyOrientationListener implements SensorEventListener { 32 | private Context context; 33 | private SensorManager sensorManager; 34 | private Sensor sensor; 35 | 36 | private float lastX; 37 | 38 | private OnOrientationListener onOrientationListener; 39 | 40 | public MyOrientationListener(Context context) { 41 | this.context = context; 42 | } 43 | 44 | // 开始 45 | public void start() { 46 | // 获得传感器管理器 47 | sensorManager = (SensorManager) context.getSystemService(Context.SENSOR_SERVICE); 48 | if (sensorManager != null) { 49 | // 获得方向传感器 50 | sensor = sensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION); 51 | } 52 | // 注册 53 | if (sensor != null) {//SensorManager.SENSOR_DELAY_UI 54 | sensorManager.registerListener(this, sensor, SensorManager.SENSOR_DELAY_UI); 55 | } 56 | 57 | } 58 | 59 | // 停止检测 60 | public void stop() { 61 | sensorManager.unregisterListener(this); 62 | } 63 | 64 | @Override 65 | public void onAccuracyChanged(Sensor sensor, int accuracy) { 66 | 67 | } 68 | 69 | @Override 70 | public void onSensorChanged(SensorEvent event) { 71 | // 接受方向感应器的类型 72 | if (event.sensor.getType() == Sensor.TYPE_ORIENTATION) { 73 | // 这里我们可以得到数据,然后根据需要来处理 74 | float x = event.values[SensorManager.DATA_X]; 75 | 76 | if (Math.abs(x - lastX) > 1.0) { 77 | onOrientationListener.onOrientationChanged(x); 78 | } 79 | lastX = x; 80 | 81 | } 82 | } 83 | 84 | public void setOnOrientationListener(OnOrientationListener onOrientationListener) { 85 | this.onOrientationListener = onOrientationListener; 86 | } 87 | 88 | 89 | public interface OnOrientationListener { 90 | void onOrientationChanged(float x); 91 | } 92 | 93 | } 94 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/listener/OnSearchResultListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.listener; 20 | 21 | import com.amap.api.services.core.SuggestionCity; 22 | 23 | import java.util.List; 24 | 25 | import me.gfuil.bmap.lite.base.OnBaseListener; 26 | import me.gfuil.bmap.lite.model.MyPoiModel; 27 | 28 | /** 29 | * @author gfuil 30 | */ 31 | 32 | public interface OnSearchResultListener extends OnBaseListener { 33 | void setSearchResult(List list); 34 | void setSuggestCityList(List cities); 35 | } 36 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/listener/OnSearchTipsListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.listener; 20 | 21 | import java.util.List; 22 | 23 | import me.gfuil.bmap.lite.base.OnBaseListener; 24 | 25 | 26 | /** 27 | * @author gfuil 28 | */ 29 | 30 | public interface OnSearchTipsListener extends OnBaseListener { 31 | void setSearchTipsAdatper(List list); 32 | } 33 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/model/AboutModel.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.model; 20 | 21 | import android.os.Parcel; 22 | import android.os.Parcelable; 23 | 24 | /** 25 | * @author gfuil 26 | */ 27 | 28 | public class AboutModel implements Parcelable{ 29 | private String name; 30 | private String info; 31 | 32 | public AboutModel(String name, String info) { 33 | this.name = name; 34 | this.info = info; 35 | } 36 | 37 | public String getName() { 38 | return name; 39 | } 40 | 41 | public void setName(String name) { 42 | this.name = name; 43 | } 44 | 45 | public String getInfo() { 46 | return info; 47 | } 48 | 49 | public void setInfo(String info) { 50 | this.info = info; 51 | } 52 | 53 | @Override 54 | public int describeContents() { 55 | return 0; 56 | } 57 | 58 | @Override 59 | public void writeToParcel(Parcel dest, int flags) { 60 | dest.writeString(this.name); 61 | dest.writeString(this.info); 62 | } 63 | 64 | public AboutModel() { 65 | } 66 | 67 | protected AboutModel(Parcel in) { 68 | this.name = in.readString(); 69 | this.info = in.readString(); 70 | } 71 | 72 | public static final Creator CREATOR = new Creator() { 73 | @Override 74 | public AboutModel createFromParcel(Parcel source) { 75 | return new AboutModel(source); 76 | } 77 | 78 | @Override 79 | public AboutModel[] newArray(int size) { 80 | return new AboutModel[size]; 81 | } 82 | }; 83 | } 84 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/model/MyRegionModel.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.model; 20 | 21 | import android.os.Parcel; 22 | import android.os.Parcelable; 23 | 24 | import org.json.JSONException; 25 | import org.json.JSONObject; 26 | 27 | import java.util.Arrays; 28 | import java.util.List; 29 | 30 | import me.gfuil.bmap.lite.utils.StringUtils; 31 | 32 | /** 33 | * @author gfuil 34 | */ 35 | 36 | public class MyRegionModel implements Parcelable { 37 | private String name; 38 | private List child; 39 | 40 | public void fromJSON(JSONObject object) { 41 | this.name = object.optString("a"); 42 | this.child = Arrays.asList(StringUtils.convertStrToArray(object.optString("b"), ",")); 43 | } 44 | 45 | public JSONObject toJSON() throws JSONException { 46 | JSONObject object = new JSONObject(); 47 | object.put("a", name); 48 | object.put("b", StringUtils.converToString(child, ",")); 49 | return object; 50 | } 51 | 52 | public String getName() { 53 | return name; 54 | } 55 | 56 | public void setName(String name) { 57 | this.name = name; 58 | } 59 | 60 | public List getChild() { 61 | return child; 62 | } 63 | 64 | public void setChild(List child) { 65 | this.child = child; 66 | } 67 | 68 | @Override 69 | public int describeContents() { 70 | return 0; 71 | } 72 | 73 | @Override 74 | public void writeToParcel(Parcel dest, int flags) { 75 | dest.writeString(this.name); 76 | dest.writeStringList(this.child); 77 | } 78 | 79 | public MyRegionModel() { 80 | } 81 | 82 | protected MyRegionModel(Parcel in) { 83 | this.name = in.readString(); 84 | this.child = in.createStringArrayList(); 85 | } 86 | 87 | public static final Creator CREATOR = new Creator() { 88 | @Override 89 | public MyRegionModel createFromParcel(Parcel source) { 90 | return new MyRegionModel(source); 91 | } 92 | 93 | @Override 94 | public MyRegionModel[] newArray(int size) { 95 | return new MyRegionModel[size]; 96 | } 97 | }; 98 | } 99 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/model/TypeMap.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.model; 20 | 21 | /** 22 | * @author gfuil 23 | */ 24 | 25 | public enum TypeMap { 26 | TYPE_BAIDU(0), 27 | TYPE_AMAP(1), 28 | TYPE_GOOGLE(2), 29 | TYPE_GPS(3); 30 | 31 | private int type; 32 | 33 | TypeMap(int type) { 34 | this.type = type; 35 | } 36 | 37 | public int getInt() { 38 | return this.type; 39 | } 40 | 41 | public static TypeMap fromInt(int type) { 42 | switch(type) { 43 | case 0: 44 | return TYPE_BAIDU; 45 | case 1: 46 | return TYPE_AMAP; 47 | case 2: 48 | return TYPE_GOOGLE; 49 | case 3: 50 | return TYPE_GPS; 51 | default: 52 | return null; 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/model/TypeNavigation.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.model; 20 | 21 | /** 22 | * @author gfuil 23 | */ 24 | 25 | public enum TypeNavigation { 26 | HISTORY(0), 27 | WALK(1), 28 | BIKE(2), 29 | DRIVE(3), 30 | BUS(4); 31 | 32 | 33 | private int type; 34 | 35 | TypeNavigation(int type) { 36 | this.type = type; 37 | } 38 | 39 | public int getInt() { 40 | return this.type; 41 | } 42 | 43 | public static TypeNavigation fromInt(int type) { 44 | switch(type) { 45 | case 0: 46 | return HISTORY; 47 | case 1: 48 | return WALK; 49 | case 2: 50 | return BIKE; 51 | case 3: 52 | return DRIVE; 53 | case 4: 54 | return BUS; 55 | default: 56 | return null; 57 | } 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/model/TypePoi.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.model; 20 | 21 | 22 | /** 23 | * @author gfuil 24 | */ 25 | 26 | public enum TypePoi { 27 | POINT(0), 28 | BUS_STATION(1), 29 | BUS_LINE(2), 30 | SUBWAY_STATION(3), 31 | SUBWAY_LINE(4); 32 | 33 | private int type; 34 | 35 | TypePoi(int type) { 36 | this.type = type; 37 | } 38 | 39 | public int getInt() { 40 | return this.type; 41 | } 42 | 43 | public static TypePoi fromInt(int type) { 44 | switch(type) { 45 | case 0: 46 | return POINT; 47 | case 1: 48 | return BUS_STATION; 49 | case 2: 50 | return BUS_LINE; 51 | case 3: 52 | return SUBWAY_STATION; 53 | case 4: 54 | return SUBWAY_LINE; 55 | default: 56 | return null; 57 | } 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/model/TypeSearch.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | package me.gfuil.bmap.lite.model; 20 | 21 | /** 22 | * @author gfuil 23 | */ 24 | 25 | public enum TypeSearch { 26 | CITY, NEARBY, LATLNG 27 | } 28 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/tools/ADFilterTools.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | 20 | package me.gfuil.bmap.lite.tools; 21 | 22 | import android.content.Context; 23 | import android.content.res.Resources; 24 | 25 | /** 26 | * Created by gfuil on 2017/4/23. 27 | */ 28 | 29 | public class ADFilterTools { 30 | public static String getClearAdDivByIdJs(String[] adDivs) { 31 | String js = "javascript:"; 32 | for (int i = 0; i < adDivs.length; i++) { 33 | js += "var adDiv" + i + "= document.getElementById('" + adDivs[i] + "');if(adDiv" + i + " != null)adDiv" + i + ".parentNode.removeChild(adDiv" + i + ");"; 34 | } 35 | return js; 36 | } 37 | 38 | public static String getClearAdDivByClassJs(String[] adDivs) { 39 | String js = "javascript:"; 40 | for (int i = 0; i < adDivs.length; i++) { 41 | js += "var adDiv" + i + "= document.getElementsByClassName('" + adDivs[i] + "');if(adDiv" + i + " != null) { for(var j =0; j< adDiv" + i+".length; j++){adDiv" + i + "[j].parentNode.removeChild(adDiv" + i + "[j]);}}"; 42 | } 43 | return js; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /app/src/main/java/me/gfuil/bmap/lite/utils/PermissionUtils.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the BmapLite. 3 | * Copyright (C) 2019 gfuil 刘风广 <3021702005@qq.com> 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | 20 | package me.gfuil.bmap.lite.utils; 21 | 22 | import android.content.pm.PackageManager; 23 | 24 | /** 25 | * Utility class that wraps access to the runtime permissions API in M and provides basic helper 26 | * methods. 27 | */ 28 | public class PermissionUtils { 29 | /** 30 | * Check that all given permissions have been granted by verifying that each entry in the 31 | * given array is of the value {@link PackageManager#PERMISSION_GRANTED}. 32 | * 33 | * @see Activity#onRequestPermissionsResult(int, String[], int[]) 34 | */ 35 | public static boolean verifyPermissions(int[] grantResults) { 36 | // At least one result must be checked. 37 | if(grantResults.length < 1){ 38 | return false; 39 | } 40 | 41 | // Verify that each required permission has been granted, otherwise return false. 42 | for (int result : grantResults) { 43 | if (result != PackageManager.PERMISSION_GRANTED) { 44 | return false; 45 | } 46 | } 47 | return true; 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/amap_bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/amap_bus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/amap_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/amap_car.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/amap_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/amap_end.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/amap_man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/amap_man.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/amap_ride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/amap_ride.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/amap_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/amap_start.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/amap_through.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/amap_through.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dir9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/dir9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_call_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_call_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_close_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_close_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_close_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_close_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_compare_arrows_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_compare_arrows_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_delete_forever_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_delete_forever_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_directions_bus_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_directions_bus_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_directions_bus_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_directions_bus_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_directions_primary_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_directions_primary_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_directions_subway_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_directions_subway_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_directions_subway_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_directions_subway_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_directions_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_directions_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_explore_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_explore_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_grade_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_grade_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_grade_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_grade_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_grade_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_grade_point.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_grade_point_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_grade_point_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_grade_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_grade_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_history_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_info_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_info_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_info_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_info_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_local_convenience_store_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_local_convenience_store_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_local_gas_station_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_local_gas_station_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_local_grocery_store_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_local_grocery_store_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_local_hospital_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_local_hospital_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_local_hotel_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_local_hotel_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_local_mall_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_local_mall_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_local_movies_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_local_movies_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_local_parking_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_local_parking_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_local_see_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_local_see_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_map_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_map_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_my_location_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_my_location_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_near_me_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_near_me_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_restaurant_menu_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_restaurant_menu_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_satellite_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_satellite_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_settings_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_share_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_share_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_share_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_share_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_store_mall_directory_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_store_mall_directory_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_straighten_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_straighten_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_streetview_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_streetview_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_terrain_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_terrain_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_traffic_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_traffic_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_undo_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/ic_undo_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/icon_gcoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/icon_gcoding.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/icon_gcoding_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/icon_gcoding_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/map_location_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/map_location_marker.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/maps_dav_compass_needle_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-hdpi/maps_dav_compass_needle_large.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/bus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/car.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/end.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_call_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_call_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_close_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_close_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_close_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_close_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_compare_arrows_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_compare_arrows_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_delete_forever_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_delete_forever_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_directions_bus_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_directions_bus_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_directions_bus_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_directions_bus_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_directions_primary_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_directions_primary_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_directions_subway_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_directions_subway_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_directions_subway_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_directions_subway_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_directions_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_directions_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_explore_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_explore_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_grade_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_grade_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_grade_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_grade_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_grade_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_grade_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_history_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_info_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_info_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_info_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_info_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_local_convenience_store_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_local_convenience_store_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_local_gas_station_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_local_gas_station_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_local_grocery_store_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_local_grocery_store_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_local_hospital_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_local_hospital_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_local_hotel_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_local_hotel_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_local_mall_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_local_mall_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_local_movies_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_local_movies_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_local_parking_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_local_parking_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_local_see_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_local_see_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_map_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_map_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_my_location_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_my_location_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_near_me_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_near_me_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_restaurant_menu_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_restaurant_menu_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_satellite_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_satellite_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_settings_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_share_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_share_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_share_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_share_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_store_mall_directory_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_store_mall_directory_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_straighten_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_straighten_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_streetview_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_streetview_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_terrain_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_terrain_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_traffic_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_traffic_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_undo_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/ic_undo_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/man.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-mdpi/start.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/bg_btn_poi_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/bg_btn_poi_selector_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/bus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/car.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/end.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_call_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_call_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_close_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_close_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_close_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_close_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_compare_arrows_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_compare_arrows_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_delete_forever_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_delete_forever_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_directions_bus_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_directions_bus_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_directions_bus_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_directions_bus_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_directions_primary_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_directions_primary_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_directions_subway_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_directions_subway_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_directions_subway_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_directions_subway_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_directions_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_directions_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_explore_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_explore_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_grade_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_grade_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_grade_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_grade_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_grade_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_grade_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_history_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_info_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_info_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_info_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_info_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_local_convenience_store_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_local_convenience_store_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_local_gas_station_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_local_gas_station_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_local_grocery_store_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_local_grocery_store_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_local_hospital_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_local_hospital_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_local_hotel_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_local_hotel_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_local_mall_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_local_mall_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_local_movies_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_local_movies_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_local_parking_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_local_parking_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_local_see_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_local_see_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_map_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_map_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_my_location_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_my_location_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_near_me_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_near_me_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_restaurant_menu_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_restaurant_menu_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_satellite_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_satellite_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_settings_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_share_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_share_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_share_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_share_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_store_mall_directory_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_store_mall_directory_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_straighten_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_straighten_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_streetview_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_streetview_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_terrain_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_terrain_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_traffic_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_traffic_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_undo_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/ic_undo_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/man.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xhdpi/start.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_call_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_call_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_close_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_close_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_close_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_close_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_compare_arrows_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_compare_arrows_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_delete_forever_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_delete_forever_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_directions_bus_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_directions_bus_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_directions_bus_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_directions_bus_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_directions_primary_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_directions_primary_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_directions_subway_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_directions_subway_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_directions_subway_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_directions_subway_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_directions_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_directions_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_explore_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_explore_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_grade_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_grade_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_grade_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_grade_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_grade_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_grade_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_history_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_info_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_info_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_info_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_info_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_local_convenience_store_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_local_convenience_store_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_local_gas_station_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_local_gas_station_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_local_grocery_store_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_local_grocery_store_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_local_hospital_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_local_hospital_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_local_hotel_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_local_hotel_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_local_mall_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_local_mall_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_local_movies_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_local_movies_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_local_parking_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_local_parking_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_local_see_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_local_see_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_map_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_map_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_my_location_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_my_location_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_near_me_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_near_me_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_restaurant_menu_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_restaurant_menu_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_satellite_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_satellite_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_settings_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_share_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_share_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_share_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_share_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_store_mall_directory_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_store_mall_directory_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_straighten_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_straighten_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_streetview_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_streetview_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_terrain_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_terrain_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_traffic_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_traffic_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_undo_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxhdpi/ic_undo_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_call_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_call_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_close_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_close_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_close_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_close_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_compare_arrows_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_compare_arrows_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_delete_forever_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_delete_forever_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_directions_bus_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_directions_bus_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_directions_bus_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_directions_bus_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_directions_primary_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_directions_primary_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_directions_subway_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_directions_subway_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_directions_subway_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_directions_subway_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_directions_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_directions_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_explore_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_explore_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_grade_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_grade_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_grade_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_grade_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_grade_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_grade_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_history_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_info_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_info_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_info_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_info_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_local_convenience_store_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_local_convenience_store_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_local_gas_station_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_local_gas_station_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_local_grocery_store_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_local_grocery_store_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_local_hospital_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_local_hospital_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_local_hotel_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_local_hotel_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_local_mall_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_local_mall_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_local_movies_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_local_movies_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_local_parking_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_local_parking_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_local_see_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_local_see_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_map_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_map_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_my_location_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_my_location_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_near_me_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_near_me_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_restaurant_menu_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_restaurant_menu_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_satellite_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_satellite_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_settings_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_share_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_share_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_share_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_share_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_store_mall_directory_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_store_mall_directory_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_straighten_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_straighten_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_streetview_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_streetview_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_terrain_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_terrain_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_traffic_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_traffic_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_undo_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfuil/BmapLite/745394bff8aedc2fafd7d26005782ced3192a5e2/app/src/main/res/drawable-xxxhdpi/ic_undo_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_btn_poi_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_btn_poi_selector_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_point.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 9 | 10 | 11 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_point_poi.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 9 | 10 | 11 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_about.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_change_city.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_favorite.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_offline_map.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | 20 | 21 | 22 | 28 | 29 | 30 | 31 | 35 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_panorama.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 17 | 18 | 19 | 27 | 28 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_panorama2.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 22 | 23 | 31 | 32 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_ranging.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_route.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 21 | 22 | 29 | 30 | 39 | 40 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 64 | 65 | 66 | 67 | 68 | 69 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_select_poi.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 15 | 16 | 17 | 18 | 23 | 24 | 36 | 37 | 38 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_web.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 12 | 13 | 17 | 18 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_bus.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 18 | 19 | 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_route_history.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 18 | 19 | 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/res/layout/item_about.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 18 | 19 | 27 | 28 | -------------------------------------------------------------------------------- /app/src/main/res/layout/item_bus_route.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 19 | 20 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/main/res/layout/item_download_city.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 15 | 16 |