gitextract_d4njwb7z/ ├── .gitattributes ├── .gitignore ├── Asserts/ │ ├── ico.psd │ ├── ico1.psd │ ├── points.psd │ ├── strange_point.psd │ ├── 未标题-2.psd │ └── 未标题-3.psd ├── BMap.NET/ │ ├── BMap.NET.csproj │ ├── BMapConfiguration.cs │ ├── HTTPService/ │ │ ├── AKSNCaculater.cs │ │ ├── CoordinateTransService.cs │ │ ├── DirectionService.cs │ │ ├── GeocodingService.cs │ │ ├── IPService.cs │ │ ├── MapService.cs │ │ ├── PlaceService.cs │ │ ├── PlaceSuggestionService.cs │ │ └── ServiceBase.cs │ ├── LoadMapMode.cs │ ├── MapMode.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── BMap.Designer.cs │ │ └── BMap.settings │ ├── VerificationMode.cs │ └── app.config ├── BMap.NET.DownloadDemo/ │ ├── BMap.NET.DownloadDemo.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.config ├── BMap.NET.WindowsForm/ │ ├── BCityControl.Designer.cs │ ├── BCityControl.cs │ ├── BCityControl.resx │ ├── BDirectionBoard.Designer.cs │ ├── BDirectionBoard.cs │ ├── BDirectionBoard.resx │ ├── BDrivingRouteItem.Designer.cs │ ├── BDrivingRouteItem.cs │ ├── BDrivingRouteItem.resx │ ├── BDrivingStepItem.Designer.cs │ ├── BDrivingStepItem.cs │ ├── BDrivingStepItem.resx │ ├── BLoadMapModeControl.Designer.cs │ ├── BLoadMapModeControl.cs │ ├── BLoadMapModeControl.resx │ ├── BMap.NET.WindowsForm.csproj │ ├── BMapControl.Designer.cs │ ├── BMapControl.cs │ ├── BMapControl.resx │ ├── BMapElements/ │ │ ├── BBound.cs │ │ ├── BDistance.cs │ │ ├── BMapElement.cs │ │ ├── BMarker.cs │ │ ├── BNearBy.cs │ │ ├── BPOI.cs │ │ ├── BPoint.cs │ │ ├── BRoute.cs │ │ └── BTile.cs │ ├── BMarkerEditorControl.Designer.cs │ ├── BMarkerEditorControl.cs │ ├── BMarkerEditorControl.resx │ ├── BMarkerTipControl.Designer.cs │ ├── BMarkerTipControl.cs │ ├── BMarkerTipControl.resx │ ├── BPOITipControl.Designer.cs │ ├── BPOITipControl.cs │ ├── BPOITipControl.resx │ ├── BPlaceBox.Designer.cs │ ├── BPlaceBox.cs │ ├── BPlaceBox.resx │ ├── BPlaceItem.Designer.cs │ ├── BPlaceItem.cs │ ├── BPlaceItem.resx │ ├── BPlacesBoard.Designer.cs │ ├── BPlacesBoard.cs │ ├── BPlacesBoard.resx │ ├── BPlacesSuggestionControl.Designer.cs │ ├── BPlacesSuggestionControl.cs │ ├── BPlacesSuggestionControl.resx │ ├── BPlacesSuggestionItem.Designer.cs │ ├── BPlacesSuggestionItem.cs │ ├── BPlacesSuggestionItem.resx │ ├── BPointTipControl.Designer.cs │ ├── BPointTipControl.cs │ ├── BPointTipControl.resx │ ├── BQuickSearchBoardcs.Designer.cs │ ├── BQuickSearchBoardcs.cs │ ├── BQuickSearchBoardcs.resx │ ├── BQuickSearchControl.Designer.cs │ ├── BQuickSearchControl.cs │ ├── BQuickSearchControl.resx │ ├── BScreenshotMenu.Designer.cs │ ├── BScreenshotMenu.cs │ ├── BScreenshotMenu.resx │ ├── BStepStartAndEndItem.Designer.cs │ ├── BStepStartAndEndItem.cs │ ├── BStepStartAndEndItem.resx │ ├── BTaxiTipControl.Designer.cs │ ├── BTaxiTipControl.cs │ ├── BTaxiTipControl.resx │ ├── BTransitRouteItem.Designer.cs │ ├── BTransitRouteItem.cs │ ├── BTransitRouteItem.resx │ ├── BTransitStepItem.Designer.cs │ ├── BTransitStepItem.cs │ ├── BTransitStepItem.resx │ ├── BWalkingRouteItem.Designer.cs │ ├── BWalkingRouteItem.cs │ ├── BWalkingRouteItem.resx │ ├── BWalkingStepItem.Designer.cs │ ├── BWalkingStepItem.cs │ ├── BWalkingStepItem.resx │ ├── BaiduJSAPI_cracker.js │ ├── DrawingObjects/ │ │ ├── BCircle.cs │ │ ├── BDownloadRectangle.cs │ │ ├── BLine.cs │ │ ├── BPolygon.cs │ │ ├── BRectangle.cs │ │ ├── BScreenShotRectangle.cs │ │ └── DrawingObject.cs │ ├── FunctionalControls/ │ │ ├── BTabControl.cs │ │ ├── CityList.Designer.cs │ │ ├── CityList.cs │ │ └── CityList.resx │ ├── LatLngPoint.cs │ ├── MapDownloadDialog.Designer.cs │ ├── MapDownloadDialog.cs │ ├── MapDownloadDialog.resx │ ├── MapDownloaderControl.Designer.cs │ ├── MapDownloaderControl.cs │ ├── PointType.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── BMap.Designer.cs │ │ ├── BMap.resx │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources/ │ │ └── baidu_citys.txt │ └── RouteType.cs ├── BMap.NET.WinformDemo/ │ ├── BMap.NET.WinformDemo.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.config ├── BMap.NET.sln ├── README.md └── licences.txt