├── LICENSE ├── README.md └── WeChatLocationDemo ├── WeChatLocationDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── huiyang.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── huiyang.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── WeChatLocationDemo.xcscheme │ └── xcschememanagement.plist ├── WeChatLocationDemo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── LaunchImage.launchimage │ │ └── Contents.json │ ├── location_back_icon.imageset │ │ ├── Contents.json │ │ └── location_back_icon@2x.png │ ├── location_blue_icon.imageset │ │ ├── Contents.json │ │ └── location_blue_icon@2x.png │ ├── location_green_icon.imageset │ │ ├── Contents.json │ │ └── location_green_icon@2x.png │ └── poi_1.imageset │ │ ├── Contents.json │ │ └── poi_1.png ├── Info.plist ├── LocationCell.h ├── LocationCell.m ├── Model │ ├── LocationModel.h │ └── LocationModel.m ├── Resources │ └── poi_1.png ├── ThirdParty │ └── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ └── View+MASShorthandAdditions.h ├── Vendors │ └── BaiduMapAPI.framework │ │ ├── BaiduMapAPI │ │ ├── Headers │ │ ├── BMKActionPaopaoView.h │ │ ├── BMKAnnotation.h │ │ ├── BMKAnnotationView.h │ │ ├── BMKArcline.h │ │ ├── BMKArclineView.h │ │ ├── BMKBaseComponent.h │ │ ├── BMKBusLineSearch.h │ │ ├── BMKBusLineSearchOption.h │ │ ├── BMKCircle.h │ │ ├── BMKCircleView.h │ │ ├── BMKCloudPOIList.h │ │ ├── BMKCloudSearch.h │ │ ├── BMKCloudSearchComponent.h │ │ ├── BMKCloudSearchInfo.h │ │ ├── BMKGeneralDelegate.h │ │ ├── BMKGeocodeSearch.h │ │ ├── BMKGeocodeSearchOption.h │ │ ├── BMKGeocodeType.h │ │ ├── BMKGeometry.h │ │ ├── BMKGradient.h │ │ ├── BMKGroundOverlay.h │ │ ├── BMKGroundOverlayView.h │ │ ├── BMKHeatMap.h │ │ ├── BMKLocationComponent.h │ │ ├── BMKLocationService.h │ │ ├── BMKLocationViewDisplayParam.h │ │ ├── BMKMapComponent.h │ │ ├── BMKMapManager.h │ │ ├── BMKMapStatus.h │ │ ├── BMKMapView.h │ │ ├── BMKMultiPoint.h │ │ ├── BMKNavigation.h │ │ ├── BMKOfflineMap.h │ │ ├── BMKOfflineMapType.h │ │ ├── BMKOverlay.h │ │ ├── BMKOverlayGLBasicView.h │ │ ├── BMKOverlayPathView.h │ │ ├── BMKOverlayView.h │ │ ├── BMKPinAnnotationView.h │ │ ├── BMKPoiSearch.h │ │ ├── BMKPoiSearchOption.h │ │ ├── BMKPoiSearchType.h │ │ ├── BMKPointAnnotation.h │ │ ├── BMKPolygon.h │ │ ├── BMKPolygonView.h │ │ ├── BMKPolyline.h │ │ ├── BMKPolylineView.h │ │ ├── BMKRouteSearch.h │ │ ├── BMKRouteSearchOption.h │ │ ├── BMKRouteSearchType.h │ │ ├── BMKSearchComponent.h │ │ ├── BMKShape.h │ │ ├── BMKShareURLSearch.h │ │ ├── BMKShareUrlSearchOption.h │ │ ├── BMKSuggestionSearch.h │ │ ├── BMKSuggestionSearchOption.h │ │ ├── BMKTypes.h │ │ ├── BMKUserLocation.h │ │ ├── BMKUtilsComponent.h │ │ ├── BMKVersion.h │ │ └── BMapKit.h │ │ ├── Resources │ │ └── mapapi.bundle │ │ │ ├── files │ │ │ ├── Beijing, China.gpx │ │ │ ├── DVDirectory.cfg │ │ │ ├── DVDirectory_Retina.cfg │ │ │ ├── DVHotMap.cfg │ │ │ ├── DVHotMap_Retina.cfg │ │ │ ├── DVHotcity.cfg │ │ │ ├── DVHotcity_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_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 │ │ │ ├── pin_green.png │ │ │ ├── pin_green@2x.png │ │ │ ├── pin_purple.png │ │ │ ├── pin_purple@2x.png │ │ │ ├── pin_red.png │ │ │ ├── pin_red@2x.png │ │ │ └── test.png │ │ └── readme.txt ├── ViewController.h ├── ViewController.m └── main.m └── WeChatLocationDemoTests ├── Info.plist └── WeChatLocationDemoTests.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/README.md -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo.xcodeproj/project.xcworkspace/xcuserdata/huiyang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo.xcodeproj/project.xcworkspace/xcuserdata/huiyang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo.xcodeproj/xcuserdata/huiyang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo.xcodeproj/xcuserdata/huiyang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo.xcodeproj/xcuserdata/huiyang.xcuserdatad/xcschemes/WeChatLocationDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo.xcodeproj/xcuserdata/huiyang.xcuserdatad/xcschemes/WeChatLocationDemo.xcscheme -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo.xcodeproj/xcuserdata/huiyang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo.xcodeproj/xcuserdata/huiyang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/AppDelegate.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/AppDelegate.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/location_back_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/location_back_icon.imageset/Contents.json -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/location_back_icon.imageset/location_back_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/location_back_icon.imageset/location_back_icon@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/location_blue_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/location_blue_icon.imageset/Contents.json -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/location_blue_icon.imageset/location_blue_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/location_blue_icon.imageset/location_blue_icon@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/location_green_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/location_green_icon.imageset/Contents.json -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/location_green_icon.imageset/location_green_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/location_green_icon.imageset/location_green_icon@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/poi_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/poi_1.imageset/Contents.json -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/poi_1.imageset/poi_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Images.xcassets/poi_1.imageset/poi_1.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Info.plist -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/LocationCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/LocationCell.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/LocationCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/LocationCell.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Model/LocationModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Model/LocationModel.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Model/LocationModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Model/LocationModel.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Resources/poi_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Resources/poi_1.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/Masonry.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ThirdParty/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/BaiduMapAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/BaiduMapAPI -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKActionPaopaoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKActionPaopaoView.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKAnnotation.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKAnnotationView.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKArcline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKArcline.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKArclineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKArclineView.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKBaseComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKBaseComponent.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKBusLineSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKBusLineSearch.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKBusLineSearchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKBusLineSearchOption.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKCircle.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKCircleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKCircleView.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKCloudPOIList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKCloudPOIList.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKCloudSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKCloudSearch.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKCloudSearchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKCloudSearchComponent.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKCloudSearchInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKCloudSearchInfo.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGeneralDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGeneralDelegate.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGeocodeSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGeocodeSearch.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGeocodeSearchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGeocodeSearchOption.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGeocodeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGeocodeType.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGeometry.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGradient.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGroundOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGroundOverlay.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGroundOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKGroundOverlayView.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKHeatMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKHeatMap.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKLocationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKLocationComponent.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKLocationService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKLocationService.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKLocationViewDisplayParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKLocationViewDisplayParam.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKMapComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKMapComponent.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKMapManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKMapManager.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKMapStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKMapStatus.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKMapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKMapView.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKMultiPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKMultiPoint.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKNavigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKNavigation.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKOfflineMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKOfflineMap.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKOfflineMapType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKOfflineMapType.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKOverlay.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKOverlayGLBasicView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKOverlayGLBasicView.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKOverlayPathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKOverlayPathView.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKOverlayView.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPinAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPinAnnotationView.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPoiSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPoiSearch.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPoiSearchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPoiSearchOption.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPoiSearchType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPoiSearchType.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPointAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPointAnnotation.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPolygon.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPolygonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPolygonView.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPolyline.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPolylineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKPolylineView.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKRouteSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKRouteSearch.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKRouteSearchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKRouteSearchOption.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKRouteSearchType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKRouteSearchType.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKSearchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKSearchComponent.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKShape.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKShareURLSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKShareURLSearch.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKShareUrlSearchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKShareUrlSearchOption.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKSuggestionSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKSuggestionSearch.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKSuggestionSearchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKSuggestionSearchOption.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKTypes.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKUserLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKUserLocation.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKUtilsComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKUtilsComponent.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMKVersion.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMapKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Headers/BMapKit.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/Beijing, China.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/Beijing, China.gpx -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVDirectory.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVDirectory.cfg -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVDirectory_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVDirectory_Retina.cfg -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVHotMap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVHotMap.cfg -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVHotMap_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVHotMap_Retina.cfg -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVHotcity.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVHotcity.cfg -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVHotcity_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVHotcity_Retina.cfg -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVVersion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVVersion.cfg -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVVersion_Retina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/DVVersion_Retina.cfg -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/ResPack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/ResPack.rs -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/channel: -------------------------------------------------------------------------------- 1 | 1099a -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/mapstyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/mapstyle.sty -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/satellitestyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/satellitestyle.sty -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/trafficstyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/files/trafficstyle.sty -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/baidumap_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/baidumap_logo.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/baidumap_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/baidumap_logo@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/bnavi_icon_location_fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/bnavi_icon_location_fixed.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/bnavi_icon_location_fixed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/bnavi_icon_location_fixed@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/direction_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/direction_wheel.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/direction_wheel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/direction_wheel@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left_highlighted.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_left_highlighted@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right_highlighted.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_action_paopao_middle_right_highlighted@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_cellphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_cellphone.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_cellphone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_cellphone2.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_cellphone2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_cellphone2@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_cellphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_cellphone@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_center_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_center_point.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_center_point@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_center_point@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_compass.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_compass@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_compass@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_compass_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_compass_background.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_compass_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_compass_background@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_direction.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_direction@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_direction@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_bus.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_bus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_bus@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_end.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_end@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_end@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_rail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_rail.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_rail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_rail@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_start.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_start@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_start@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_waypoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_waypoint.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_waypoint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_nav_waypoint@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left_highlighted.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_left_highlighted@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right_highlighted.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/icon_paopao_middle_right_highlighted@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/lineDashTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/lineDashTexture.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/pin_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/pin_green.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/pin_green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/pin_green@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/pin_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/pin_purple.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/pin_purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/pin_purple@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/pin_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/pin_red.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/pin_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/pin_red@2x.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/Resources/mapapi.bundle/images/test.png -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/Vendors/BaiduMapAPI.framework/readme.txt -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ViewController.h -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/ViewController.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemo/main.m -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemoTests/Info.plist -------------------------------------------------------------------------------- /WeChatLocationDemo/WeChatLocationDemoTests/WeChatLocationDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyangh/WeChat-Location/HEAD/WeChatLocationDemo/WeChatLocationDemoTests/WeChatLocationDemoTests.m --------------------------------------------------------------------------------