├── .gitignore ├── .npmignore ├── BDMapModule.js ├── README.md ├── android ├── build.gradle ├── example │ └── index.js ├── libs │ ├── baidumapapi_base_v3_7_1.jar │ ├── baidumapapi_cloud_v3_7_1.jar │ ├── baidumapapi_map_v3_7_1.jar │ ├── baidumapapi_radar_v3_7_1.jar │ ├── baidumapapi_search_v3_7_1.jar │ └── baidumapapi_util_v3_7_1.jar ├── proguard-rules.pro └── src │ ├── jniLibs │ ├── arm64-v8a │ │ ├── libBaiduMapSDK_base_v3_7_1.so │ │ ├── libBaiduMapSDK_cloud_v3_7_1.so │ │ ├── libBaiduMapSDK_map_v3_7_1.so │ │ ├── libBaiduMapSDK_radar_v3_7_1.so │ │ ├── libBaiduMapSDK_search_v3_7_1.so │ │ └── libBaiduMapSDK_util_v3_7_1.so │ ├── armeabi-v7a │ │ ├── libBaiduMapSDK_base_v3_7_1.so │ │ ├── libBaiduMapSDK_cloud_v3_7_1.so │ │ ├── libBaiduMapSDK_map_v3_7_1.so │ │ ├── libBaiduMapSDK_radar_v3_7_1.so │ │ ├── libBaiduMapSDK_search_v3_7_1.so │ │ └── libBaiduMapSDK_util_v3_7_1.so │ ├── armeabi │ │ ├── libBaiduMapSDK_base_v3_7_1.so │ │ ├── libBaiduMapSDK_cloud_v3_7_1.so │ │ ├── libBaiduMapSDK_map_v3_7_1.so │ │ ├── libBaiduMapSDK_radar_v3_7_1.so │ │ ├── libBaiduMapSDK_search_v3_7_1.so │ │ └── libBaiduMapSDK_util_v3_7_1.so │ ├── x86 │ │ ├── libBaiduMapSDK_base_v3_7_1.so │ │ ├── libBaiduMapSDK_cloud_v3_7_1.so │ │ ├── libBaiduMapSDK_map_v3_7_1.so │ │ ├── libBaiduMapSDK_radar_v3_7_1.so │ │ ├── libBaiduMapSDK_search_v3_7_1.so │ │ └── libBaiduMapSDK_util_v3_7_1.so │ └── x86_64 │ │ ├── libBaiduMapSDK_base_v3_7_1.so │ │ ├── libBaiduMapSDK_cloud_v3_7_1.so │ │ ├── libBaiduMapSDK_map_v3_7_1.so │ │ ├── libBaiduMapSDK_radar_v3_7_1.so │ │ ├── libBaiduMapSDK_search_v3_7_1.so │ │ └── libBaiduMapSDK_util_v3_7_1.so │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── bee │ │ └── baidumapview │ │ ├── BaiduMapModuleReactPackage.java │ │ ├── BaiduMapReactPackage.java │ │ ├── BaiduMapShadowNode.java │ │ ├── BaiduMapViewManager.java │ │ ├── BaiduMapViewModule.java │ │ └── utils │ │ ├── BaiduMapModule.java │ │ ├── CircleImageView.java │ │ ├── ImageUtil.java │ │ ├── MapUtils.java │ │ └── RoundedTransformation.java │ ├── jniLibs │ ├── arm64-v8a │ │ ├── libBaiduMapSDK_base_v3_7_1.so │ │ ├── libBaiduMapSDK_cloud_v3_7_1.so │ │ ├── libBaiduMapSDK_map_v3_7_1.so │ │ ├── libBaiduMapSDK_radar_v3_7_1.so │ │ ├── libBaiduMapSDK_search_v3_7_1.so │ │ └── libBaiduMapSDK_util_v3_7_1.so │ ├── armeabi-v7a │ │ ├── libBaiduMapSDK_base_v3_7_1.so │ │ ├── libBaiduMapSDK_cloud_v3_7_1.so │ │ ├── libBaiduMapSDK_map_v3_7_1.so │ │ ├── libBaiduMapSDK_radar_v3_7_1.so │ │ ├── libBaiduMapSDK_search_v3_7_1.so │ │ └── libBaiduMapSDK_util_v3_7_1.so │ ├── armeabi │ │ ├── libBaiduMapSDK_base_v3_7_1.so │ │ ├── libBaiduMapSDK_cloud_v3_7_1.so │ │ ├── libBaiduMapSDK_map_v3_7_1.so │ │ ├── libBaiduMapSDK_radar_v3_7_1.so │ │ ├── libBaiduMapSDK_search_v3_7_1.so │ │ └── libBaiduMapSDK_util_v3_7_1.so │ ├── x86 │ │ ├── libBaiduMapSDK_base_v3_7_1.so │ │ ├── libBaiduMapSDK_cloud_v3_7_1.so │ │ ├── libBaiduMapSDK_map_v3_7_1.so │ │ ├── libBaiduMapSDK_radar_v3_7_1.so │ │ ├── libBaiduMapSDK_search_v3_7_1.so │ │ └── libBaiduMapSDK_util_v3_7_1.so │ └── x86_64 │ │ ├── libBaiduMapSDK_base_v3_7_1.so │ │ ├── libBaiduMapSDK_cloud_v3_7_1.so │ │ ├── libBaiduMapSDK_map_v3_7_1.so │ │ ├── libBaiduMapSDK_radar_v3_7_1.so │ │ ├── libBaiduMapSDK_search_v3_7_1.so │ │ └── libBaiduMapSDK_util_v3_7_1.so │ └── res │ ├── drawable │ ├── icon_gcoding.png │ ├── shape_round.xml │ ├── shape_round1.xml │ ├── shape_round2.xml │ ├── shape_round3.xml │ ├── shape_round4.xml │ ├── shape_round5.xml │ ├── shape_round6.xml │ ├── shape_round7.xml │ ├── shape_round8.xml │ └── shape_round9.xml │ ├── layout │ └── custom_foot_marker.xml │ ├── mipmap-xhdpi │ ├── default_avatar.png │ ├── im_his_route_marker.png │ ├── marker_foot.png │ ├── nav_route_result_end_point.png │ └── nav_route_result_start_point.png │ └── values │ ├── attrs_circle.xml │ ├── color.xml │ ├── dimens.xml │ └── strings.xml ├── android_map.png ├── android_map2.png ├── index.js ├── ios ├── BaiduMapAPI_Base.framework │ ├── BaiduMapAPI_Base │ ├── Headers │ │ ├── BMKBaseComponent.h │ │ ├── BMKGeneralDelegate.h │ │ ├── BMKMapManager.h │ │ ├── BMKTypes.h │ │ ├── BMKUserLocation.h │ │ └── BMKVersion.h │ └── readme.txt ├── BaiduMapAPI_Cloud.framework │ ├── BaiduMapAPI_Cloud │ ├── Headers │ │ ├── BMKCloudPOIList.h │ │ ├── BMKCloudSearch.h │ │ ├── BMKCloudSearchComponent.h │ │ ├── BMKCloudSearchInfo.h │ │ └── BMKCloudVersion.h │ └── readme.txt ├── BaiduMapAPI_Location.framework │ ├── BaiduMapAPI_Location │ ├── Headers │ │ ├── BMKLocationComponent.h │ │ ├── BMKLocationService.h │ │ └── BMKLocationVersion.h │ └── readme.txt ├── BaiduMapAPI_Map.framework │ ├── BaiduMapAPI_Map │ ├── Headers │ │ ├── BMKActionPaopaoView.h │ │ ├── BMKAnnotation.h │ │ ├── BMKAnnotationView.h │ │ ├── BMKArcline.h │ │ ├── BMKArclineView.h │ │ ├── BMKCircle.h │ │ ├── BMKCircleView.h │ │ ├── BMKGradient.h │ │ ├── BMKGroundOverlay.h │ │ ├── BMKGroundOverlayView.h │ │ ├── BMKHeatMap.h │ │ ├── BMKLocationViewDisplayParam.h │ │ ├── BMKMapComponent.h │ │ ├── BMKMapStatus.h │ │ ├── BMKMapVersion.h │ │ ├── BMKMapView.h │ │ ├── BMKMultiPoint.h │ │ ├── BMKOfflineMap.h │ │ ├── BMKOfflineMapType.h │ │ ├── BMKOverlay.h │ │ ├── BMKOverlayGLBasicView.h │ │ ├── BMKOverlayPathView.h │ │ ├── BMKOverlayView.h │ │ ├── BMKPinAnnotationView.h │ │ ├── BMKPointAnnotation.h │ │ ├── BMKPolygon.h │ │ ├── BMKPolygonView.h │ │ ├── BMKPolyline.h │ │ ├── BMKPolylineView.h │ │ ├── BMKShape.h │ │ ├── BMKTileLayer.h │ │ └── BMKTileLayerView.h │ ├── Resources │ │ └── mapapi.bundle │ │ │ ├── files │ │ │ ├── Beijing, China.gpx │ │ │ ├── DVDirectory.cfg │ │ │ ├── DVDirectory_Retina.cfg │ │ │ ├── DVHotMap.cfg │ │ │ ├── DVHotMap_Retina.cfg │ │ │ ├── DVHotcity.cfg │ │ │ ├── DVHotcity_Retina.cfg │ │ │ ├── DVSDirectory.cfg │ │ │ ├── DVSDirectory_Retina.cfg │ │ │ ├── DVVersion.cfg │ │ │ ├── DVVersion_Retina.cfg │ │ │ ├── ResPack.rs │ │ │ ├── channel │ │ │ ├── mapstyle.sty │ │ │ ├── satellitestyle.sty │ │ │ └── trafficstyle.sty │ │ │ └── images │ │ │ ├── baidumap_logo.png │ │ │ ├── baidumap_logo@2x.png │ │ │ ├── bnavi_icon_location_fixed.png │ │ │ ├── bnavi_icon_location_fixed@2x.png │ │ │ ├── direction_wheel.png │ │ │ ├── direction_wheel@2x.png │ │ │ ├── icon_action_paopao_middle_left.png │ │ │ ├── icon_action_paopao_middle_left@2x.png │ │ │ ├── icon_action_paopao_middle_left_highlighted.png │ │ │ ├── icon_action_paopao_middle_left_highlighted@2x.png │ │ │ ├── icon_action_paopao_middle_right.png │ │ │ ├── icon_action_paopao_middle_right@2x.png │ │ │ ├── icon_action_paopao_middle_right_highlighted.png │ │ │ ├── icon_action_paopao_middle_right_highlighted@2x.png │ │ │ ├── icon_cellphone.png │ │ │ ├── icon_cellphone2.png │ │ │ ├── icon_cellphone2@2x.png │ │ │ ├── icon_cellphone@2x.png │ │ │ ├── icon_center_point.png │ │ │ ├── icon_center_point@2x.png │ │ │ ├── icon_compass.png │ │ │ ├── icon_compass@2x.png │ │ │ ├── icon_compass_background.png │ │ │ ├── icon_compass_background@2x.png │ │ │ ├── icon_direction.png │ │ │ ├── icon_direction@2x.png │ │ │ ├── icon_line_nofocus.png │ │ │ ├── icon_nav_bus.png │ │ │ ├── icon_nav_bus@2x.png │ │ │ ├── icon_nav_end.png │ │ │ ├── icon_nav_end@2x.png │ │ │ ├── icon_nav_rail.png │ │ │ ├── icon_nav_rail@2x.png │ │ │ ├── icon_nav_start.png │ │ │ ├── icon_nav_start@2x.png │ │ │ ├── icon_nav_waypoint.png │ │ │ ├── icon_nav_waypoint@2x.png │ │ │ ├── icon_paopao_middle_left.png │ │ │ ├── icon_paopao_middle_left@2x.png │ │ │ ├── icon_paopao_middle_left_highlighted.png │ │ │ ├── icon_paopao_middle_left_highlighted@2x.png │ │ │ ├── icon_paopao_middle_right.png │ │ │ ├── icon_paopao_middle_right@2x.png │ │ │ ├── icon_paopao_middle_right_highlighted.png │ │ │ ├── icon_paopao_middle_right_highlighted@2x.png │ │ │ ├── lineDashTexture.png │ │ │ ├── line_texture.png │ │ │ ├── pin_green.png │ │ │ ├── pin_green@2x.png │ │ │ ├── pin_purple.png │ │ │ ├── pin_purple@2x.png │ │ │ ├── pin_red.png │ │ │ └── pin_red@2x.png │ └── readme.txt ├── BaiduMapAPI_Search.framework │ ├── BaiduMapAPI_Search │ ├── Headers │ │ ├── BMKBusLineSearch.h │ │ ├── BMKBusLineSearchOption.h │ │ ├── BMKGeocodeSearch.h │ │ ├── BMKGeocodeSearchOption.h │ │ ├── BMKGeocodeType.h │ │ ├── BMKPoiSearch.h │ │ ├── BMKPoiSearchOption.h │ │ ├── BMKPoiSearchType.h │ │ ├── BMKRouteSearch.h │ │ ├── BMKRouteSearchOption.h │ │ ├── BMKRouteSearchType.h │ │ ├── BMKSearchBase.h │ │ ├── BMKSearchComponent.h │ │ ├── BMKSearchVersion.h │ │ ├── BMKShareURLSearch.h │ │ ├── BMKShareUrlSearchOption.h │ │ ├── BMKSuggestionSearch.h │ │ └── BMKSuggestionSearchOption.h │ └── readme.txt ├── BaiduMapAPI_Utils.framework │ ├── BaiduMapAPI_Utils │ ├── Headers │ │ ├── BMKFavPoiInfo.h │ │ ├── BMKFavPoiManager.h │ │ ├── BMKGeometry.h │ │ ├── BMKNavigation.h │ │ ├── BMKOpenOption.h │ │ ├── BMKOpenPoi.h │ │ ├── BMKOpenPoiOption.h │ │ ├── BMKOpenRoute.h │ │ ├── BMKOpenRouteOption.h │ │ ├── BMKUtilsComponent.h │ │ └── BMKUtilsVersion.h │ └── readme.txt ├── BaiduMapLibrary.xcodeproj │ └── project.pbxproj ├── BaiduMapLibrary │ ├── BaiduMapLibrary.h │ └── BaiduMapLibrary.m ├── UIImage+XG.h ├── UIImage+XG.m └── mapapi.bundle │ ├── files │ ├── Beijing, China.gpx │ ├── DVDirectory.cfg │ ├── DVDirectory_Retina.cfg │ ├── DVHotMap.cfg │ ├── DVHotMap_Retina.cfg │ ├── DVHotcity.cfg │ ├── DVHotcity_Retina.cfg │ ├── DVSDirectory.cfg │ ├── DVSDirectory_Retina.cfg │ ├── DVVersion.cfg │ ├── DVVersion_Retina.cfg │ ├── ResPack.rs │ ├── channel │ ├── mapstyle.sty │ ├── satellitestyle.sty │ └── trafficstyle.sty │ └── images │ ├── baidumap_logo.png │ ├── baidumap_logo@2x.png │ ├── bnavi_icon_location_fixed.png │ ├── bnavi_icon_location_fixed@2x.png │ ├── direction_wheel.png │ ├── direction_wheel@2x.png │ ├── icon_action_paopao_middle_left.png │ ├── icon_action_paopao_middle_left@2x.png │ ├── icon_action_paopao_middle_left_highlighted.png │ ├── icon_action_paopao_middle_left_highlighted@2x.png │ ├── icon_action_paopao_middle_right.png │ ├── icon_action_paopao_middle_right@2x.png │ ├── icon_action_paopao_middle_right_highlighted.png │ ├── icon_action_paopao_middle_right_highlighted@2x.png │ ├── icon_cellphone.png │ ├── icon_cellphone2.png │ ├── icon_cellphone2@2x.png │ ├── icon_cellphone@2x.png │ ├── icon_center_point.png │ ├── icon_center_point@2x.png │ ├── icon_compass.png │ ├── icon_compass@2x.png │ ├── icon_compass_background.png │ ├── icon_compass_background@2x.png │ ├── icon_direction.png │ ├── icon_direction@2x.png │ ├── icon_line_nofocus.png │ ├── icon_nav_bus.png │ ├── icon_nav_bus@2x.png │ ├── icon_nav_end.png │ ├── icon_nav_end@2x.png │ ├── icon_nav_rail.png │ ├── icon_nav_rail@2x.png │ ├── icon_nav_start.png │ ├── icon_nav_start@2x.png │ ├── icon_nav_waypoint.png │ ├── icon_nav_waypoint@2x.png │ ├── icon_paopao_middle_left.png │ ├── icon_paopao_middle_left@2x.png │ ├── icon_paopao_middle_left_highlighted.png │ ├── icon_paopao_middle_left_highlighted@2x.png │ ├── icon_paopao_middle_right.png │ ├── icon_paopao_middle_right@2x.png │ ├── icon_paopao_middle_right_highlighted.png │ ├── icon_paopao_middle_right_highlighted@2x.png │ ├── lineDashTexture.png │ ├── line_texture.png │ ├── pin_green.png │ ├── pin_green@2x.png │ ├── pin_purple.png │ ├── pin_purple@2x.png │ ├── pin_red.png │ └── pin_red@2x.png ├── ios_map.png ├── ios_map2.png └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/.npmignore -------------------------------------------------------------------------------- /BDMapModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/BDMapModule.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/example/index.js -------------------------------------------------------------------------------- /android/libs/baidumapapi_base_v3_7_1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/libs/baidumapapi_base_v3_7_1.jar -------------------------------------------------------------------------------- /android/libs/baidumapapi_cloud_v3_7_1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/libs/baidumapapi_cloud_v3_7_1.jar -------------------------------------------------------------------------------- /android/libs/baidumapapi_map_v3_7_1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/libs/baidumapapi_map_v3_7_1.jar -------------------------------------------------------------------------------- /android/libs/baidumapapi_radar_v3_7_1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/libs/baidumapapi_radar_v3_7_1.jar -------------------------------------------------------------------------------- /android/libs/baidumapapi_search_v3_7_1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/libs/baidumapapi_search_v3_7_1.jar -------------------------------------------------------------------------------- /android/libs/baidumapapi_util_v3_7_1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/libs/baidumapapi_util_v3_7_1.jar -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/src/jniLibs/arm64-v8a/libBaiduMapSDK_base_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/arm64-v8a/libBaiduMapSDK_base_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/arm64-v8a/libBaiduMapSDK_cloud_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/arm64-v8a/libBaiduMapSDK_cloud_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/arm64-v8a/libBaiduMapSDK_map_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/arm64-v8a/libBaiduMapSDK_map_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/arm64-v8a/libBaiduMapSDK_radar_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/arm64-v8a/libBaiduMapSDK_radar_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/arm64-v8a/libBaiduMapSDK_search_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/arm64-v8a/libBaiduMapSDK_search_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/arm64-v8a/libBaiduMapSDK_util_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/arm64-v8a/libBaiduMapSDK_util_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/armeabi-v7a/libBaiduMapSDK_base_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/armeabi-v7a/libBaiduMapSDK_base_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/armeabi-v7a/libBaiduMapSDK_cloud_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/armeabi-v7a/libBaiduMapSDK_cloud_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/armeabi-v7a/libBaiduMapSDK_map_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/armeabi-v7a/libBaiduMapSDK_map_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/armeabi-v7a/libBaiduMapSDK_radar_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/armeabi-v7a/libBaiduMapSDK_radar_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/armeabi-v7a/libBaiduMapSDK_search_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/armeabi-v7a/libBaiduMapSDK_search_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/armeabi-v7a/libBaiduMapSDK_util_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/armeabi-v7a/libBaiduMapSDK_util_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/armeabi/libBaiduMapSDK_base_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/armeabi/libBaiduMapSDK_base_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/armeabi/libBaiduMapSDK_cloud_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/armeabi/libBaiduMapSDK_cloud_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/armeabi/libBaiduMapSDK_map_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/armeabi/libBaiduMapSDK_map_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/armeabi/libBaiduMapSDK_radar_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/armeabi/libBaiduMapSDK_radar_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/armeabi/libBaiduMapSDK_search_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/armeabi/libBaiduMapSDK_search_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/armeabi/libBaiduMapSDK_util_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/armeabi/libBaiduMapSDK_util_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/x86/libBaiduMapSDK_base_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/x86/libBaiduMapSDK_base_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/x86/libBaiduMapSDK_cloud_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/x86/libBaiduMapSDK_cloud_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/x86/libBaiduMapSDK_map_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/x86/libBaiduMapSDK_map_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/x86/libBaiduMapSDK_radar_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/x86/libBaiduMapSDK_radar_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/x86/libBaiduMapSDK_search_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/x86/libBaiduMapSDK_search_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/x86/libBaiduMapSDK_util_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/x86/libBaiduMapSDK_util_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/x86_64/libBaiduMapSDK_base_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/x86_64/libBaiduMapSDK_base_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/x86_64/libBaiduMapSDK_cloud_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/x86_64/libBaiduMapSDK_cloud_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/x86_64/libBaiduMapSDK_map_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/x86_64/libBaiduMapSDK_map_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/x86_64/libBaiduMapSDK_radar_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/x86_64/libBaiduMapSDK_radar_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/x86_64/libBaiduMapSDK_search_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/x86_64/libBaiduMapSDK_search_v3_7_1.so -------------------------------------------------------------------------------- /android/src/jniLibs/x86_64/libBaiduMapSDK_util_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/jniLibs/x86_64/libBaiduMapSDK_util_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/bee/baidumapview/BaiduMapModuleReactPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/java/com/bee/baidumapview/BaiduMapModuleReactPackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/bee/baidumapview/BaiduMapReactPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/java/com/bee/baidumapview/BaiduMapReactPackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/bee/baidumapview/BaiduMapShadowNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/java/com/bee/baidumapview/BaiduMapShadowNode.java -------------------------------------------------------------------------------- /android/src/main/java/com/bee/baidumapview/BaiduMapViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/java/com/bee/baidumapview/BaiduMapViewManager.java -------------------------------------------------------------------------------- /android/src/main/java/com/bee/baidumapview/BaiduMapViewModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/java/com/bee/baidumapview/BaiduMapViewModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/bee/baidumapview/utils/BaiduMapModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/java/com/bee/baidumapview/utils/BaiduMapModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/bee/baidumapview/utils/CircleImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/java/com/bee/baidumapview/utils/CircleImageView.java -------------------------------------------------------------------------------- /android/src/main/java/com/bee/baidumapview/utils/ImageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/java/com/bee/baidumapview/utils/ImageUtil.java -------------------------------------------------------------------------------- /android/src/main/java/com/bee/baidumapview/utils/MapUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/java/com/bee/baidumapview/utils/MapUtils.java -------------------------------------------------------------------------------- /android/src/main/java/com/bee/baidumapview/utils/RoundedTransformation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/java/com/bee/baidumapview/utils/RoundedTransformation.java -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_base_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_base_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_cloud_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_cloud_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_map_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_map_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_radar_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_radar_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_search_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_search_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_util_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_util_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_base_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_base_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_cloud_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_cloud_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_map_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_map_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_radar_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_radar_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_search_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_search_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_util_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_util_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libBaiduMapSDK_base_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/armeabi/libBaiduMapSDK_base_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libBaiduMapSDK_cloud_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/armeabi/libBaiduMapSDK_cloud_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libBaiduMapSDK_map_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/armeabi/libBaiduMapSDK_map_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libBaiduMapSDK_radar_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/armeabi/libBaiduMapSDK_radar_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libBaiduMapSDK_search_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/armeabi/libBaiduMapSDK_search_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/armeabi/libBaiduMapSDK_util_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/armeabi/libBaiduMapSDK_util_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/x86/libBaiduMapSDK_base_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/x86/libBaiduMapSDK_base_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/x86/libBaiduMapSDK_cloud_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/x86/libBaiduMapSDK_cloud_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/x86/libBaiduMapSDK_map_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/x86/libBaiduMapSDK_map_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/x86/libBaiduMapSDK_radar_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/x86/libBaiduMapSDK_radar_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/x86/libBaiduMapSDK_search_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/x86/libBaiduMapSDK_search_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/x86/libBaiduMapSDK_util_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/x86/libBaiduMapSDK_util_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/x86_64/libBaiduMapSDK_base_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/x86_64/libBaiduMapSDK_base_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/x86_64/libBaiduMapSDK_cloud_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/x86_64/libBaiduMapSDK_cloud_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/x86_64/libBaiduMapSDK_map_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/x86_64/libBaiduMapSDK_map_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/x86_64/libBaiduMapSDK_radar_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/x86_64/libBaiduMapSDK_radar_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/x86_64/libBaiduMapSDK_search_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/x86_64/libBaiduMapSDK_search_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/jniLibs/x86_64/libBaiduMapSDK_util_v3_7_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/jniLibs/x86_64/libBaiduMapSDK_util_v3_7_1.so -------------------------------------------------------------------------------- /android/src/main/res/drawable/icon_gcoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/drawable/icon_gcoding.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/shape_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/drawable/shape_round.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/shape_round1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/drawable/shape_round1.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/shape_round2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/drawable/shape_round2.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/shape_round3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/drawable/shape_round3.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/shape_round4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/drawable/shape_round4.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/shape_round5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/drawable/shape_round5.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/shape_round6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/drawable/shape_round6.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/shape_round7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/drawable/shape_round7.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/shape_round8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/drawable/shape_round8.xml -------------------------------------------------------------------------------- /android/src/main/res/drawable/shape_round9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/drawable/shape_round9.xml -------------------------------------------------------------------------------- /android/src/main/res/layout/custom_foot_marker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/layout/custom_foot_marker.xml -------------------------------------------------------------------------------- /android/src/main/res/mipmap-xhdpi/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/mipmap-xhdpi/default_avatar.png -------------------------------------------------------------------------------- /android/src/main/res/mipmap-xhdpi/im_his_route_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/mipmap-xhdpi/im_his_route_marker.png -------------------------------------------------------------------------------- /android/src/main/res/mipmap-xhdpi/marker_foot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/mipmap-xhdpi/marker_foot.png -------------------------------------------------------------------------------- /android/src/main/res/mipmap-xhdpi/nav_route_result_end_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/mipmap-xhdpi/nav_route_result_end_point.png -------------------------------------------------------------------------------- /android/src/main/res/mipmap-xhdpi/nav_route_result_start_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/mipmap-xhdpi/nav_route_result_start_point.png -------------------------------------------------------------------------------- /android/src/main/res/values/attrs_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/values/attrs_circle.xml -------------------------------------------------------------------------------- /android/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/values/color.xml -------------------------------------------------------------------------------- /android/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android_map.png -------------------------------------------------------------------------------- /android_map2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/android_map2.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/index.js -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Base.framework/BaiduMapAPI_Base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Base.framework/BaiduMapAPI_Base -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Base.framework/Headers/BMKBaseComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Base.framework/Headers/BMKBaseComponent.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Base.framework/Headers/BMKGeneralDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Base.framework/Headers/BMKGeneralDelegate.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Base.framework/Headers/BMKMapManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Base.framework/Headers/BMKMapManager.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Base.framework/Headers/BMKTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Base.framework/Headers/BMKTypes.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Base.framework/Headers/BMKUserLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Base.framework/Headers/BMKUserLocation.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Base.framework/Headers/BMKVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Base.framework/Headers/BMKVersion.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Base.framework/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Base.framework/readme.txt -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Cloud.framework/BaiduMapAPI_Cloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Cloud.framework/BaiduMapAPI_Cloud -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Cloud.framework/Headers/BMKCloudPOIList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Cloud.framework/Headers/BMKCloudPOIList.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Cloud.framework/Headers/BMKCloudSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Cloud.framework/Headers/BMKCloudSearch.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Cloud.framework/Headers/BMKCloudSearchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Cloud.framework/Headers/BMKCloudSearchComponent.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Cloud.framework/Headers/BMKCloudSearchInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Cloud.framework/Headers/BMKCloudSearchInfo.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Cloud.framework/Headers/BMKCloudVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Cloud.framework/Headers/BMKCloudVersion.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Cloud.framework/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Cloud.framework/readme.txt -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Location.framework/BaiduMapAPI_Location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Location.framework/BaiduMapAPI_Location -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Location.framework/Headers/BMKLocationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Location.framework/Headers/BMKLocationComponent.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Location.framework/Headers/BMKLocationService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Location.framework/Headers/BMKLocationService.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Location.framework/Headers/BMKLocationVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Location.framework/Headers/BMKLocationVersion.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Location.framework/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Location.framework/readme.txt -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/BaiduMapAPI_Map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/BaiduMapAPI_Map -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKActionPaopaoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKActionPaopaoView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKAnnotation.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKAnnotationView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKArcline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKArcline.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKArclineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKArclineView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKCircle.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKCircleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKCircleView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKGradient.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKGroundOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKGroundOverlay.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKGroundOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKGroundOverlayView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKHeatMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKHeatMap.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKLocationViewDisplayParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKLocationViewDisplayParam.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKMapComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKMapComponent.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKMapStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKMapStatus.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKMapVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKMapVersion.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKMapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKMapView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKMultiPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKMultiPoint.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKOfflineMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKOfflineMap.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKOfflineMapType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKOfflineMapType.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKOverlay.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKOverlayGLBasicView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKOverlayGLBasicView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKOverlayPathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKOverlayPathView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKOverlayView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKPinAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKPinAnnotationView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKPointAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKPointAnnotation.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKPolygon.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKPolygonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKPolygonView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKPolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKPolyline.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKPolylineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKPolylineView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKShape.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKTileLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKTileLayer.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Headers/BMKTileLayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Headers/BMKTileLayerView.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/Beijing, China.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/Beijing, China.gpx -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVDirectory.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVDirectory.cfg -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVDirectory_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVDirectory_Retina.cfg -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVHotMap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVHotMap.cfg -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVHotMap_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVHotMap_Retina.cfg -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVHotcity.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVHotcity.cfg -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVHotcity_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVHotcity_Retina.cfg -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVSDirectory.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVSDirectory.cfg -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVSDirectory_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVSDirectory_Retina.cfg -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVVersion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVVersion.cfg -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVVersion_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/DVVersion_Retina.cfg -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/ResPack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/ResPack.rs -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/channel: -------------------------------------------------------------------------------- 1 | 1099a -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/mapstyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/mapstyle.sty -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/satellitestyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/satellitestyle.sty -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/trafficstyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/files/trafficstyle.sty -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/baidumap_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/baidumap_logo.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/baidumap_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/baidumap_logo@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/bnavi_icon_location_fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/bnavi_icon_location_fixed.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/bnavi_icon_location_fixed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/bnavi_icon_location_fixed@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/direction_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/direction_wheel.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/direction_wheel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/direction_wheel@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left_highlighted.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left_highlighted@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right_highlighted.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right_highlighted@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_cellphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_cellphone.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_cellphone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_cellphone2.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_cellphone2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_cellphone2@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_cellphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_cellphone@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_center_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_center_point.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_center_point@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_center_point@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_compass.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_compass@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_compass@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_compass_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_compass_background.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_compass_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_compass_background@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_direction.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_direction@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_direction@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_line_nofocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_line_nofocus.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_bus.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_bus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_bus@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_end.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_end@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_end@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_rail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_rail.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_rail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_rail@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_start.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_start@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_start@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_waypoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_waypoint.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_waypoint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_nav_waypoint@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left_highlighted.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left_highlighted@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right_highlighted.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right_highlighted@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/lineDashTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/lineDashTexture.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/line_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/line_texture.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/pin_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/pin_green.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/pin_green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/pin_green@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/pin_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/pin_purple.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/pin_purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/pin_purple@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/pin_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/pin_red.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/pin_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/Resources/mapapi.bundle/images/pin_red@2x.png -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Map.framework/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Map.framework/readme.txt -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/BaiduMapAPI_Search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/BaiduMapAPI_Search -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKBusLineSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKBusLineSearch.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKBusLineSearchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKBusLineSearchOption.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKGeocodeSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKGeocodeSearch.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKGeocodeSearchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKGeocodeSearchOption.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKGeocodeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKGeocodeType.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKPoiSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKPoiSearch.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKPoiSearchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKPoiSearchOption.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKPoiSearchType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKPoiSearchType.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKRouteSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKRouteSearch.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKRouteSearchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKRouteSearchOption.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKRouteSearchType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKRouteSearchType.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKSearchBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKSearchBase.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKSearchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKSearchComponent.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKSearchVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKSearchVersion.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKShareURLSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKShareURLSearch.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKShareUrlSearchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKShareUrlSearchOption.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKSuggestionSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKSuggestionSearch.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/Headers/BMKSuggestionSearchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/Headers/BMKSuggestionSearchOption.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Search.framework/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Search.framework/readme.txt -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/BaiduMapAPI_Utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/BaiduMapAPI_Utils -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/Headers/BMKFavPoiInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/Headers/BMKFavPoiInfo.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/Headers/BMKFavPoiManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/Headers/BMKFavPoiManager.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/Headers/BMKGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/Headers/BMKGeometry.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/Headers/BMKNavigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/Headers/BMKNavigation.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/Headers/BMKOpenOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/Headers/BMKOpenOption.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/Headers/BMKOpenPoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/Headers/BMKOpenPoi.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/Headers/BMKOpenPoiOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/Headers/BMKOpenPoiOption.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/Headers/BMKOpenRoute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/Headers/BMKOpenRoute.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/Headers/BMKOpenRouteOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/Headers/BMKOpenRouteOption.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/Headers/BMKUtilsComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/Headers/BMKUtilsComponent.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/Headers/BMKUtilsVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/Headers/BMKUtilsVersion.h -------------------------------------------------------------------------------- /ios/BaiduMapAPI_Utils.framework/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapAPI_Utils.framework/readme.txt -------------------------------------------------------------------------------- /ios/BaiduMapLibrary.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapLibrary.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/BaiduMapLibrary/BaiduMapLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapLibrary/BaiduMapLibrary.h -------------------------------------------------------------------------------- /ios/BaiduMapLibrary/BaiduMapLibrary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/BaiduMapLibrary/BaiduMapLibrary.m -------------------------------------------------------------------------------- /ios/UIImage+XG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/UIImage+XG.h -------------------------------------------------------------------------------- /ios/UIImage+XG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/UIImage+XG.m -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/Beijing, China.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/Beijing, China.gpx -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/DVDirectory.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/DVDirectory.cfg -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/DVDirectory_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/DVDirectory_Retina.cfg -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/DVHotMap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/DVHotMap.cfg -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/DVHotMap_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/DVHotMap_Retina.cfg -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/DVHotcity.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/DVHotcity.cfg -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/DVHotcity_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/DVHotcity_Retina.cfg -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/DVSDirectory.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/DVSDirectory.cfg -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/DVSDirectory_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/DVSDirectory_Retina.cfg -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/DVVersion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/DVVersion.cfg -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/DVVersion_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/DVVersion_Retina.cfg -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/ResPack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/ResPack.rs -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/channel: -------------------------------------------------------------------------------- 1 | 1099a -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/mapstyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/mapstyle.sty -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/satellitestyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/satellitestyle.sty -------------------------------------------------------------------------------- /ios/mapapi.bundle/files/trafficstyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/files/trafficstyle.sty -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/baidumap_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/baidumap_logo.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/baidumap_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/baidumap_logo@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/bnavi_icon_location_fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/bnavi_icon_location_fixed.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/bnavi_icon_location_fixed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/bnavi_icon_location_fixed@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/direction_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/direction_wheel.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/direction_wheel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/direction_wheel@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_action_paopao_middle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_action_paopao_middle_left.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_action_paopao_middle_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_action_paopao_middle_left@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_action_paopao_middle_left_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_action_paopao_middle_left_highlighted.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_action_paopao_middle_left_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_action_paopao_middle_left_highlighted@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_action_paopao_middle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_action_paopao_middle_right.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_action_paopao_middle_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_action_paopao_middle_right@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_action_paopao_middle_right_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_action_paopao_middle_right_highlighted.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_action_paopao_middle_right_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_action_paopao_middle_right_highlighted@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_cellphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_cellphone.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_cellphone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_cellphone2.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_cellphone2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_cellphone2@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_cellphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_cellphone@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_center_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_center_point.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_center_point@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_center_point@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_compass.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_compass@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_compass@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_compass_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_compass_background.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_compass_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_compass_background@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_direction.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_direction@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_direction@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_line_nofocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_line_nofocus.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_nav_bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_nav_bus.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_nav_bus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_nav_bus@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_nav_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_nav_end.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_nav_end@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_nav_end@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_nav_rail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_nav_rail.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_nav_rail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_nav_rail@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_nav_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_nav_start.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_nav_start@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_nav_start@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_nav_waypoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_nav_waypoint.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_nav_waypoint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_nav_waypoint@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_paopao_middle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_paopao_middle_left.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_paopao_middle_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_paopao_middle_left@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_paopao_middle_left_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_paopao_middle_left_highlighted.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_paopao_middle_left_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_paopao_middle_left_highlighted@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_paopao_middle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_paopao_middle_right.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_paopao_middle_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_paopao_middle_right@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_paopao_middle_right_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_paopao_middle_right_highlighted.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/icon_paopao_middle_right_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/icon_paopao_middle_right_highlighted@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/lineDashTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/lineDashTexture.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/line_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/line_texture.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/pin_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/pin_green.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/pin_green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/pin_green@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/pin_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/pin_purple.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/pin_purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/pin_purple@2x.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/pin_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/pin_red.png -------------------------------------------------------------------------------- /ios/mapapi.bundle/images/pin_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios/mapapi.bundle/images/pin_red@2x.png -------------------------------------------------------------------------------- /ios_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios_map.png -------------------------------------------------------------------------------- /ios_map2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/ios_map2.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sincethere/react-native-baidumap/HEAD/package.json --------------------------------------------------------------------------------