├── .flowconfig ├── .gitignore ├── .npmignore ├── AMap.bundle └── images │ ├── greenPin.png │ ├── greenPin@2x.png │ ├── greenPin@3x.png │ ├── greenPin_lift.png │ ├── greenPin_lift@2x.png │ ├── greenPin_lift@3x.png │ ├── pin_shadow.png │ ├── pin_shadow@2x.png │ ├── pin_shadow@3x.png │ ├── purplePin.png │ ├── purplePin@2x.png │ ├── purplePin@3x.png │ ├── purplePin_lift.png │ ├── purplePin_lift@2x.png │ ├── purplePin_lift@3x.png │ ├── redPin.png │ ├── redPin@2x.png │ ├── redPin@3x.png │ ├── redPin_lift.png │ ├── redPin_lift@2x.png │ └── redPin_lift@3x.png ├── App ├── MainView.js ├── Model.js ├── RNAMapView.js └── UploadingView.js ├── BeautyMap.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── BeautyMap.xcscheme ├── MAMapKit.framework ├── Headers ├── MAMapKit ├── Resources └── Versions │ ├── 2.6.0.e9e21b6 │ ├── Headers │ │ ├── MAAnnotation.h │ │ ├── MAAnnotationView.h │ │ ├── MACircle.h │ │ ├── MACircleRenderer.h │ │ ├── MACircleView.h │ │ ├── MAGeodesicPolyline.h │ │ ├── MAGeometry.h │ │ ├── MAGroundOverlay.h │ │ ├── MAGroundOverlayRenderer.h │ │ ├── MAGroundOverlayView.h │ │ ├── MAHeatMapTileOverlay.h │ │ ├── MAMapKit.h │ │ ├── MAMapServices.h │ │ ├── MAMapURLSearch.h │ │ ├── MAMapURLSearchConfig.h │ │ ├── MAMapURLSearchType.h │ │ ├── MAMapView.h │ │ ├── MAMultiPoint.h │ │ ├── MAOverlay.h │ │ ├── MAOverlayPathRenderer.h │ │ ├── MAOverlayPathView.h │ │ ├── MAOverlayRenderer.h │ │ ├── MAOverlayView.h │ │ ├── MAPinAnnotationView.h │ │ ├── MAPointAnnotation.h │ │ ├── MAPolygon.h │ │ ├── MAPolygonRenderer.h │ │ ├── MAPolygonView.h │ │ ├── MAPolyline.h │ │ ├── MAPolylineRenderer.h │ │ ├── MAPolylineView.h │ │ ├── MAShape.h │ │ ├── MATileOverlay.h │ │ ├── MATileOverlayRenderer.h │ │ ├── MATileOverlayView.h │ │ ├── MAUserLocation.h │ │ └── MAUserLocationRepresentation.h │ ├── MAMapKit │ └── Resources │ │ └── AMap.bundle │ │ └── images │ │ ├── greenPin.png │ │ ├── greenPin@2x.png │ │ ├── greenPin@3x.png │ │ ├── greenPin_lift.png │ │ ├── greenPin_lift@2x.png │ │ ├── greenPin_lift@3x.png │ │ ├── pin_shadow.png │ │ ├── pin_shadow@2x.png │ │ ├── pin_shadow@3x.png │ │ ├── purplePin.png │ │ ├── purplePin@2x.png │ │ ├── purplePin@3x.png │ │ ├── purplePin_lift.png │ │ ├── purplePin_lift@2x.png │ │ ├── purplePin_lift@3x.png │ │ ├── redPin.png │ │ ├── redPin@2x.png │ │ ├── redPin@3x.png │ │ ├── redPin_lift.png │ │ ├── redPin_lift@2x.png │ │ └── redPin_lift@3x.png │ └── Current ├── RNAMapView.h ├── RNAMapView.m ├── RNAMapViewManager.h ├── RNAMapViewManager.m ├── iOS ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── LaunchScreen.xib ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── boy.imageset │ │ ├── Contents.json │ │ ├── boy.png │ │ ├── boy@2x.png │ │ └── boy@3x.png │ └── girl.imageset │ │ ├── Contents.json │ │ ├── girl.png │ │ ├── girl@2x.png │ │ └── girl@3x.png ├── Info.plist ├── main.jsbundle └── main.m ├── index.ios.js └── package.json /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/.npmignore -------------------------------------------------------------------------------- /AMap.bundle/images/greenPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/greenPin.png -------------------------------------------------------------------------------- /AMap.bundle/images/greenPin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/greenPin@2x.png -------------------------------------------------------------------------------- /AMap.bundle/images/greenPin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/greenPin@3x.png -------------------------------------------------------------------------------- /AMap.bundle/images/greenPin_lift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/greenPin_lift.png -------------------------------------------------------------------------------- /AMap.bundle/images/greenPin_lift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/greenPin_lift@2x.png -------------------------------------------------------------------------------- /AMap.bundle/images/greenPin_lift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/greenPin_lift@3x.png -------------------------------------------------------------------------------- /AMap.bundle/images/pin_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/pin_shadow.png -------------------------------------------------------------------------------- /AMap.bundle/images/pin_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/pin_shadow@2x.png -------------------------------------------------------------------------------- /AMap.bundle/images/pin_shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/pin_shadow@3x.png -------------------------------------------------------------------------------- /AMap.bundle/images/purplePin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/purplePin.png -------------------------------------------------------------------------------- /AMap.bundle/images/purplePin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/purplePin@2x.png -------------------------------------------------------------------------------- /AMap.bundle/images/purplePin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/purplePin@3x.png -------------------------------------------------------------------------------- /AMap.bundle/images/purplePin_lift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/purplePin_lift.png -------------------------------------------------------------------------------- /AMap.bundle/images/purplePin_lift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/purplePin_lift@2x.png -------------------------------------------------------------------------------- /AMap.bundle/images/purplePin_lift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/purplePin_lift@3x.png -------------------------------------------------------------------------------- /AMap.bundle/images/redPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/redPin.png -------------------------------------------------------------------------------- /AMap.bundle/images/redPin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/redPin@2x.png -------------------------------------------------------------------------------- /AMap.bundle/images/redPin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/redPin@3x.png -------------------------------------------------------------------------------- /AMap.bundle/images/redPin_lift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/redPin_lift.png -------------------------------------------------------------------------------- /AMap.bundle/images/redPin_lift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/redPin_lift@2x.png -------------------------------------------------------------------------------- /AMap.bundle/images/redPin_lift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/AMap.bundle/images/redPin_lift@3x.png -------------------------------------------------------------------------------- /App/MainView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/App/MainView.js -------------------------------------------------------------------------------- /App/Model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/App/Model.js -------------------------------------------------------------------------------- /App/RNAMapView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/App/RNAMapView.js -------------------------------------------------------------------------------- /App/UploadingView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/App/UploadingView.js -------------------------------------------------------------------------------- /BeautyMap.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/BeautyMap.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BeautyMap.xcodeproj/xcshareddata/xcschemes/BeautyMap.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/BeautyMap.xcodeproj/xcshareddata/xcschemes/BeautyMap.xcscheme -------------------------------------------------------------------------------- /MAMapKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /MAMapKit.framework/MAMapKit: -------------------------------------------------------------------------------- 1 | Versions/Current/MAMapKit -------------------------------------------------------------------------------- /MAMapKit.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAAnnotation.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAAnnotationView.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MACircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MACircle.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MACircleRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MACircleRenderer.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MACircleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MACircleView.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAGeodesicPolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAGeodesicPolyline.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAGeometry.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAGroundOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAGroundOverlay.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAGroundOverlayRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAGroundOverlayRenderer.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAGroundOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAGroundOverlayView.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAHeatMapTileOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAHeatMapTileOverlay.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMapKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMapKit.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMapServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMapServices.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMapURLSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMapURLSearch.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMapURLSearchConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMapURLSearchConfig.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMapURLSearchType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMapURLSearchType.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMapView.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMultiPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAMultiPoint.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAOverlay.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAOverlayPathRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAOverlayPathRenderer.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAOverlayPathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAOverlayPathView.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAOverlayRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAOverlayRenderer.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAOverlayView.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPinAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPinAnnotationView.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPointAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPointAnnotation.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPolygon.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPolygonRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPolygonRenderer.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPolygonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPolygonView.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPolyline.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPolylineRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPolylineRenderer.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPolylineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAPolylineView.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAShape.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MATileOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MATileOverlay.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MATileOverlayRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MATileOverlayRenderer.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MATileOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MATileOverlayView.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAUserLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAUserLocation.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAUserLocationRepresentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Headers/MAUserLocationRepresentation.h -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/MAMapKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/MAMapKit -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/greenPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/greenPin.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/greenPin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/greenPin@2x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/greenPin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/greenPin@3x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/greenPin_lift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/greenPin_lift.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/greenPin_lift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/greenPin_lift@2x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/greenPin_lift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/greenPin_lift@3x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/pin_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/pin_shadow.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/pin_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/pin_shadow@2x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/pin_shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/pin_shadow@3x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/purplePin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/purplePin.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/purplePin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/purplePin@2x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/purplePin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/purplePin@3x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/purplePin_lift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/purplePin_lift.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/purplePin_lift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/purplePin_lift@2x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/purplePin_lift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/purplePin_lift@3x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/redPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/redPin.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/redPin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/redPin@2x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/redPin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/redPin@3x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/redPin_lift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/redPin_lift.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/redPin_lift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/redPin_lift@2x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/redPin_lift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/MAMapKit.framework/Versions/2.6.0.e9e21b6/Resources/AMap.bundle/images/redPin_lift@3x.png -------------------------------------------------------------------------------- /MAMapKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | 2.6.0.e9e21b6 -------------------------------------------------------------------------------- /RNAMapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/RNAMapView.h -------------------------------------------------------------------------------- /RNAMapView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/RNAMapView.m -------------------------------------------------------------------------------- /RNAMapViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/RNAMapViewManager.h -------------------------------------------------------------------------------- /RNAMapViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/RNAMapViewManager.m -------------------------------------------------------------------------------- /iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/AppDelegate.h -------------------------------------------------------------------------------- /iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/AppDelegate.m -------------------------------------------------------------------------------- /iOS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/boy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/Images.xcassets/boy.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/boy.imageset/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/Images.xcassets/boy.imageset/boy.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/boy.imageset/boy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/Images.xcassets/boy.imageset/boy@2x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/boy.imageset/boy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/Images.xcassets/boy.imageset/boy@3x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/girl.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/Images.xcassets/girl.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/girl.imageset/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/Images.xcassets/girl.imageset/girl.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/girl.imageset/girl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/Images.xcassets/girl.imageset/girl@2x.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/girl.imageset/girl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/Images.xcassets/girl.imageset/girl@3x.png -------------------------------------------------------------------------------- /iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/Info.plist -------------------------------------------------------------------------------- /iOS/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/main.jsbundle -------------------------------------------------------------------------------- /iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/iOS/main.m -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/index.ios.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuda101/BeautyMap/HEAD/package.json --------------------------------------------------------------------------------