├── lisence.txt ├── Document ├── lisence.txt ├── structure │ ├── Thumbs.db │ ├── 架构图.jpg │ ├── 系统流程图.png │ ├── 系统流程图.vsd │ ├── GPS车辆监控系统架构图.jpg │ ├── GPS车辆监控系统架构图.vsd │ ├── MapConfigure结构图.png │ ├── MapConfigure结构图.vsd │ ├── GPSGatewaySimulator结构图.png │ ├── GPSGatewaySimulator结构图.vsd │ ├── GPSTrackingMonitor结构图.png │ └── GPSTrackingMonitor结构图.vsd ├── Relations │ ├── 项目实施计划.doc │ ├── 项目架构说明.doc │ └── 项目版本控制软件使用说明.doc └── demo_picture │ ├── car01[1].jpg │ ├── 02112603[1].gif │ ├── 20070625090239[1].jpg │ ├── gk_pro_19694[1].jpg │ ├── 1021099690_1_big[1].jpg │ ├── 128180971280312500[1].jpg │ ├── 1283375200621495046[1].jpg │ ├── 2007031314413815124[1].jpg │ ├── 20070430201126960[1].jpg │ └── 2007080311052737764[1].jpg ├── GPSTrackingSolution.suo ├── MapConfigure ├── frmMap.cs ├── readme.txt ├── frmAboutUS.cs ├── frmIdentify.cs ├── Resources │ ├── 123.bmp │ ├── 234.bmp │ ├── Pan.bmp │ ├── Delete.bmp │ ├── Edit.bmp │ ├── Export.bmp │ ├── Image1.bmp │ ├── ZoomIn.bmp │ ├── find.bmp │ ├── redo.bmp │ ├── undo.bmp │ ├── Identify.bmp │ ├── PanLeft.bmp │ ├── PanRight.bmp │ ├── Refresh.bmp │ ├── ZoomOut.bmp │ ├── layers_3.bmp │ ├── measure.bmp │ ├── FullExtent.bmp │ ├── flowchart_2.bmp │ ├── folder_open.bmp │ ├── information.bmp │ ├── layergroup.bmp │ ├── lineShape.bmp │ ├── pointShape.bmp │ ├── folder_closed.bmp │ ├── polygonShape.bmp │ └── ArcView_switch_selection.bmp ├── frmAttributesData.cs ├── MapUtil │ ├── LayerStyles.cs │ ├── MapOperation.cs │ ├── FeatureInformations.cs │ ├── MapOperationType.cs │ └── LayerInformations.cs ├── frmLayerProperties.cs ├── BaseHandler │ ├── MapManager.cs │ ├── CoordinateConvert.cs │ ├── XMLManager.cs │ ├── DatabaseManager.cs │ └── ExceptionHandler.cs ├── bin │ ├── Debug │ │ ├── IrisSkin2.dll │ │ ├── MagicLibrary.DLL │ │ ├── MapConfigure.exe │ │ ├── MapConfigure.pdb │ │ ├── SampleLegend.ocx │ │ ├── UtilityLibrary.dll │ │ ├── SymbolSelector_Com.dll │ │ ├── SymbolSelector_Com.pdb │ │ ├── AxInterop.MapObjects2.dll │ │ ├── Interop.MOSYMBOLLib.dll │ │ ├── Interop.MapObjects2.dll │ │ ├── MapConfigure.vshost.exe │ │ ├── Interop.SampleLegendControl.dll │ │ ├── WeifenLuo.WinFormsUI.Docking.dll │ │ └── AxInterop.SampleLegendControl.dll │ └── Release │ │ ├── MapConfigure.exe │ │ ├── MapConfigure.pdb │ │ ├── Interop.MapObjects2.dll │ │ ├── AxInterop.MapObjects2.dll │ │ └── WeifenLuo.WinFormsUI.Docking.dll ├── frmSenderExceptionInfos.cs ├── obj │ ├── Debug │ │ ├── MapConfigure.exe │ │ ├── MapConfigure.pdb │ │ ├── AxInterop.MapObjects2.dll │ │ ├── Interop.MapObjects2.dll │ │ ├── MapConfigure.frmMain.resources │ │ ├── MapConfigure.frmMap.resources │ │ ├── Interop.SampleLegendControl.dll │ │ ├── MapConfigure.frmLegend.resources │ │ ├── AxInterop.SampleLegendControl.dll │ │ ├── MapConfigure.frmIdentify.resources │ │ ├── MapConfigure.frmNavigation.resources │ │ ├── MapConfigure.frmAttributesData.resources │ │ ├── MapConfigure.csproj.GenerateResource.Cache │ │ ├── MapConfigure.frmLayerProperties.resources │ │ ├── MapConfigure.Properties.Resources.resources │ │ ├── MapConfigure.csproj.ResolveComReference.cache │ │ └── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ ├── Release │ │ ├── MapConfigure.exe │ │ ├── MapConfigure.pdb │ │ ├── Interop.MapObjects2.dll │ │ ├── MapConfigure.frmMain.resources │ │ ├── MapConfigure.frmMap.resources │ │ ├── MapConfigure.frmLegend.resources │ │ ├── MapConfigure.Properties.Resources.resources │ │ ├── MapConfigure.csproj.GenerateResource.Cache │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ └── MapConfigure.csproj.ResolveComReference.cache │ └── MapConfigure.csproj.FileListAbsolute.txt ├── ProjectUtil │ ├── GroupRenderStruct.cs │ ├── LabelRenderStruct.cs │ ├── ValueRenderStruct.cs │ ├── ImageLayerInfoStruct.cs │ ├── MapLayerInfoStruct.cs │ ├── ClassBreakRenderStruct.cs │ ├── ProjectStruct.cs │ ├── IRenderStruct.cs │ ├── RenderStruct.cs │ ├── RenderType.cs │ ├── ILayerStruct.cs │ ├── MapStruct.cs │ ├── ViewExtent.cs │ └── TextSymbolStruct.cs ├── CustomControl │ ├── StyleListTableTemplate.cs │ └── StyleListControl.Designer.cs ├── LayerProperties │ └── FieldsStructTableTemplate.cs ├── MapConfigure.csproj.user ├── Properties │ ├── Settings.settings │ ├── AssemblyInfo.cs │ └── Settings.Designer.cs ├── frmLicense.cs ├── frmToolPanel.cs ├── frmDataDictionary.cs ├── frmLayerDatatable.cs ├── Utilities │ └── Converter.cs ├── GlobeVariables.cs ├── frmToolPanel.Designer.cs ├── frmDataDictionary.Designer.cs ├── frmLayerDatatable.Designer.cs ├── Program.cs └── frmTruetypeSymbolSelection.cs ├── MapProject ├── lisence.txt ├── GroupRenderStruct.cs ├── LabelRenderStruct.cs ├── MapLayerInfoStruct.cs ├── ValueRenderStruct.cs ├── ImageLayerInfoStruct.cs ├── bin │ └── Debug │ │ ├── MapProject.dll │ │ ├── MapProject.pdb │ │ ├── Interop.MapObjects2.dll │ │ └── AxInterop.MapObjects2.dll ├── obj │ ├── Debug │ │ ├── MapProject.dll │ │ ├── MapProject.pdb │ │ ├── Interop.MapObjects2.dll │ │ ├── Refactor │ │ │ └── MapProject.dll │ │ └── MapProject.csproj.ResolveComReference.cache │ └── MapProject.csproj.FileList.txt ├── ClassBreakRenderStruct.cs ├── IRenderStruct.cs ├── RenderStruct.cs ├── RenderType.cs ├── ILayerStruct.cs ├── Converter.cs ├── Properties │ └── AssemblyInfo.cs ├── MapStruct.cs ├── ViewExtent.cs └── TextSymbolStruct.cs ├── GPSTrackingMonitor ├── frmMap.cs ├── lisence.txt ├── readme.txt ├── DotNetSkin.dll ├── frmAboutUS.cs ├── frmIdentify.cs ├── frmConfigure.cs ├── frmStatistic.cs ├── frmToolPanel.cs ├── GlobeVariables.cs ├── Resources │ ├── 123.bmp │ ├── 234.bmp │ ├── Edit.bmp │ ├── Pan.bmp │ ├── Thumbs.db │ ├── bex.bmp │ ├── find.bmp │ ├── redo.bmp │ ├── undo.bmp │ ├── Delete.bmp │ ├── Export.bmp │ ├── Image1.bmp │ ├── PanLeft.bmp │ ├── Refresh.bmp │ ├── ZoomIn.bmp │ ├── ZoomOut.bmp │ ├── measure.bmp │ ├── wrench.bmp │ ├── FullExtent.bmp │ ├── Identify.bmp │ ├── PanRight.bmp │ ├── layergroup.bmp │ ├── layergroup.ico │ ├── lineShape.bmp │ ├── pointShape.bmp │ ├── flowchart_2.bmp │ ├── folder_open.bmp │ ├── information.bmp │ ├── polygonShape.bmp │ ├── folder_closed.bmp │ ├── application_Arcplot.bmp │ └── ArcView_switch_selection.bmp ├── frmAdvanceFilter.cs ├── frmCarSearcher.cs ├── frmTackingReplay.cs ├── CommnicationMessage.dll ├── CommnicationMessage.pdb ├── GPSTrackingMonitor.pdb ├── Interop.MapObjects2.dll ├── MapUtil │ ├── MapOperation.cs │ ├── GDIHelper.cs │ ├── FeatureInformations.cs │ ├── ILayerInformation.cs │ ├── MapOperationType.cs │ └── LayerInformations.cs ├── bin │ └── Debug │ │ ├── MapProject.pdb │ │ ├── CommnicationMessage.dll │ │ ├── CommnicationMessage.pdb │ │ ├── GPSTrackingMonitor.exe │ │ ├── GPSTrackingMonitor.pdb │ │ ├── Interop.MapObjects2.dll │ │ ├── AxInterop.MapObjects2.dll │ │ ├── GPSTrackingMonitor.vshost.exe │ │ ├── WeifenLuo.WinFormsUI.Docking.dll │ │ ├── GPSTrackingMonitor.exe.config │ │ └── GPSTrackingMonitor.vshost.exe.config ├── frmRealtimeCarInfos.cs ├── AxInterop.MapObjects2.dll ├── BaseHandler │ ├── Comparison.cs │ ├── MapManager.cs │ ├── DatabaseManager.cs │ ├── CoordinateConvert.cs │ ├── DistinctRowsQuery.cs │ ├── XMLManager.cs │ ├── ShortestPath.cs │ ├── ExceptionHandler.cs │ ├── GPSTrackingReplay.cs │ └── SocketCommunication.cs ├── frmSenderExceptionInfos.cs ├── Communications │ ├── SocketClient.cs │ ├── MessagePool.cs │ └── MessageArguments.cs ├── CustomControl │ ├── LegendControl.cs │ └── LegendControl.Designer.cs ├── RealtimeMonite │ ├── CustomSymbol.cs │ └── TrackingDataTableStruct.cs ├── TrackingReplay │ ├── GPSTrackReplay.cs │ ├── TrackInterpolate.cs │ └── TrackingDataStructure.cs ├── Utilities │ ├── CustomFormatProvider.cs │ ├── CarSearchType.cs │ ├── DataFilter.cs │ └── GDIPlus.cs ├── WeifenLuo.WinFormsUI.Docking.dll ├── obj │ ├── Debug │ │ ├── GPSTrackingMonitor.exe │ │ ├── GPSTrackingMonitor.pdb │ │ ├── Interop.MapObjects2.dll │ │ ├── Interop.esriShellExt.dll │ │ ├── AxInterop.MapObjects2.dll │ │ ├── TempPE │ │ │ ├── CrystalReport1.cs.dll │ │ │ ├── HistoryPointsDataSet.Designer.cs.dll │ │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── ResolveAssemblyReference.cache │ │ ├── GPSTrackingMonitor.frmMain.resources │ │ ├── GPSTrackingMonitor.frmMap.resources │ │ ├── GPSTrackingMonitor.frmAbout.resources │ │ ├── GPSTrackingMonitor.frmLegend.resources │ │ ├── GPSTrackingMonitor.frmStartup.resources │ │ ├── GPSTrackingMonitor.frmConfigure.resources │ │ ├── GPSTrackingMonitor.frmIdentify.resources │ │ ├── GPSTrackingMonitor.frmStatistic.resources │ │ ├── GPSTrackingMonitor.frmCarSearcher.resources │ │ ├── GPSTrackingMonitor.frmNavigation.resources │ │ ├── GPSTrackingMonitor.frmAdvanceFilter.resources │ │ ├── GPSTrackingMonitor.frmCarDetailInfos.resources │ │ ├── GPSTrackingMonitor.frmTackingReplay.resources │ │ ├── GPSTrackingMonitor.Properties.Resources.resources │ │ ├── GPSTrackingMonitor.csproj.GenerateResource.Cache │ │ ├── GPSTrackingMonitor.frmRealtimeCarInfos.resources │ │ ├── GPSTrackingMonitor.csproj.ResolveComReference.cache │ │ └── GPSTrackingMonitor.CustomControl.SymbolSelector.resources │ └── Release │ │ ├── GPSTrackingMonitor.exe │ │ ├── GPSTrackingMonitor.pdb │ │ ├── Interop.MapObjects2.dll │ │ ├── AxInterop.MapObjects2.dll │ │ ├── ResolveAssemblyReference.cache │ │ ├── GPSTrackingMonitor.frmAbout.resources │ │ ├── GPSTrackingMonitor.frmMain.resources │ │ ├── GPSTrackingMonitor.frmMap.resources │ │ ├── GPSTrackingMonitor.frmLegend.resources │ │ ├── GPSTrackingMonitor.frmStartup.resources │ │ ├── GPSTrackingMonitor.frmConfigure.resources │ │ ├── GPSTrackingMonitor.frmIdentify.resources │ │ ├── GPSTrackingMonitor.frmNavigation.resources │ │ ├── GPSTrackingMonitor.frmCarSearcher.resources │ │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── GPSTrackingMonitor.frmTackingReplay.resources │ │ ├── GPSTrackingMonitor.Properties.Resources.resources │ │ ├── GPSTrackingMonitor.csproj.GenerateResource.Cache │ │ ├── GPSTrackingMonitor.frmRealtimeCarInfos.resources │ │ ├── GPSTrackingMonitor.csproj.ResolveComReference.cache │ │ └── GPSTrackingMonitor.CustomControl.SymbolSelector.resources ├── GlobeEvents.cs ├── Configures │ ├── DatabaseTypeEnum.cs │ ├── CommunicationConfigureStruct.cs │ └── SystemConfigureStrcut.cs ├── frmReport.cs ├── frmLicense.cs ├── frmStartup.cs ├── frmFeatureQuery.cs ├── frmShortestPath.cs ├── app.config ├── GPSTrackingMonitor.csproj.user ├── frmCarDetailInfos.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Settings.settings │ └── Settings.Designer.cs ├── frmReport.Designer.cs ├── frmToolPanel.Designer.cs ├── frmFeatureQuery.Designer.cs ├── frmShortestPath.Designer.cs ├── Program.cs ├── frmStartup.Designer.cs └── frmStatistic.Designer.cs ├── GPSGatewaySimulator ├── readme.txt ├── frmAboutUS.cs ├── lisence.txt ├── Resources │ ├── x.bmp │ ├── 123.bmp │ ├── 234.bmp │ ├── stop.bmp │ ├── flag_white.bmp │ ├── flag_yellow.bmp │ ├── information.bmp │ ├── database_with_x.bmp │ ├── 2007718101835228[1].gif │ ├── blue_velvet_001[1].png │ ├── database_small_with_arrow.bmp │ └── database_small_with_sparkle.bmp ├── GlobeVariables.cs ├── frmSendMessage.cs ├── frmSetLoadParas.cs ├── frmLoadRandomLocation.cs ├── frmSenderExceptionInfos.cs ├── BaseHandler │ ├── DatabaseManager.cs │ ├── ExceptionHandler.cs │ ├── SocketCommunication.cs │ └── MapManager.cs ├── Communications │ ├── SocketClient.cs │ ├── SocketServer.cs │ └── MessageArguments.cs ├── bin │ ├── Debug │ │ ├── CommnicationMessage.dll │ │ ├── CommnicationMessage.pdb │ │ ├── GPSGatewaySimulator.duo │ │ ├── GPSGatewaySimulator.exe │ │ ├── GPSGatewaySimulator.pdb │ │ ├── Interop.MapObjects2.dll │ │ ├── SocketCommnication.dll │ │ ├── SocketCommnication.pdb │ │ ├── data │ │ │ └── RandomPoints.mdb │ │ ├── GPSGatewaySimulator.vshost.exe │ │ └── WeifenLuo.WinFormsUI.Docking.dll │ └── Release │ │ ├── CommnicationMessage.dll │ │ ├── CommnicationMessage.pdb │ │ ├── GPSGatewaySimulator.exe │ │ ├── GPSGatewaySimulator.pdb │ │ ├── Interop.MapObjects2.dll │ │ └── WeifenLuo.WinFormsUI.Docking.dll ├── obj │ ├── Debug │ │ ├── GPSGatewaySimulator.exe │ │ ├── GPSGatewaySimulator.pdb │ │ ├── Interop.MapObjects2.dll │ │ ├── ResolveAssemblyReference.cache │ │ ├── GPSGatewaySimulator.frmMain.resources │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── GPSGatewaySimulator.frmSendMessage.resources │ │ ├── GPSGatewaySimulator.frmSetLoadParas.resources │ │ ├── GPSGatewaySimulator.Properties.Resources.resources │ │ ├── GPSGatewaySimulator.csproj.GenerateResource.Cache │ │ ├── GPSGatewaySimulator.csproj.ResolveComReference.cache │ │ └── GPSGatewaySimulator.frmLoadRandomLocation.resources │ └── GPSGatewaySimulator.csproj.FileList.txt ├── RandomPoints │ ├── GeneryRandomPoints.cs │ ├── LoadRandomPointToDB.cs │ ├── RandomStringType.cs │ ├── GetRandomCarLocations.cs │ └── GeneryRandomString.cs ├── GeneryRandomPoints │ ├── GeneryRandomPoints.cs │ ├── LoadRandomPointToDB.cs │ ├── RandomPointsDataTableStruct.cs │ ├── RandomStringType.cs │ ├── GetRandomCarLocations.cs │ └── GeneryRandomString.cs ├── HistoryTrakings │ └── TrackingDataTableStruct.cs ├── GPSGatewaySimulator.csproj.user ├── Properties │ ├── Settings.settings │ ├── AssemblyInfo.cs │ └── Settings.Designer.cs ├── frmLicense.cs └── Program.cs ├── CommunicationMessage ├── lisence.txt ├── bin │ ├── Debug │ │ ├── SocketCommnication.dll │ │ ├── SocketCommnication.pdb │ │ ├── CommnicationMessage.dll │ │ └── CommnicationMessage.pdb │ └── Release │ │ ├── CommnicationMessage.dll │ │ └── CommnicationMessage.pdb ├── obj │ ├── Debug │ │ ├── SocketCommnication.dll │ │ ├── SocketCommnication.pdb │ │ ├── CommnicationMessage.dll │ │ ├── CommnicationMessage.pdb │ │ └── Refactor │ │ │ └── CommnicationMessage.dll │ ├── Release │ │ ├── CommnicationMessage.dll │ │ └── CommnicationMessage.pdb │ ├── CommnicationMessage.csproj.FileList.txt │ ├── SocketCommnication.csproj.FileListAbsolute.txt │ └── CommnicationMessage.csproj.FileListAbsolute.txt └── Properties │ └── AssemblyInfo.cs ├── GPSTrackingRecorder ├── frmAboutUS.cs ├── lisence.txt ├── GlobeVariables.cs ├── Resources │ ├── 123.bmp │ ├── 234.bmp │ ├── stop.bmp │ ├── information.bmp │ ├── 2007718101835228[1].gif │ ├── feature_point_move_3.bmp │ ├── database_connection_with_x.bmp │ └── database_connection_small_with_sparkle.bmp ├── frmSenderExceptionInfos.cs ├── BaseHandler │ ├── DatabaseManager.cs │ └── ExceptionHandler.cs ├── Communications │ ├── SocketClient.cs │ └── MessageArguments.cs ├── HistoryTrakings │ ├── SavePointsToDB.cs │ ├── TrackingDataTableStruct.cs │ ├── RandomStringType.cs │ └── GeneryRandomString.cs ├── bin │ ├── Debug │ │ ├── CommnicationMessage.dll │ │ ├── CommnicationMessage.pdb │ │ ├── GPSTrackingRecorder.duo │ │ ├── GPSTrackingRecorder.exe │ │ ├── GPSTrackingRecorder.pdb │ │ ├── SocketCommnication.dll │ │ ├── data │ │ │ └── HistoryPoints.mdb │ │ └── GPSTrackingRecorder.vshost.exe │ └── Release │ │ ├── CommnicationMessage.dll │ │ ├── CommnicationMessage.pdb │ │ ├── GPSTrackingRecorder.exe │ │ └── GPSTrackingRecorder.pdb ├── obj │ ├── Debug │ │ ├── GPSTrackingRecorder.exe │ │ ├── GPSTrackingRecorder.pdb │ │ ├── ResolveAssemblyReference.cache │ │ ├── GPSTrackingRecorder.frmMain.resources │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── GPSTrackingRecorder.frmSocketConfig.resources │ │ ├── GPSTrackingRecorder.Properties.Resources.resources │ │ └── GPSTrackingRecorder.csproj.GenerateResource.Cache │ ├── Release │ │ ├── GPSTrackingRecorder.exe │ │ ├── GPSTrackingRecorder.pdb │ │ ├── GPSTrackingRecorder.frmMain.resources │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── GPSTrackingRecorder.frmSocketConfig.resources │ │ ├── GPSTrackingRecorder.Properties.Resources.resources │ │ └── GPSTrackingRecorder.csproj.GenerateResource.Cache │ ├── GPSTrackingRecorder.csproj.FileList.txt │ └── GPSTrackingRecorder.csproj.FileListAbsolute.txt ├── Properties │ ├── Settings.settings │ ├── AssemblyInfo.cs │ └── Settings.Designer.cs ├── frmLicense.cs ├── Program.cs └── frmSocketConfig.cs └── README.md /lisence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/lisence.txt -------------------------------------------------------------------------------- /Document/lisence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/lisence.txt -------------------------------------------------------------------------------- /GPSTrackingSolution.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingSolution.suo -------------------------------------------------------------------------------- /MapConfigure/frmMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/frmMap.cs -------------------------------------------------------------------------------- /MapConfigure/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/readme.txt -------------------------------------------------------------------------------- /MapProject/lisence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/lisence.txt -------------------------------------------------------------------------------- /Document/structure/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/structure/Thumbs.db -------------------------------------------------------------------------------- /Document/structure/架构图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/structure/架构图.jpg -------------------------------------------------------------------------------- /Document/structure/系统流程图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/structure/系统流程图.png -------------------------------------------------------------------------------- /Document/structure/系统流程图.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/structure/系统流程图.vsd -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/frmMap.cs -------------------------------------------------------------------------------- /MapConfigure/frmAboutUS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/frmAboutUS.cs -------------------------------------------------------------------------------- /MapConfigure/frmIdentify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/frmIdentify.cs -------------------------------------------------------------------------------- /Document/Relations/项目实施计划.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/Relations/项目实施计划.doc -------------------------------------------------------------------------------- /Document/Relations/项目架构说明.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/Relations/项目架构说明.doc -------------------------------------------------------------------------------- /GPSGatewaySimulator/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/readme.txt -------------------------------------------------------------------------------- /GPSTrackingMonitor/lisence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/lisence.txt -------------------------------------------------------------------------------- /GPSTrackingMonitor/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/readme.txt -------------------------------------------------------------------------------- /MapConfigure/Resources/123.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/123.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/234.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/234.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/Pan.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/Pan.bmp -------------------------------------------------------------------------------- /CommunicationMessage/lisence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/lisence.txt -------------------------------------------------------------------------------- /GPSGatewaySimulator/frmAboutUS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/frmAboutUS.cs -------------------------------------------------------------------------------- /GPSGatewaySimulator/lisence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/lisence.txt -------------------------------------------------------------------------------- /GPSTrackingMonitor/DotNetSkin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/DotNetSkin.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmAboutUS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/frmAboutUS.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmIdentify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/frmIdentify.cs -------------------------------------------------------------------------------- /GPSTrackingRecorder/frmAboutUS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/frmAboutUS.cs -------------------------------------------------------------------------------- /GPSTrackingRecorder/lisence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/lisence.txt -------------------------------------------------------------------------------- /MapConfigure/Resources/Delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/Delete.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/Edit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/Edit.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/Export.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/Export.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/Image1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/Image1.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/ZoomIn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/ZoomIn.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/find.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/find.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/redo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/redo.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/undo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/undo.bmp -------------------------------------------------------------------------------- /MapConfigure/frmAttributesData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/frmAttributesData.cs -------------------------------------------------------------------------------- /MapProject/GroupRenderStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/GroupRenderStruct.cs -------------------------------------------------------------------------------- /MapProject/LabelRenderStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/LabelRenderStruct.cs -------------------------------------------------------------------------------- /MapProject/MapLayerInfoStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/MapLayerInfoStruct.cs -------------------------------------------------------------------------------- /MapProject/ValueRenderStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/ValueRenderStruct.cs -------------------------------------------------------------------------------- /Document/Relations/项目版本控制软件使用说明.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/Relations/项目版本控制软件使用说明.doc -------------------------------------------------------------------------------- /Document/demo_picture/car01[1].jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/demo_picture/car01[1].jpg -------------------------------------------------------------------------------- /Document/structure/GPS车辆监控系统架构图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/structure/GPS车辆监控系统架构图.jpg -------------------------------------------------------------------------------- /Document/structure/GPS车辆监控系统架构图.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/structure/GPS车辆监控系统架构图.vsd -------------------------------------------------------------------------------- /GPSGatewaySimulator/Resources/x.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Resources/x.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/frmConfigure.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmStatistic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/frmStatistic.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmToolPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/frmToolPanel.cs -------------------------------------------------------------------------------- /MapConfigure/MapUtil/LayerStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/MapUtil/LayerStyles.cs -------------------------------------------------------------------------------- /MapConfigure/Resources/Identify.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/Identify.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/PanLeft.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/PanLeft.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/PanRight.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/PanRight.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/Refresh.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/Refresh.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/ZoomOut.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/ZoomOut.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/layers_3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/layers_3.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/measure.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/measure.bmp -------------------------------------------------------------------------------- /MapConfigure/frmLayerProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/frmLayerProperties.cs -------------------------------------------------------------------------------- /MapProject/ImageLayerInfoStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/ImageLayerInfoStruct.cs -------------------------------------------------------------------------------- /MapProject/bin/Debug/MapProject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/bin/Debug/MapProject.dll -------------------------------------------------------------------------------- /MapProject/bin/Debug/MapProject.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/bin/Debug/MapProject.pdb -------------------------------------------------------------------------------- /MapProject/obj/Debug/MapProject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/obj/Debug/MapProject.dll -------------------------------------------------------------------------------- /MapProject/obj/Debug/MapProject.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/obj/Debug/MapProject.pdb -------------------------------------------------------------------------------- /Document/demo_picture/02112603[1].gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/demo_picture/02112603[1].gif -------------------------------------------------------------------------------- /Document/structure/MapConfigure结构图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/structure/MapConfigure结构图.png -------------------------------------------------------------------------------- /Document/structure/MapConfigure结构图.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/structure/MapConfigure结构图.vsd -------------------------------------------------------------------------------- /GPSGatewaySimulator/GlobeVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/GlobeVariables.cs -------------------------------------------------------------------------------- /GPSGatewaySimulator/Resources/123.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Resources/123.bmp -------------------------------------------------------------------------------- /GPSGatewaySimulator/Resources/234.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Resources/234.bmp -------------------------------------------------------------------------------- /GPSGatewaySimulator/Resources/stop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Resources/stop.bmp -------------------------------------------------------------------------------- /GPSGatewaySimulator/frmSendMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/frmSendMessage.cs -------------------------------------------------------------------------------- /GPSGatewaySimulator/frmSetLoadParas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/frmSetLoadParas.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/GlobeVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/GlobeVariables.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/123.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/123.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/234.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/234.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/Edit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/Edit.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/Pan.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/Pan.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/Thumbs.db -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/bex.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/bex.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/find.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/find.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/redo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/redo.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/undo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/undo.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmAdvanceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/frmAdvanceFilter.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmCarSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/frmCarSearcher.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmTackingReplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/frmTackingReplay.cs -------------------------------------------------------------------------------- /GPSTrackingRecorder/GlobeVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/GlobeVariables.cs -------------------------------------------------------------------------------- /GPSTrackingRecorder/Resources/123.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/Resources/123.bmp -------------------------------------------------------------------------------- /GPSTrackingRecorder/Resources/234.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/Resources/234.bmp -------------------------------------------------------------------------------- /GPSTrackingRecorder/Resources/stop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/Resources/stop.bmp -------------------------------------------------------------------------------- /MapConfigure/BaseHandler/MapManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/BaseHandler/MapManager.cs -------------------------------------------------------------------------------- /MapConfigure/MapUtil/MapOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/MapUtil/MapOperation.cs -------------------------------------------------------------------------------- /MapConfigure/Resources/FullExtent.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/FullExtent.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/flowchart_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/flowchart_2.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/folder_open.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/folder_open.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/information.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/information.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/layergroup.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/layergroup.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/lineShape.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/lineShape.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/pointShape.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/pointShape.bmp -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/IrisSkin2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/IrisSkin2.dll -------------------------------------------------------------------------------- /MapProject/ClassBreakRenderStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/ClassBreakRenderStruct.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/Delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/Delete.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/Export.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/Export.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/Image1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/Image1.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/PanLeft.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/PanLeft.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/Refresh.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/Refresh.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/ZoomIn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/ZoomIn.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/ZoomOut.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/ZoomOut.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/measure.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/measure.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/wrench.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/wrench.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/folder_closed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/folder_closed.bmp -------------------------------------------------------------------------------- /MapConfigure/Resources/polygonShape.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/polygonShape.bmp -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/MagicLibrary.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/MagicLibrary.DLL -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/MapConfigure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/MapConfigure.exe -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/MapConfigure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/MapConfigure.pdb -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/SampleLegend.ocx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/SampleLegend.ocx -------------------------------------------------------------------------------- /MapConfigure/frmSenderExceptionInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/frmSenderExceptionInfos.cs -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/MapConfigure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/MapConfigure.exe -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/MapConfigure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/MapConfigure.pdb -------------------------------------------------------------------------------- /Document/demo_picture/20070625090239[1].jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/demo_picture/20070625090239[1].jpg -------------------------------------------------------------------------------- /Document/demo_picture/gk_pro_19694[1].jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/demo_picture/gk_pro_19694[1].jpg -------------------------------------------------------------------------------- /GPSTrackingMonitor/CommnicationMessage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/CommnicationMessage.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/CommnicationMessage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/CommnicationMessage.pdb -------------------------------------------------------------------------------- /GPSTrackingMonitor/GPSTrackingMonitor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/GPSTrackingMonitor.pdb -------------------------------------------------------------------------------- /GPSTrackingMonitor/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/MapUtil/MapOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/MapUtil/MapOperation.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/FullExtent.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/FullExtent.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/Identify.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/Identify.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/PanRight.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/PanRight.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/layergroup.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/layergroup.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/layergroup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/layergroup.ico -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/lineShape.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/lineShape.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/pointShape.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/pointShape.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/bin/Debug/MapProject.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/bin/Debug/MapProject.pdb -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmRealtimeCarInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/frmRealtimeCarInfos.cs -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/UtilityLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/UtilityLibrary.dll -------------------------------------------------------------------------------- /MapConfigure/bin/Release/MapConfigure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Release/MapConfigure.exe -------------------------------------------------------------------------------- /MapConfigure/bin/Release/MapConfigure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Release/MapConfigure.pdb -------------------------------------------------------------------------------- /MapConfigure/obj/Release/MapConfigure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Release/MapConfigure.exe -------------------------------------------------------------------------------- /MapConfigure/obj/Release/MapConfigure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Release/MapConfigure.pdb -------------------------------------------------------------------------------- /Document/demo_picture/1021099690_1_big[1].jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/demo_picture/1021099690_1_big[1].jpg -------------------------------------------------------------------------------- /Document/structure/GPSGatewaySimulator结构图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/structure/GPSGatewaySimulator结构图.png -------------------------------------------------------------------------------- /Document/structure/GPSGatewaySimulator结构图.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/structure/GPSGatewaySimulator结构图.vsd -------------------------------------------------------------------------------- /Document/structure/GPSTrackingMonitor结构图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/structure/GPSTrackingMonitor结构图.png -------------------------------------------------------------------------------- /Document/structure/GPSTrackingMonitor结构图.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/structure/GPSTrackingMonitor结构图.vsd -------------------------------------------------------------------------------- /GPSGatewaySimulator/Resources/flag_white.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Resources/flag_white.bmp -------------------------------------------------------------------------------- /GPSGatewaySimulator/Resources/flag_yellow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Resources/flag_yellow.bmp -------------------------------------------------------------------------------- /GPSGatewaySimulator/Resources/information.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Resources/information.bmp -------------------------------------------------------------------------------- /GPSGatewaySimulator/frmLoadRandomLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/frmLoadRandomLocation.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/AxInterop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/AxInterop.MapObjects2.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/BaseHandler/Comparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/BaseHandler/Comparison.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/BaseHandler/MapManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/BaseHandler/MapManager.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/flowchart_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/flowchart_2.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/folder_open.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/folder_open.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/information.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/information.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/polygonShape.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/polygonShape.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmSenderExceptionInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/frmSenderExceptionInfos.cs -------------------------------------------------------------------------------- /GPSTrackingRecorder/Resources/information.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/Resources/information.bmp -------------------------------------------------------------------------------- /MapConfigure/BaseHandler/CoordinateConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/BaseHandler/CoordinateConvert.cs -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/GroupRenderStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/ProjectUtil/GroupRenderStruct.cs -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/LabelRenderStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/ProjectUtil/LabelRenderStruct.cs -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/ValueRenderStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/ProjectUtil/ValueRenderStruct.cs -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/SymbolSelector_Com.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/SymbolSelector_Com.dll -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/SymbolSelector_Com.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/SymbolSelector_Com.pdb -------------------------------------------------------------------------------- /MapProject/bin/Debug/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/bin/Debug/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /MapProject/obj/Debug/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/obj/Debug/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /MapProject/obj/Debug/Refactor/MapProject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/obj/Debug/Refactor/MapProject.dll -------------------------------------------------------------------------------- /Document/demo_picture/128180971280312500[1].jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/demo_picture/128180971280312500[1].jpg -------------------------------------------------------------------------------- /Document/demo_picture/1283375200621495046[1].jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/demo_picture/1283375200621495046[1].jpg -------------------------------------------------------------------------------- /Document/demo_picture/2007031314413815124[1].jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/demo_picture/2007031314413815124[1].jpg -------------------------------------------------------------------------------- /Document/demo_picture/20070430201126960[1].jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/demo_picture/20070430201126960[1].jpg -------------------------------------------------------------------------------- /Document/demo_picture/2007080311052737764[1].jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/Document/demo_picture/2007080311052737764[1].jpg -------------------------------------------------------------------------------- /GPSGatewaySimulator/frmSenderExceptionInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/frmSenderExceptionInfos.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/folder_closed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/folder_closed.bmp -------------------------------------------------------------------------------- /GPSTrackingRecorder/frmSenderExceptionInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/frmSenderExceptionInfos.cs -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/ImageLayerInfoStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/ProjectUtil/ImageLayerInfoStruct.cs -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/MapLayerInfoStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/ProjectUtil/MapLayerInfoStruct.cs -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/AxInterop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/AxInterop.MapObjects2.dll -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/Interop.MOSYMBOLLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/Interop.MOSYMBOLLib.dll -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/MapConfigure.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/MapConfigure.vshost.exe -------------------------------------------------------------------------------- /MapConfigure/bin/Release/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Release/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/AxInterop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/AxInterop.MapObjects2.dll -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /MapConfigure/obj/Release/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Release/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /MapProject/bin/Debug/AxInterop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/bin/Debug/AxInterop.MapObjects2.dll -------------------------------------------------------------------------------- /GPSGatewaySimulator/BaseHandler/DatabaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/BaseHandler/DatabaseManager.cs -------------------------------------------------------------------------------- /GPSGatewaySimulator/Communications/SocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Communications/SocketClient.cs -------------------------------------------------------------------------------- /GPSGatewaySimulator/Communications/SocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Communications/SocketServer.cs -------------------------------------------------------------------------------- /GPSGatewaySimulator/Resources/database_with_x.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Resources/database_with_x.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/BaseHandler/DatabaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/BaseHandler/DatabaseManager.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/Communications/SocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Communications/SocketClient.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/CustomControl/LegendControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/CustomControl/LegendControl.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/RealtimeMonite/CustomSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/RealtimeMonite/CustomSymbol.cs -------------------------------------------------------------------------------- /GPSTrackingRecorder/BaseHandler/DatabaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/BaseHandler/DatabaseManager.cs -------------------------------------------------------------------------------- /GPSTrackingRecorder/Communications/SocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/Communications/SocketClient.cs -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/ClassBreakRenderStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/ProjectUtil/ClassBreakRenderStruct.cs -------------------------------------------------------------------------------- /MapConfigure/bin/Release/AxInterop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Release/AxInterop.MapObjects2.dll -------------------------------------------------------------------------------- /CommunicationMessage/bin/Debug/SocketCommnication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/bin/Debug/SocketCommnication.dll -------------------------------------------------------------------------------- /CommunicationMessage/bin/Debug/SocketCommnication.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/bin/Debug/SocketCommnication.pdb -------------------------------------------------------------------------------- /CommunicationMessage/obj/Debug/SocketCommnication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/obj/Debug/SocketCommnication.dll -------------------------------------------------------------------------------- /CommunicationMessage/obj/Debug/SocketCommnication.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/obj/Debug/SocketCommnication.pdb -------------------------------------------------------------------------------- /GPSGatewaySimulator/Resources/2007718101835228[1].gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Resources/2007718101835228[1].gif -------------------------------------------------------------------------------- /GPSGatewaySimulator/Resources/blue_velvet_001[1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Resources/blue_velvet_001[1].png -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Debug/CommnicationMessage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Debug/CommnicationMessage.dll -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Debug/CommnicationMessage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Debug/CommnicationMessage.pdb -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Debug/GPSGatewaySimulator.duo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Debug/GPSGatewaySimulator.duo -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Debug/GPSGatewaySimulator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Debug/GPSGatewaySimulator.exe -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Debug/GPSGatewaySimulator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Debug/GPSGatewaySimulator.pdb -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Debug/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Debug/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Debug/SocketCommnication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Debug/SocketCommnication.dll -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Debug/SocketCommnication.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Debug/SocketCommnication.pdb -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Debug/data/RandomPoints.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Debug/data/RandomPoints.mdb -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.exe -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.pdb -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/Debug/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/obj/Debug/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/BaseHandler/CoordinateConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/BaseHandler/CoordinateConvert.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/BaseHandler/DistinctRowsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/BaseHandler/DistinctRowsQuery.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/application_Arcplot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/application_Arcplot.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/TrackingReplay/GPSTrackReplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/TrackingReplay/GPSTrackReplay.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/TrackingReplay/TrackInterpolate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/TrackingReplay/TrackInterpolate.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/Utilities/CustomFormatProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Utilities/CustomFormatProvider.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/WeifenLuo.WinFormsUI.Docking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/WeifenLuo.WinFormsUI.Docking.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/bin/Debug/CommnicationMessage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/bin/Debug/CommnicationMessage.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/bin/Debug/CommnicationMessage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/bin/Debug/CommnicationMessage.pdb -------------------------------------------------------------------------------- /GPSTrackingMonitor/bin/Debug/GPSTrackingMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/bin/Debug/GPSTrackingMonitor.exe -------------------------------------------------------------------------------- /GPSTrackingMonitor/bin/Debug/GPSTrackingMonitor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/bin/Debug/GPSTrackingMonitor.pdb -------------------------------------------------------------------------------- /GPSTrackingMonitor/bin/Debug/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/bin/Debug/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.exe -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.pdb -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/Interop.esriShellExt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/Interop.esriShellExt.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.exe -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.pdb -------------------------------------------------------------------------------- /GPSTrackingRecorder/HistoryTrakings/SavePointsToDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/HistoryTrakings/SavePointsToDB.cs -------------------------------------------------------------------------------- /GPSTrackingRecorder/Resources/2007718101835228[1].gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/Resources/2007718101835228[1].gif -------------------------------------------------------------------------------- /GPSTrackingRecorder/bin/Debug/CommnicationMessage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/bin/Debug/CommnicationMessage.dll -------------------------------------------------------------------------------- /GPSTrackingRecorder/bin/Debug/CommnicationMessage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/bin/Debug/CommnicationMessage.pdb -------------------------------------------------------------------------------- /GPSTrackingRecorder/bin/Debug/GPSTrackingRecorder.duo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/bin/Debug/GPSTrackingRecorder.duo -------------------------------------------------------------------------------- /GPSTrackingRecorder/bin/Debug/GPSTrackingRecorder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/bin/Debug/GPSTrackingRecorder.exe -------------------------------------------------------------------------------- /GPSTrackingRecorder/bin/Debug/GPSTrackingRecorder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/bin/Debug/GPSTrackingRecorder.pdb -------------------------------------------------------------------------------- /GPSTrackingRecorder/bin/Debug/SocketCommnication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/bin/Debug/SocketCommnication.dll -------------------------------------------------------------------------------- /GPSTrackingRecorder/bin/Debug/data/HistoryPoints.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/bin/Debug/data/HistoryPoints.mdb -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Debug/GPSTrackingRecorder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Debug/GPSTrackingRecorder.exe -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Debug/GPSTrackingRecorder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Debug/GPSTrackingRecorder.pdb -------------------------------------------------------------------------------- /MapConfigure/CustomControl/StyleListTableTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/CustomControl/StyleListTableTemplate.cs -------------------------------------------------------------------------------- /MapConfigure/Resources/ArcView_switch_selection.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/Resources/ArcView_switch_selection.bmp -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/MapConfigure.frmMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/MapConfigure.frmMain.resources -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/MapConfigure.frmMap.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/MapConfigure.frmMap.resources -------------------------------------------------------------------------------- /CommunicationMessage/bin/Debug/CommnicationMessage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/bin/Debug/CommnicationMessage.dll -------------------------------------------------------------------------------- /CommunicationMessage/bin/Debug/CommnicationMessage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/bin/Debug/CommnicationMessage.pdb -------------------------------------------------------------------------------- /CommunicationMessage/obj/Debug/CommnicationMessage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/obj/Debug/CommnicationMessage.dll -------------------------------------------------------------------------------- /CommunicationMessage/obj/Debug/CommnicationMessage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/obj/Debug/CommnicationMessage.pdb -------------------------------------------------------------------------------- /GPSGatewaySimulator/RandomPoints/GeneryRandomPoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/RandomPoints/GeneryRandomPoints.cs -------------------------------------------------------------------------------- /GPSGatewaySimulator/RandomPoints/LoadRandomPointToDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/RandomPoints/LoadRandomPointToDB.cs -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Release/CommnicationMessage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Release/CommnicationMessage.dll -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Release/CommnicationMessage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Release/CommnicationMessage.pdb -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Release/GPSGatewaySimulator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Release/GPSGatewaySimulator.exe -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Release/GPSGatewaySimulator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Release/GPSGatewaySimulator.pdb -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Release/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Release/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/bin/Debug/AxInterop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/bin/Debug/AxInterop.MapObjects2.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/AxInterop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/AxInterop.MapObjects2.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/Interop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/Interop.MapObjects2.dll -------------------------------------------------------------------------------- /GPSTrackingRecorder/Resources/feature_point_move_3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/Resources/feature_point_move_3.bmp -------------------------------------------------------------------------------- /GPSTrackingRecorder/bin/Release/CommnicationMessage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/bin/Release/CommnicationMessage.dll -------------------------------------------------------------------------------- /GPSTrackingRecorder/bin/Release/CommnicationMessage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/bin/Release/CommnicationMessage.pdb -------------------------------------------------------------------------------- /GPSTrackingRecorder/bin/Release/GPSTrackingRecorder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/bin/Release/GPSTrackingRecorder.exe -------------------------------------------------------------------------------- /GPSTrackingRecorder/bin/Release/GPSTrackingRecorder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/bin/Release/GPSTrackingRecorder.pdb -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Release/GPSTrackingRecorder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Release/GPSTrackingRecorder.exe -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Release/GPSTrackingRecorder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Release/GPSTrackingRecorder.pdb -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/Interop.SampleLegendControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/Interop.SampleLegendControl.dll -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/WeifenLuo.WinFormsUI.Docking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/WeifenLuo.WinFormsUI.Docking.dll -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/Interop.SampleLegendControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/Interop.SampleLegendControl.dll -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/MapConfigure.frmLegend.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/MapConfigure.frmLegend.resources -------------------------------------------------------------------------------- /MapConfigure/obj/Release/MapConfigure.frmMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Release/MapConfigure.frmMain.resources -------------------------------------------------------------------------------- /MapConfigure/obj/Release/MapConfigure.frmMap.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Release/MapConfigure.frmMap.resources -------------------------------------------------------------------------------- /CommunicationMessage/bin/Release/CommnicationMessage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/bin/Release/CommnicationMessage.dll -------------------------------------------------------------------------------- /CommunicationMessage/bin/Release/CommnicationMessage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/bin/Release/CommnicationMessage.pdb -------------------------------------------------------------------------------- /CommunicationMessage/obj/Release/CommnicationMessage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/obj/Release/CommnicationMessage.dll -------------------------------------------------------------------------------- /CommunicationMessage/obj/Release/CommnicationMessage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/obj/Release/CommnicationMessage.pdb -------------------------------------------------------------------------------- /GPSTrackingMonitor/Resources/ArcView_switch_selection.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/Resources/ArcView_switch_selection.bmp -------------------------------------------------------------------------------- /GPSTrackingMonitor/TrackingReplay/TrackingDataStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/TrackingReplay/TrackingDataStructure.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/bin/Debug/GPSTrackingMonitor.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/bin/Debug/GPSTrackingMonitor.vshost.exe -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/TempPE/CrystalReport1.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/TempPE/CrystalReport1.cs.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/AxInterop.MapObjects2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/AxInterop.MapObjects2.dll -------------------------------------------------------------------------------- /MapConfigure/LayerProperties/FieldsStructTableTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/LayerProperties/FieldsStructTableTemplate.cs -------------------------------------------------------------------------------- /MapConfigure/bin/Debug/AxInterop.SampleLegendControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Debug/AxInterop.SampleLegendControl.dll -------------------------------------------------------------------------------- /MapConfigure/bin/Release/WeifenLuo.WinFormsUI.Docking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/bin/Release/WeifenLuo.WinFormsUI.Docking.dll -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/AxInterop.SampleLegendControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/AxInterop.SampleLegendControl.dll -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/MapConfigure.frmIdentify.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/MapConfigure.frmIdentify.resources -------------------------------------------------------------------------------- /MapConfigure/obj/Release/MapConfigure.frmLegend.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Release/MapConfigure.frmLegend.resources -------------------------------------------------------------------------------- /GPSGatewaySimulator/GeneryRandomPoints/GeneryRandomPoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/GeneryRandomPoints/GeneryRandomPoints.cs -------------------------------------------------------------------------------- /GPSGatewaySimulator/Resources/database_small_with_arrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Resources/database_small_with_arrow.bmp -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Debug/GPSGatewaySimulator.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Debug/GPSGatewaySimulator.vshost.exe -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /GPSTrackingMonitor/RealtimeMonite/TrackingDataTableStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/RealtimeMonite/TrackingDataTableStruct.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /GPSTrackingRecorder/Resources/database_connection_with_x.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/Resources/database_connection_with_x.bmp -------------------------------------------------------------------------------- /GPSTrackingRecorder/bin/Debug/GPSTrackingRecorder.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/bin/Debug/GPSTrackingRecorder.vshost.exe -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/MapConfigure.frmNavigation.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/MapConfigure.frmNavigation.resources -------------------------------------------------------------------------------- /CommunicationMessage/obj/Debug/Refactor/CommnicationMessage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/CommunicationMessage/obj/Debug/Refactor/CommnicationMessage.dll -------------------------------------------------------------------------------- /GPSGatewaySimulator/GeneryRandomPoints/LoadRandomPointToDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/GeneryRandomPoints/LoadRandomPointToDB.cs -------------------------------------------------------------------------------- /GPSGatewaySimulator/HistoryTrakings/TrackingDataTableStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/HistoryTrakings/TrackingDataTableStruct.cs -------------------------------------------------------------------------------- /GPSGatewaySimulator/Resources/database_small_with_sparkle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/Resources/database_small_with_sparkle.bmp -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Debug/WeifenLuo.WinFormsUI.Docking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Debug/WeifenLuo.WinFormsUI.Docking.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/bin/Debug/WeifenLuo.WinFormsUI.Docking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/bin/Debug/WeifenLuo.WinFormsUI.Docking.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /GPSTrackingRecorder/HistoryTrakings/TrackingDataTableStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/HistoryTrakings/TrackingDataTableStruct.cs -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/MapConfigure.frmAttributesData.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/MapConfigure.frmAttributesData.resources -------------------------------------------------------------------------------- /GPSGatewaySimulator/bin/Release/WeifenLuo.WinFormsUI.Docking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/bin/Release/WeifenLuo.WinFormsUI.Docking.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmMain.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmMap.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmMap.resources -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/MapConfigure.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/MapConfigure.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/MapConfigure.frmLayerProperties.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/MapConfigure.frmLayerProperties.resources -------------------------------------------------------------------------------- /MapProject/obj/Debug/MapProject.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapProject/obj/Debug/MapProject.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.frmMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.frmMain.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmAbout.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmAbout.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmLegend.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmLegend.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmStartup.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmStartup.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmAbout.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmAbout.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmMain.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmMap.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmMap.resources -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Debug/GPSTrackingRecorder.frmMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Debug/GPSTrackingRecorder.frmMain.resources -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/MapConfigure.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/MapConfigure.Properties.Resources.resources -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/MapConfigure.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/MapConfigure.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /MapConfigure/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /MapConfigure/obj/Release/MapConfigure.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Release/MapConfigure.Properties.Resources.resources -------------------------------------------------------------------------------- /MapConfigure/obj/Release/MapConfigure.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Release/MapConfigure.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /MapConfigure/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /GPSGatewaySimulator/GeneryRandomPoints/RandomPointsDataTableStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/GeneryRandomPoints/RandomPointsDataTableStruct.cs -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmConfigure.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmConfigure.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmIdentify.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmIdentify.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmStatistic.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmStatistic.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmLegend.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmLegend.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmStartup.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmStartup.resources -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Release/GPSTrackingRecorder.frmMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Release/GPSTrackingRecorder.frmMain.resources -------------------------------------------------------------------------------- /MapConfigure/obj/Release/MapConfigure.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/MapConfigure/obj/Release/MapConfigure.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmCarSearcher.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmCarSearcher.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmNavigation.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmNavigation.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/TempPE/HistoryPointsDataSet.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/TempPE/HistoryPointsDataSet.Designer.cs.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmConfigure.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmConfigure.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmIdentify.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmIdentify.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmNavigation.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmNavigation.resources -------------------------------------------------------------------------------- /GPSTrackingRecorder/Resources/database_connection_small_with_sparkle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/Resources/database_connection_small_with_sparkle.bmp -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.frmSendMessage.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.frmSendMessage.resources -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.frmSetLoadParas.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.frmSetLoadParas.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmAdvanceFilter.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmAdvanceFilter.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmCarDetailInfos.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmCarDetailInfos.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmTackingReplay.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmTackingReplay.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmCarSearcher.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmCarSearcher.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Debug/GPSTrackingRecorder.frmSocketConfig.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Debug/GPSTrackingRecorder.frmSocketConfig.resources -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.Properties.Resources.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmRealtimeCarInfos.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.frmRealtimeCarInfos.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmTackingReplay.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmTackingReplay.resources -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Release/GPSTrackingRecorder.frmSocketConfig.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Release/GPSTrackingRecorder.frmSocketConfig.resources -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.Properties.Resources.resources -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.Properties.Resources.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmRealtimeCarInfos.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.frmRealtimeCarInfos.resources -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Debug/GPSTrackingRecorder.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Debug/GPSTrackingRecorder.Properties.Resources.resources -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Debug/GPSTrackingRecorder.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Debug/GPSTrackingRecorder.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.frmLoadRandomLocation.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSGatewaySimulator/obj/Debug/GPSGatewaySimulator.frmLoadRandomLocation.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Release/GPSTrackingRecorder.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Release/GPSTrackingRecorder.Properties.Resources.resources -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/Release/GPSTrackingRecorder.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingRecorder/obj/Release/GPSTrackingRecorder.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /MapConfigure/MapConfigure.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | ProjectFiles 4 | 5 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.CustomControl.SymbolSelector.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Debug/GPSTrackingMonitor.CustomControl.SymbolSelector.resources -------------------------------------------------------------------------------- /GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.CustomControl.SymbolSelector.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uwitec/gvms/HEAD/GPSTrackingMonitor/obj/Release/GPSTrackingMonitor.CustomControl.SymbolSelector.resources -------------------------------------------------------------------------------- /GPSGatewaySimulator/GPSGatewaySimulator.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | ProjectFiles 4 | 5 | -------------------------------------------------------------------------------- /MapConfigure/BaseHandler/XMLManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapConfigure.BaseHandler 6 | { 7 | class XMLManager 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/BaseHandler/XMLManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.BaseHandler 6 | { 7 | class XMLManager 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /MapConfigure/BaseHandler/DatabaseManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapConfigure.BaseHandler 6 | { 7 | class DatabaseManager 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/BaseHandler/ShortestPath.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.BaseHandler 6 | { 7 | class ShortestPath 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/MapUtil/GDIHelper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.MapUtil 6 | { 7 | class GDIHelper 8 | { 9 | 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /MapConfigure/BaseHandler/ExceptionHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.BaseHandler 6 | { 7 | class ExceptionHandler 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/BaseHandler/ExceptionHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.BaseHandler 6 | { 7 | class ExceptionHandler 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/BaseHandler/ExceptionHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingRecorder.BaseHandler 6 | { 7 | class ExceptionHandler 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/BaseHandler/GPSTrackingReplay.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.BaseHandler 6 | { 7 | class GPSTrackingReplay 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /GPSTrackingRecorder/BaseHandler/ExceptionHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingRecorder.BaseHandler 6 | { 7 | class ExceptionHandler 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/BaseHandler/SocketCommunication.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSGatewaySimulator.BaseHandler 6 | { 7 | class SocketCommunication 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/BaseHandler/SocketCommunication.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.BaseHandler 6 | { 7 | class SocketCommunication 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/ProjectStruct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapConfigure.ProjectUtil 6 | { 7 | public class ProjectStruct 8 | { 9 | 10 | 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MapProject/IRenderStruct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapProject 6 | { 7 | public interface IRenderStruct 8 | { 9 | RenderType LayerRenderType { get;} 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/GlobeEvents.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor 6 | { 7 | class GlobeEvents 8 | { 9 | public delegate void testasd(object send, EventArgs e); 10 | 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/IRenderStruct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapConfigure.ProjectUtil 6 | { 7 | public interface IRenderStruct 8 | { 9 | RenderType LayerRenderType { get;} 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /MapConfigure/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GPSTrackingRecorder/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/GeneryRandomPoints/RandomStringType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSGatewaySimulator.RandomPoints 6 | { 7 | public enum RandomStringType 8 | { 9 | OnlyNumber, 10 | OnlyChar, 11 | NumberAndChar, 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MapProject/RenderStruct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapProject 6 | { 7 | [Serializable] 8 | public class RenderStruct 9 | { 10 | private RenderType _layerRenderType = RenderType.NoneRender; 11 | private object _render = null; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/Configures/DatabaseTypeEnum.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.Configures 6 | { 7 | enum DatabaseTypeEnum 8 | { 9 | Access = 0, 10 | SQLServer = 1, 11 | Oracle = 2, 12 | PostgreSQL = 3, 13 | Unknown = -1 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/RenderStruct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapConfigure.ProjectUtil 6 | { 7 | [Serializable] 8 | public class RenderStruct 9 | { 10 | private RenderType _layerRenderType = RenderType.NoneRender; 11 | private object _render = null; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MapProject/obj/MapProject.csproj.FileList.txt: -------------------------------------------------------------------------------- 1 | obj\Debug\ResolveAssemblyReference.cache 2 | obj\Debug\Interop.MapObjects2.dll 3 | obj\Debug\MapProject.csproj.ResolveComReference.cache 4 | bin\Debug\MapProject.dll 5 | bin\Debug\MapProject.pdb 6 | bin\Debug\AxInterop.MapObjects2.dll 7 | bin\Debug\Interop.MapObjects2.dll 8 | obj\Debug\MapProject.dll 9 | obj\Debug\MapProject.pdb 10 | -------------------------------------------------------------------------------- /MapConfigure/frmLicense.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace MapConfigure 10 | { 11 | public partial class frmLicense : Form 12 | { 13 | public frmLicense() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmReport.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace GPSTrackingMonitor 10 | { 11 | public partial class frmReport : Form 12 | { 13 | public frmReport() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/RenderType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapConfigure.ProjectUtil 6 | { 7 | public enum RenderType 8 | { 9 | NoneRender = -1, 10 | GroupRender = 0, 11 | ValueRender = 1, 12 | ClassBreakRender = 2, 13 | SingleRender = 3, 14 | ChartRender = 4, 15 | LabelRender = 5, 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /MapConfigure/frmToolPanel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace MapConfigure 10 | { 11 | public partial class frmToolPanel : Form 12 | { 13 | public frmToolPanel() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /MapProject/RenderType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapProject 6 | { 7 | [Serializable] 8 | public enum RenderType 9 | { 10 | NoneRender = -1, 11 | GroupRender = 0, 12 | ValueRender = 1, 13 | ClassBreakRender = 2, 14 | SingleRender = 3, 15 | ChartRender = 4, 16 | LabelRender = 5, 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/frmLicense.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace GPSGatewaySimulator 10 | { 11 | public partial class frmLicense : Form 12 | { 13 | public frmLicense() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmLicense.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace GPSTrackingMonitor 10 | { 11 | public partial class frmLicense : Form 12 | { 13 | public frmLicense() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmStartup.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace GPSTrackingMonitor 10 | { 11 | public partial class frmStartup : Form 12 | { 13 | public frmStartup() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /GPSTrackingRecorder/frmLicense.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace GPSTrackingRecorder 10 | { 11 | public partial class frmLicense : Form 12 | { 13 | public frmLicense() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /MapConfigure/frmDataDictionary.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace MapConfigure 10 | { 11 | public partial class frmDataDictionary : Form 12 | { 13 | public frmDataDictionary() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /MapConfigure/frmLayerDatatable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace MapConfigure 10 | { 11 | public partial class frmLayerDatatable : Form 12 | { 13 | public frmLayerDatatable() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmFeatureQuery.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace GPSTrackingMonitor 10 | { 11 | public partial class frmFeatureQuery : Form 12 | { 13 | public frmFeatureQuery() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmShortestPath.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace GPSTrackingMonitor 10 | { 11 | public partial class frmShortestPath : Form 12 | { 13 | public frmShortestPath() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/ILayerStruct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapConfigure.ProjectUtil 6 | { 7 | public interface ILayerStruct 8 | { 9 | string Name { get;set;} 10 | 11 | string FileName { get;set;} 12 | 13 | double MaxLevel { get;set;} 14 | 15 | double MinLevel { get;set;} 16 | 17 | short LayerType { get;set;} 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CommunicationMessage/obj/CommnicationMessage.csproj.FileList.txt: -------------------------------------------------------------------------------- 1 | obj\Debug\ResolveAssemblyReference.cache 2 | bin\Debug\CommnicationMessage.dll 3 | bin\Debug\CommnicationMessage.pdb 4 | obj\Debug\CommnicationMessage.dll 5 | obj\Debug\CommnicationMessage.pdb 6 | bin\Release\CommnicationMessage.dll 7 | bin\Release\CommnicationMessage.pdb 8 | obj\Release\ResolveAssemblyReference.cache 9 | obj\Release\CommnicationMessage.dll 10 | obj\Release\CommnicationMessage.pdb 11 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/Communications/MessagePool.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.Communications 6 | { 7 | public class MessagePool : System.Collections.Generic.Dictionary 8 | { 9 | public MessagePool CurrentCacheCopy() 10 | { 11 | return this.MemberwiseClone() as MessagePool; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /CommunicationMessage/obj/SocketCommnication.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\项目\SIOGR项目\GPSTracking\trunk\SocketCommnication\bin\Debug\SocketCommnication.dll 2 | D:\项目\SIOGR项目\GPSTracking\trunk\SocketCommnication\bin\Debug\SocketCommnication.pdb 3 | D:\项目\SIOGR项目\GPSTracking\trunk\SocketCommnication\obj\Debug\ResolveAssemblyReference.cache 4 | D:\项目\SIOGR项目\GPSTracking\trunk\SocketCommnication\obj\Debug\SocketCommnication.dll 5 | D:\项目\SIOGR项目\GPSTracking\trunk\SocketCommnication\obj\Debug\SocketCommnication.pdb 6 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/bin/Debug/GPSTrackingMonitor.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/bin/Debug/GPSTrackingMonitor.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /MapProject/ILayerStruct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapProject 6 | { 7 | public interface ILayerStruct 8 | { 9 | string DataSetName { get;set;} 10 | 11 | string AliasName { get;set;} 12 | 13 | string FileName { get;set;} 14 | 15 | double MaxLevel { get;set;} 16 | 17 | double MinLevel { get;set;} 18 | 19 | short LayerType { get;set;} 20 | 21 | bool Visible { get;set;} 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /GPSTrackingRecorder/HistoryTrakings/RandomStringType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingRecorder.RandomPoints 6 | { 7 | public enum RandomStringType 8 | { 9 | /// 10 | /// 11 | /// 12 | OnlyNumber, 13 | 14 | /// 15 | /// 16 | /// 17 | OnlyChar, 18 | 19 | /// 20 | /// 21 | /// 22 | NumberAndChar, 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /MapProject/Converter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapProject 6 | { 7 | class Converter 8 | { 9 | public static System.Drawing.Color ConvertIntegerToSystemColor(int color) 10 | { 11 | return System.Drawing.ColorTranslator.FromWin32(color); 12 | } 13 | 14 | public static int ConvertSystemtoIntegerColor(System.Drawing.Color color) 15 | { 16 | return System.Drawing.ColorTranslator.ToWin32(color); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/Utilities/CarSearchType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.Utilities 6 | { 7 | public enum CarSearchType 8 | { 9 | /// 10 | /// 11 | /// 12 | SearchedByCarByName = 1, 13 | 14 | /// 15 | /// 16 | /// 17 | SearchedByCarLocation = 2, 18 | 19 | /// 20 | /// 21 | /// 22 | SearchedByCustomFilter = 3 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /MapConfigure/Utilities/Converter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapConfigure.Utilities 6 | { 7 | class Converter 8 | { 9 | public static System.Drawing.Color ConvertIntegerToSystemColor(int color) 10 | { 11 | return System.Drawing.ColorTranslator.FromWin32(color); 12 | } 13 | 14 | public static int ConvertSystemtoIntegerColor(System.Drawing.Color color) 15 | { 16 | return System.Drawing.ColorTranslator.ToWin32(color); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/RandomPoints/RandomStringType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSGatewaySimulator.RandomPoints 6 | { 7 | /// 8 | /// 9 | /// 10 | public enum RandomStringType 11 | { 12 | /// 13 | /// 14 | /// 15 | OnlyNumber, 16 | 17 | /// 18 | /// 19 | /// 20 | OnlyChar, 21 | 22 | /// 23 | /// 24 | /// 25 | NumberAndChar, 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 简述 2 | 3 | 我们所做的是一个基于Mapobjects的开源的GPS车俩监控系统。系统分为四个部分,GPS网关模拟系统、车辆轨迹记录系统、地图配置系统和车辆监控系统。 4 | 1、GPS车辆监控系统 5 | 6 | 主要用来对车辆进行实时位置跟踪,在电子地图上显示其所在位置。但其长远目的是为以后可以在该系统平台上构建复杂的业务系统而构建一个基础平台,因此在保证系统有较高的使用效率和友好的交互性能之外,还具有很好的可扩充性。 7 | 2、地图配置系统: 8 | 主要用来配置地图数据,创建地图的工程文件。 9 | 3、GPS网关模拟系统: 10 | 模拟车辆位置信息发送,为车辆监控系统和轨迹记录系统提供实时的数据源,他们之间通过UDP网络协议来进行通信。 11 | 4、轨迹记录系统 12 | 实时保存车辆数据到数据库中,以便在车辆监控系统需要对特定车辆进行轨迹回放时为其提供车辆历史轨迹数据。 13 | 特点 1、使用优化的数据缓存技术保证了系统的实时性和高效率 2、使用了基于时间差值的轨迹回放算法,能根据历史轨迹数据精确模拟车辆行驶速度 3、采用两种监控模式(web模式和桌面模式),保证数据源同步,为用户提供选择空间 14 | 15 | ps:本项目采用visual studio .net 2005 和 ESRI mapobjects 2.4平台开发。 16 | 17 | 由于时间问题,还没能提供系统的部署文档,如有兴趣写文档者,可与我联系。 MSN:64848341@qq.com,请注明"gvms document" 18 | -------------------------------------------------------------------------------- /MapConfigure/GlobeVariables.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using MapProject; 5 | 6 | namespace MapConfigure 7 | { 8 | class GlobeVariables 9 | { 10 | //public static List LayersInformationSet = new List(); 11 | 12 | public static MapUtil.MapOperationType CurrentOperation = new MapConfigure.MapUtil.MapOperationType(); 13 | 14 | public static AxMapObjects2.AxMap MapControl = null; 15 | 16 | public static AxSampleLegendControl.Axlegend MapLegend = null; 17 | 18 | public static MapStruct MapInfosCollection = new MapStruct(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/GPSTrackingMonitor.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | ProjectFiles 4 | E:\Program Files\Common Files\Business Objects\2.7\Managed\ 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 0 16 | zh-CN 17 | true 18 | 19 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/obj/GPSGatewaySimulator.csproj.FileList.txt: -------------------------------------------------------------------------------- 1 | obj\Debug\GPSGatewaySimulator.exe 2 | obj\Debug\GPSGatewaySimulator.pdb 3 | obj\Debug\ResolveAssemblyReference.cache 4 | obj\Debug\Interop.MapObjects2.dll 5 | obj\Debug\GPSGatewaySimulator.csproj.ResolveComReference.cache 6 | obj\Debug\GPSGatewaySimulator.frmLoadRandomLocation.resources 7 | obj\Debug\GPSGatewaySimulator.frmMain.resources 8 | obj\Debug\GPSGatewaySimulator.frmSendMessage.resources 9 | obj\Debug\GPSGatewaySimulator.frmSetLoadParas.resources 10 | obj\Debug\GPSGatewaySimulator.Properties.Resources.resources 11 | obj\Debug\GPSGatewaySimulator.csproj.GenerateResource.Cache 12 | bin\Debug\GPSGatewaySimulator.exe 13 | bin\Debug\GPSGatewaySimulator.pdb 14 | bin\Debug\CommnicationMessage.dll 15 | bin\Debug\CommnicationMessage.pdb 16 | bin\Debug\Interop.MapObjects2.dll 17 | -------------------------------------------------------------------------------- /CommunicationMessage/obj/CommnicationMessage.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\项目\SIOGR项目\GPSTracking\trunk\CommunicationMessage\bin\Debug\SocketCommnication.dll 2 | D:\项目\SIOGR项目\GPSTracking\trunk\CommunicationMessage\bin\Debug\SocketCommnication.pdb 3 | D:\项目\SIOGR项目\GPSTracking\trunk\CommunicationMessage\obj\Debug\ResolveAssemblyReference.cache 4 | D:\项目\SIOGR项目\GPSTracking\trunk\CommunicationMessage\obj\Debug\SocketCommnication.dll 5 | D:\项目\SIOGR项目\GPSTracking\trunk\CommunicationMessage\obj\Debug\SocketCommnication.pdb 6 | Q:\项目\SIOGR项目\GVMS\trunk\CommunicationMessage\bin\Debug\CommnicationMessage.dll 7 | Q:\项目\SIOGR项目\GVMS\trunk\CommunicationMessage\bin\Debug\CommnicationMessage.pdb 8 | Q:\项目\SIOGR项目\GVMS\trunk\CommunicationMessage\obj\Debug\ResolveAssemblyReference.cache 9 | Q:\项目\SIOGR项目\GVMS\trunk\CommunicationMessage\obj\Debug\CommnicationMessage.dll 10 | Q:\项目\SIOGR项目\GVMS\trunk\CommunicationMessage\obj\Debug\CommnicationMessage.pdb 11 | -------------------------------------------------------------------------------- /GPSTrackingRecorder/Communications/MessageArguments.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingRecorder.Communications 6 | { 7 | class MessageArguments:EventArgs 8 | { 9 | #region fields 10 | 11 | private CommnicationMessage.GPSTrackingMessage _message; 12 | 13 | #endregion 14 | 15 | #region constructors 16 | 17 | public MessageArguments() 18 | { 19 | } 20 | 21 | public MessageArguments(CommnicationMessage.GPSTrackingMessage message) 22 | { 23 | this._message = message; 24 | } 25 | 26 | #endregion 27 | 28 | #region properties 29 | 30 | public CommnicationMessage.GPSTrackingMessage Message 31 | { 32 | get { return this._message; } 33 | set { this._message = value; } 34 | } 35 | 36 | #endregion 37 | 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/Communications/MessageArguments.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.Communications 6 | { 7 | public class MessageArguments:EventArgs 8 | { 9 | #region fields 10 | 11 | private MessagePool _messageCollection = new MessagePool(); 12 | 13 | #endregion 14 | 15 | #region constructor 16 | 17 | public MessageArguments() 18 | { 19 | } 20 | 21 | public MessageArguments(MessagePool messageCollection) 22 | { 23 | this._messageCollection = messageCollection; 24 | } 25 | 26 | #endregion 27 | 28 | #region properties 29 | 30 | public MessagePool MessageCollection 31 | { 32 | get { return this._messageCollection; } 33 | set { this._messageCollection = value; } 34 | } 35 | 36 | #endregion 37 | 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmCarDetailInfos.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace GPSTrackingMonitor 10 | { 11 | public partial class frmCarDetailInfos : Form 12 | { 13 | public frmCarDetailInfos() 14 | { 15 | InitializeComponent(); 16 | } 17 | 18 | public frmCarDetailInfos(string carNumber, string phone, string coordinateX, string coordinateY, string direction) 19 | { 20 | InitializeComponent(); 21 | 22 | this.txtCarNumber.Text = carNumber; 23 | this.txtPhone.Text = phone; 24 | this.txtCoordinate.Text = coordinateX + "," + coordinateY; 25 | this.txtDirection.Text = direction; 26 | } 27 | 28 | private void btnOK_Click(object sender, EventArgs e) 29 | { 30 | this.Close(); 31 | } 32 | } 33 | } -------------------------------------------------------------------------------- /MapConfigure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过下列属性集 6 | // 控制。更改这些属性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("MapConfigure")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("SIOGR")] 12 | [assembly: AssemblyProduct("MapConfigure")] 13 | [assembly: AssemblyCopyright("版权所有 (C) SIOGR 2007")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 属性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("39485f20-3c31-43c8-a0cb-d77de8745def")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订号 31 | // 32 | [assembly: AssemblyVersion("1.0.0.0")] 33 | [assembly: AssemblyFileVersion("1.0.0.0")] 34 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过下列属性集 6 | // 控制。更改这些属性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("GPSGatewaySimulator")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("SIOGR")] 12 | [assembly: AssemblyProduct("GPSGatewaySimulator")] 13 | [assembly: AssemblyCopyright("版权所有 (C) SIOGR 2007")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 属性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("7cd815d3-7743-46d8-865f-0baea5dbb20d")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订号 31 | // 32 | [assembly: AssemblyVersion("1.0.0.0")] 33 | [assembly: AssemblyFileVersion("1.0.0.0")] 34 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过下列属性集 6 | // 控制。更改这些属性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("GPSTrackingMonitor")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("SIOGR")] 12 | [assembly: AssemblyProduct("GPSTrackingMonitor")] 13 | [assembly: AssemblyCopyright("版权所有 (C) SIOGR 2007")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 属性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("b6f2b66e-df6a-4a5e-bb68-fcde07e0ba33")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订号 31 | // 32 | [assembly: AssemblyVersion("1.0.0.0")] 33 | [assembly: AssemblyFileVersion("1.0.0.0")] 34 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | <?xml version="1.0" encoding="utf-16"?> 7 | <SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> 8 | <ConnectionString>Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\HistoryPoints.mdb</ConnectionString> 9 | <ProviderName>System.Data.OleDb</ProviderName> 10 | </SerializableConnectionString> 11 | Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\HistoryPoints.mdb 12 | 13 | 14 | -------------------------------------------------------------------------------- /GPSTrackingRecorder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过下列属性集 6 | // 控制。更改这些属性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("GPSTrackingRecorder")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("SIOGR")] 12 | [assembly: AssemblyProduct("GPSTrackingRecorder")] 13 | [assembly: AssemblyCopyright("版权所有 (C) SIOGR 2008")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 属性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("56a6ae81-4e04-437e-a108-92da0b1314c3")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订号 31 | // 32 | [assembly: AssemblyVersion("1.0.0.0")] 33 | [assembly: AssemblyFileVersion("1.0.0.0")] 34 | -------------------------------------------------------------------------------- /MapConfigure/CustomControl/StyleListControl.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace MapConfigure.CustomControl 2 | { 3 | partial class StyleListControl 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region 组件设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | components = new System.ComponentModel.Container(); 32 | } 33 | 34 | #endregion 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/CustomControl/LegendControl.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace GPSTrackingMonitor.CustomControl 2 | { 3 | partial class LegendControl 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region 组件设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | components = new System.ComponentModel.Container(); 32 | } 33 | 34 | #endregion 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/GPSTrackingRecorder.csproj.FileList.txt: -------------------------------------------------------------------------------- 1 | bin\Debug\GPSTrackingRecorder.exe 2 | bin\Debug\GPSTrackingRecorder.pdb 3 | obj\Debug\ResolveAssemblyReference.cache 4 | obj\Debug\GPSTrackingRecorder.frmMain.resources 5 | obj\Debug\GPSTrackingRecorder.frmSocketConfig.resources 6 | obj\Debug\GPSTrackingRecorder.Properties.Resources.resources 7 | obj\Debug\GPSTrackingRecorder.csproj.GenerateResource.Cache 8 | obj\Debug\GPSTrackingRecorder.exe 9 | obj\Debug\GPSTrackingRecorder.pdb 10 | bin\Debug\CommnicationMessage.dll 11 | bin\Debug\CommnicationMessage.pdb 12 | bin\Release\GPSTrackingRecorder.exe 13 | bin\Release\GPSTrackingRecorder.pdb 14 | bin\Release\CommnicationMessage.dll 15 | bin\Release\CommnicationMessage.pdb 16 | obj\Release\ResolveAssemblyReference.cache 17 | obj\Release\GPSTrackingRecorder.frmMain.resources 18 | obj\Release\GPSTrackingRecorder.frmSocketConfig.resources 19 | obj\Release\GPSTrackingRecorder.Properties.Resources.resources 20 | obj\Release\GPSTrackingRecorder.csproj.GenerateResource.Cache 21 | obj\Release\GPSTrackingRecorder.exe 22 | obj\Release\GPSTrackingRecorder.pdb 23 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/Configures/CommunicationConfigureStruct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.Configures 6 | { 7 | [Serializable] 8 | class CommunicationConfigureStruct 9 | { 10 | #region fields 11 | 12 | private string _messageServerAddress = string.Empty; 13 | private int _localMessageLiseningPort = 820527; 14 | 15 | #endregion 16 | 17 | #region properties 18 | 19 | /// 20 | /// 21 | /// 22 | public string MessageServerAddress 23 | { 24 | get { return this._messageServerAddress; } 25 | set { this._messageServerAddress = value; } 26 | } 27 | 28 | /// 29 | /// 30 | /// 31 | public int LocalMessageLiseningPort 32 | { 33 | get { return this._localMessageLiseningPort; } 34 | set { this._localMessageLiseningPort = value; } 35 | } 36 | 37 | #endregion 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /MapProject/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过下列属性集 6 | // 控制。更改这些属性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("MapProject")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("siogr")] 12 | [assembly: AssemblyProduct("MapProject")] 13 | [assembly: AssemblyCopyright("版权所有 (C) siogr 2008")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 属性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("f1a70841-be4d-42c0-bfd1-61a8db6c4669")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“修订号”和“内部版本号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /GPSTrackingRecorder/obj/GPSTrackingRecorder.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\项目\SIOGR项目\GPSTracking\trunk\GPSTrackingRecorder\bin\Debug\GPSTrackingRecorder.exe 2 | D:\项目\SIOGR项目\GPSTracking\trunk\GPSTrackingRecorder\bin\Debug\GPSTrackingRecorder.pdb 3 | D:\项目\SIOGR项目\GPSTracking\trunk\GPSTrackingRecorder\obj\Debug\ResolveAssemblyReference.cache 4 | D:\项目\SIOGR项目\GPSTracking\trunk\GPSTrackingRecorder\obj\Debug\GPSTrackingRecorder.Properties.Resources.resources 5 | D:\项目\SIOGR项目\GPSTracking\trunk\GPSTrackingRecorder\obj\Debug\GPSTrackingRecorder.csproj.GenerateResource.Cache 6 | D:\项目\SIOGR项目\GPSTracking\trunk\GPSTrackingRecorder\obj\Debug\GPSTrackingRecorder.exe 7 | D:\项目\SIOGR项目\GPSTracking\trunk\GPSTrackingRecorder\obj\Debug\GPSTrackingRecorder.pdb 8 | D:\项目\SIOGR项目\GPSTracking\trunk\GPSTrackingRecorder\obj\Debug\GPSTrackingRecorder.frmMain.resources 9 | D:\项目\SIOGR项目\GPSTracking\trunk\GPSTrackingRecorder\obj\Debug\GPSTrackingRecorder.frmSocketConfig.resources 10 | D:\项目\SIOGR项目\GPSTracking\trunk\GPSTrackingRecorder\bin\Debug\SocketCommnication.dll 11 | D:\项目\SIOGR项目\GPSTracking\trunk\GPSTrackingRecorder\bin\Debug\SocketCommnication.pdb 12 | -------------------------------------------------------------------------------- /MapConfigure/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行库版本:2.0.50727.42 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace MapConfigure.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /CommunicationMessage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过下列属性集 6 | // 控制。更改这些属性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("SocketCommnication")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("SIOGR")] 12 | [assembly: AssemblyProduct("SocketCommnication")] 13 | [assembly: AssemblyCopyright("版权所有 (C) SIOGR 2008")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 属性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("2ddf3544-f18a-4bbf-84c6-87f0e736c732")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“修订号”和“内部版本号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行库版本:2.0.50727.1433 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace GPSGatewaySimulator.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /GPSTrackingRecorder/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行库版本:2.0.50727.1433 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace GPSTrackingRecorder.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /MapConfigure/MapUtil/FeatureInformations.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using MapProject; 5 | 6 | namespace MapConfigure.MapUtil 7 | { 8 | public class FeatureInformations 9 | { 10 | #region fields 11 | 12 | private Dictionary _fieldsAndValuesCollection; 13 | private ILayerStruct _layerInfos; 14 | private object _geometry; 15 | 16 | #endregion 17 | 18 | #region public methods 19 | 20 | public Dictionary FieldsAndValuesCollection 21 | { 22 | get { return this._fieldsAndValuesCollection; } 23 | set { this._fieldsAndValuesCollection = value; } 24 | } 25 | 26 | public object Geometry 27 | { 28 | get { return this._geometry; } 29 | set { this._geometry = value; } 30 | } 31 | 32 | public ILayerStruct CurrentLayerInfos 33 | { 34 | get { return this._layerInfos; } 35 | set { this._layerInfos = value; } 36 | } 37 | 38 | #endregion 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/MapUtil/FeatureInformations.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using MapProject; 5 | 6 | namespace GPSTrackingMonitor.MapUtil 7 | { 8 | public class FeatureInformations 9 | { 10 | #region fields 11 | 12 | private Dictionary _fieldsAndValuesCollection; 13 | private ILayerStruct _layerInfos; 14 | private object _geometry; 15 | 16 | #endregion 17 | 18 | #region public methods 19 | 20 | public Dictionary FieldsAndValuesCollection 21 | { 22 | get { return this._fieldsAndValuesCollection; } 23 | set { this._fieldsAndValuesCollection = value; } 24 | } 25 | 26 | public object Geometry 27 | { 28 | get { return this._geometry; } 29 | set { this._geometry = value; } 30 | } 31 | 32 | public ILayerStruct CurrentLayerInfos 33 | { 34 | get { return this._layerInfos; } 35 | set { this._layerInfos = value; } 36 | } 37 | 38 | #endregion 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /MapConfigure/frmToolPanel.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace MapConfigure 2 | { 3 | partial class frmToolPanel 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows 窗体设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 33 | this.Text = "frmToolPanel"; 34 | } 35 | 36 | #endregion 37 | } 38 | } -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmReport.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace GPSTrackingMonitor 2 | { 3 | partial class frmReport 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows 窗体设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 33 | this.Text = "frmReport"; 34 | } 35 | 36 | #endregion 37 | } 38 | } -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmToolPanel.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace GPSTrackingMonitor 2 | { 3 | partial class frmToolPanel 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows 窗体设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 33 | this.Text = "frmToolPanel"; 34 | } 35 | 36 | #endregion 37 | } 38 | } -------------------------------------------------------------------------------- /MapConfigure/frmDataDictionary.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace MapConfigure 2 | { 3 | partial class frmDataDictionary 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows 窗体设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 33 | this.Text = "frmDataDictionary"; 34 | } 35 | 36 | #endregion 37 | } 38 | } -------------------------------------------------------------------------------- /MapConfigure/frmLayerDatatable.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace MapConfigure 2 | { 3 | partial class frmLayerDatatable 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows 窗体设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 33 | this.Text = "frmLayerDatatable"; 34 | } 35 | 36 | #endregion 37 | } 38 | } -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmFeatureQuery.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace GPSTrackingMonitor 2 | { 3 | partial class frmFeatureQuery 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows 窗体设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 33 | this.Text = "frmFeatureQuery"; 34 | } 35 | 36 | #endregion 37 | } 38 | } -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmShortestPath.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace GPSTrackingMonitor 2 | { 3 | partial class frmShortestPath 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows 窗体设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 33 | this.Text = "frmShortestPath"; 34 | } 35 | 36 | #endregion 37 | } 38 | } -------------------------------------------------------------------------------- /GPSTrackingMonitor/Utilities/DataFilter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Data; 5 | 6 | namespace GPSTrackingMonitor.Utilities 7 | { 8 | class DataFilter 9 | { 10 | public static List GetDistinctRowsFromDataTable(DataTable dataSource,string fieldName) 11 | { 12 | if (dataSource == null || string.IsNullOrEmpty(fieldName)) throw new ArgumentNullException(); 13 | if (!dataSource.Columns.Contains(fieldName)) throw new ArgumentException("fieldName"); 14 | 15 | DataRow[] drTemps = dataSource.Select("", fieldName + " desc"); 16 | object oPreValue = new object(); 17 | object oCurValue = oPreValue; 18 | int iIndex = 0; 19 | 20 | List oResult = new List(); 21 | 22 | foreach (DataRow dr in drTemps) 23 | { 24 | oCurValue = dr[fieldName]; 25 | 26 | if (oPreValue != oCurValue || iIndex == 0) 27 | { 28 | oResult.Add(oCurValue); 29 | oPreValue = oCurValue; 30 | } 31 | 32 | iIndex++; 33 | } 34 | 35 | return oResult; 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/Communications/MessageArguments.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | 6 | namespace GPSGatewaySimulator.Communications 7 | { 8 | class MessageArguments:EventArgs 9 | { 10 | #region fields 11 | 12 | /// 13 | /// 14 | /// 15 | private CommnicationMessage.GPSTrackingMessage _message; 16 | 17 | #endregion 18 | 19 | #region constructors 20 | 21 | /// 22 | /// 23 | /// 24 | public MessageArguments() 25 | { 26 | } 27 | 28 | /// 29 | /// 30 | /// 31 | /// 32 | public MessageArguments(CommnicationMessage.GPSTrackingMessage message) 33 | { 34 | this._message = message; 35 | } 36 | 37 | #endregion 38 | 39 | #region properties 40 | 41 | /// 42 | /// 43 | /// 44 | public CommnicationMessage.GPSTrackingMessage Message 45 | { 46 | get { return this._message; } 47 | set { this._message = value; } 48 | } 49 | 50 | #endregion 51 | 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/MapUtil/ILayerInformation.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using MapObjects2; 5 | 6 | namespace GPSTrackingMonitor.MapUtil 7 | { 8 | /// 9 | /// 10 | /// 11 | class ILayerInformation 12 | { 13 | /// 14 | /// 15 | /// 16 | string LayerName; 17 | 18 | /// 19 | /// 20 | /// 21 | string DataSource; 22 | 23 | /// 24 | /// 25 | /// 26 | double MinVisibleScale; 27 | 28 | /// 29 | /// 30 | /// 31 | double MaxVisibleScale; 32 | 33 | /// 34 | /// 35 | /// 36 | MOLayerType LayerType; 37 | 38 | /// 39 | /// 40 | /// 41 | ShapeTypeConstants ShapeType; 42 | } 43 | 44 | /// 45 | /// 46 | /// 47 | public enum MOLayerType 48 | { 49 | /// 50 | /// 51 | /// 52 | ImageLayer = 1, 53 | 54 | /// 55 | /// 56 | /// 57 | VectorLayer = 2 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/Utilities/GDIPlus.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Drawing; 5 | using System.Drawing.Drawing2D; 6 | 7 | namespace GPSTrackingMonitor.Utilities 8 | { 9 | class GDIPlus 10 | { 11 | public static void DrawSymbolOnControl(System.Windows.Forms.Control canvalControl, 12 | Font symbolFont,int symbolIndex, float symbolSize, float symbolRotation,Color symbolColor) 13 | { 14 | GraphicsPath oPath = new GraphicsPath(); 15 | string sSymbol = new String((char)symbolIndex,1); 16 | 17 | symbolSize = symbolSize < 1 ? 1 : symbolSize; 18 | 19 | oPath.AddString(sSymbol, symbolFont.FontFamily, (int)FontStyle.Regular, symbolSize, new PointF(0f, 0f), StringFormat.GenericDefault); 20 | 21 | Image oImage = new Bitmap(canvalControl.Width, canvalControl.Height); 22 | Graphics g = Graphics.FromImage(oImage); 23 | 24 | g.SmoothingMode = SmoothingMode.HighQuality; 25 | g.RotateTransform(symbolRotation); 26 | g.FillPath(new SolidBrush(symbolColor), oPath); 27 | 28 | canvalControl.BackgroundImage = oImage; 29 | canvalControl.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/Configures/SystemConfigureStrcut.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.Configures 6 | { 7 | [Serializable] 8 | class SystemConfigureStrcut 9 | { 10 | #region fields 11 | 12 | private string _projectFilePath = string.Empty; 13 | private int _maxOfMessageCache = 100; 14 | private int _intervalCarUpdate = 1000; 15 | 16 | #endregion 17 | 18 | #region properties 19 | 20 | /// 21 | /// 22 | /// 23 | public string ProjectFilePath 24 | { 25 | get { return this._projectFilePath; } 26 | set { this._projectFilePath = value; } 27 | } 28 | 29 | /// 30 | /// 31 | /// 32 | public int MaxOfMessageCache 33 | { 34 | get { return this._maxOfMessageCache; } 35 | set { this._maxOfMessageCache = value; } 36 | } 37 | 38 | /// 39 | /// 40 | /// 41 | public int IntervalCarUpdate 42 | { 43 | get { return this._intervalCarUpdate; } 44 | set { this._intervalCarUpdate = value; } 45 | } 46 | 47 | #endregion 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /MapConfigure/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace MapConfigure 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// 应用程序的主入口点。 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | 18 | AppDomain.CurrentDomain.UnhandledException +=new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); 19 | Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException); 20 | Application.Run(new frmMain()); 21 | } 22 | 23 | static void HandleException(Exception e) 24 | { 25 | frmSenderExceptionInfos oFrmSendErException = new frmSenderExceptionInfos(e); 26 | oFrmSendErException.Show(); 27 | } 28 | 29 | static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) 30 | { 31 | HandleException(e.ExceptionObject as Exception); 32 | } 33 | 34 | static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e) 35 | { 36 | HandleException(e.Exception); 37 | } 38 | } 39 | } -------------------------------------------------------------------------------- /GPSGatewaySimulator/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace GPSGatewaySimulator 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// 应用程序的主入口点。 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | 18 | AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); 19 | Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException); 20 | Application.Run(new frmMain()); 21 | } 22 | 23 | static void HandleException(Exception e) 24 | { 25 | frmSenderExceptionInfos oFrmSendErException = new frmSenderExceptionInfos(e); 26 | oFrmSendErException.Show(); 27 | } 28 | 29 | static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) 30 | { 31 | HandleException(e.ExceptionObject as Exception); 32 | } 33 | 34 | static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e) 35 | { 36 | HandleException(e.Exception); 37 | } 38 | } 39 | } -------------------------------------------------------------------------------- /GPSTrackingRecorder/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace GPSTrackingRecorder 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// 应用程序的主入口点。 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | 18 | AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); 19 | Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException); 20 | Application.Run(new frmMain()); 21 | } 22 | 23 | static void HandleException(Exception e) 24 | { 25 | frmSenderExceptionInfos oFrmSendErException = new frmSenderExceptionInfos(e); 26 | oFrmSendErException.Show(); 27 | } 28 | 29 | static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) 30 | { 31 | HandleException(e.ExceptionObject as Exception); 32 | } 33 | 34 | static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e) 35 | { 36 | HandleException(e.Exception); 37 | } 38 | } 39 | } -------------------------------------------------------------------------------- /GPSGatewaySimulator/BaseHandler/MapManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using MapObjects2; 5 | 6 | namespace GPSGatewaySimulator.BaseHandler 7 | { 8 | class MapManager 9 | { 10 | #region public methods 11 | 12 | /// 13 | /// 14 | /// 15 | /// 16 | /// 17 | public MapLayer GetLayer(string layerPath) 18 | { 19 | if (!System.IO.File.Exists(layerPath)) 20 | return null; 21 | 22 | GeoDataset oGeoDataset = null; 23 | DataConnection oConn = new DataConnectionClass(); 24 | MapLayer oLayer = null; 25 | 26 | oConn.Database = System.IO.Path.GetDirectoryName(layerPath); 27 | 28 | if (oConn.Connect()) 29 | { 30 | oGeoDataset = oConn.FindGeoDataset(System.IO.Path.GetFileName(layerPath).Replace(System.IO.Path.GetExtension(layerPath), string.Empty)); 31 | 32 | if (!oGeoDataset.Equals(null)) 33 | { 34 | oLayer = new MapLayerClass(); 35 | oLayer.GeoDataset = oGeoDataset; 36 | oConn.Disconnect(); 37 | } 38 | } 39 | 40 | return oLayer; 41 | } 42 | 43 | #endregion 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/GeneryRandomPoints/GetRandomCarLocations.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Data; 5 | 6 | namespace GPSGatewaySimulator.RandomPoints 7 | { 8 | class GetRandomCarLocations 9 | { 10 | public Queue GetCarLocationsQueue() 11 | { 12 | DataTable dtTemp = new DataTable(); 13 | 14 | System.Data.OleDb.OleDbConnection oConn = BaseHandler.DatabaseManager.GetOleDbConnection(GlobeVariables.RandomPointsDBPath); 15 | 16 | int iRowsCount = BaseHandler.DatabaseManager.GetColumnMaximmValue(oConn, "carlocation", "geoid"); 17 | Random oRandomGeoId = new Random(); 18 | string sGeoId = oRandomGeoId.Next(0, iRowsCount).ToString(); 19 | 20 | string sQueryString = string.Format("select * from carlocation where geoid={0}", sGeoId); 21 | dtTemp = BaseHandler.DatabaseManager.GetData(oConn, sQueryString); 22 | 23 | Queue oQueueResult = new Queue(); 24 | foreach (DataRow dr in dtTemp.Rows) 25 | { 26 | oQueueResult.Enqueue(HistoryTrakings.DataStructConverter.DataRowToCommInfos(dr)); 27 | } 28 | 29 | return oQueueResult; 30 | } 31 | 32 | 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace GPSTrackingMonitor 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// 应用程序的主入口点。 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | 18 | AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); 19 | Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException); 20 | Application.Run(new frmMain()); 21 | } 22 | 23 | static void HandleException(Exception e) 24 | { 25 | frmSenderExceptionInfos oFrmSendErException = new frmSenderExceptionInfos(e); 26 | oFrmSendErException.Show(); 27 | } 28 | 29 | static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) 30 | { 31 | HandleException(e.ExceptionObject as Exception); 32 | } 33 | 34 | static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e) 35 | { 36 | HandleException(e.Exception); 37 | } 38 | } 39 | } -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmStartup.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace GPSTrackingMonitor 2 | { 3 | partial class frmStartup 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows 窗体设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // frmStartup 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.ClientSize = new System.Drawing.Size(417, 405); 38 | this.Name = "frmStartup"; 39 | this.Text = "frmStartup"; 40 | this.ResumeLayout(false); 41 | 42 | } 43 | 44 | #endregion 45 | } 46 | } -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/MapStruct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapConfigure.ProjectUtil 6 | { 7 | public class MapStruct 8 | { 9 | private List _layers = new List(); 10 | private object _coordinateSystem = null; 11 | private ViewExtent _bbox = new ViewExtent(); 12 | private string _geoDataSetPath = string.Empty; 13 | 14 | public List Layers 15 | { 16 | get { return this._layers; } 17 | set { this._layers = value; } 18 | } 19 | 20 | public object CoordinateSystem 21 | { 22 | get { return this._coordinateSystem; } 23 | set { this._coordinateSystem = value; } 24 | } 25 | 26 | public ViewExtent BBox 27 | { 28 | get { return this._bbox; } 29 | set { this._bbox = value; } 30 | } 31 | 32 | public string GeoDataSetPath 33 | { 34 | get { return this._geoDataSetPath; } 35 | set { this._geoDataSetPath = value; } 36 | } 37 | 38 | public ILayerStruct FindLayer(string layerName) 39 | { 40 | return this.Layers.Find 41 | (new Predicate 42 | (delegate (ILayerStruct layerStrcut) 43 | { return layerStrcut.Name == layerName; } 44 | )); 45 | } 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /MapProject/MapStruct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapProject 6 | { 7 | [Serializable] 8 | public class MapStruct 9 | { 10 | private List _layers = new List(); 11 | private object _coordinateSystem = null; 12 | private ViewExtent _bbox = new ViewExtent(); 13 | private string _geoDataSetPath = string.Empty; 14 | 15 | public List Layers 16 | { 17 | get { return this._layers; } 18 | set { this._layers = value; } 19 | } 20 | 21 | public object CoordinateSystem 22 | { 23 | get { return this._coordinateSystem; } 24 | set { this._coordinateSystem = value; } 25 | } 26 | 27 | public ViewExtent BBox 28 | { 29 | get { return this._bbox; } 30 | set { this._bbox = value; } 31 | } 32 | 33 | public string GeoDataSetPath 34 | { 35 | get { return this._geoDataSetPath; } 36 | set { this._geoDataSetPath = value; } 37 | } 38 | 39 | public ILayerStruct FindLayer(string layerName) 40 | { 41 | return this.Layers.Find 42 | (new Predicate 43 | (delegate (ILayerStruct layerStrcut) 44 | { return layerStrcut.AliasName == layerName; } 45 | )); 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /MapProject/ViewExtent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapProject 6 | { 7 | [Serializable] 8 | public class ViewExtent 9 | { 10 | #region fields 11 | 12 | private double _minX = 0; 13 | private double _minY = 0; 14 | private double _maxX = 0; 15 | private double _maxY = 0; 16 | private double _width = 0; 17 | private double _height = 0; 18 | 19 | #endregion 20 | 21 | #region properties 22 | 23 | public double MinX 24 | { 25 | get { return this._minX; } 26 | set { this._minX = value; } 27 | } 28 | 29 | public double MinY 30 | { 31 | get { return this._minY; } 32 | set { this._minY = value; } 33 | } 34 | 35 | public double MaxX 36 | { 37 | get { return this._maxX; } 38 | set { this._maxX = value; } 39 | } 40 | 41 | public double MaxY 42 | { 43 | get { return this._maxY; } 44 | set { this._maxY = value; } 45 | } 46 | 47 | public double Width 48 | { 49 | get { return this._width; } 50 | set { this._width = value; } 51 | } 52 | 53 | public double Height 54 | { 55 | get { return this._height; } 56 | set { this._height = value; } 57 | } 58 | 59 | #endregion 60 | 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /MapConfigure/MapUtil/MapOperationType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapConfigure.MapUtil 6 | { 7 | /// 8 | /// 9 | /// 10 | public enum MapOperationType 11 | { 12 | /// 13 | /// 14 | /// 15 | None = 0, 16 | 17 | /// 18 | /// 19 | /// 20 | ZoomIn = 1, 21 | 22 | /// 23 | /// 24 | /// 25 | ZoomOut = 2, 26 | 27 | /// 28 | /// 29 | /// 30 | Pan = 3, 31 | 32 | /// 33 | /// 34 | /// 35 | FullExtent = 4, 36 | 37 | /// 38 | /// 39 | /// 40 | Preview = 5, 41 | 42 | /// 43 | /// 44 | /// 45 | NextView = 6, 46 | 47 | /// 48 | /// 49 | /// 50 | Identify = 7, 51 | 52 | /// 53 | /// 54 | /// 55 | Measure = 8, 56 | 57 | /// 58 | /// 59 | /// 60 | Refresh = 9, 61 | 62 | /// 63 | /// 64 | /// 65 | Clear = 10, 66 | 67 | /// 68 | /// 69 | /// 70 | FetchPoint = 11 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/MapUtil/MapOperationType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingMonitor.MapUtil 6 | { 7 | /// 8 | /// 9 | /// 10 | public enum MapOperationType 11 | { 12 | /// 13 | /// 14 | /// 15 | None = 0, 16 | 17 | /// 18 | /// 19 | /// 20 | ZoomIn = 1, 21 | 22 | /// 23 | /// 24 | /// 25 | ZoomOut = 2, 26 | 27 | /// 28 | /// 29 | /// 30 | Pan = 3, 31 | 32 | /// 33 | /// 34 | /// 35 | FullExtent = 4, 36 | 37 | /// 38 | /// 39 | /// 40 | Preview = 5, 41 | 42 | /// 43 | /// 44 | /// 45 | NextView = 6, 46 | 47 | /// 48 | /// 49 | /// 50 | Identify = 7, 51 | 52 | /// 53 | /// 54 | /// 55 | Measure = 8, 56 | 57 | /// 58 | /// 59 | /// 60 | Refresh = 9, 61 | 62 | /// 63 | /// 64 | /// 65 | Clear = 10, 66 | 67 | /// 68 | /// 69 | /// 70 | FetchPoint = 11 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/ViewExtent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapConfigure.ProjectUtil 6 | { 7 | [Serializable] 8 | public class ViewExtent 9 | { 10 | #region fields 11 | 12 | private double _minX = 0; 13 | private double _minY = 0; 14 | private double _maxX = 0; 15 | private double _maxY = 0; 16 | private double _width = 0; 17 | private double _height = 0; 18 | 19 | #endregion 20 | 21 | #region properties 22 | 23 | public double MinX 24 | { 25 | get { return this._minX; } 26 | set { this._minX = value; } 27 | } 28 | 29 | public double MinY 30 | { 31 | get { return this._minY; } 32 | set { this._minY = value; } 33 | } 34 | 35 | public double MaxX 36 | { 37 | get { return this._maxX; } 38 | set { this._maxX = value; } 39 | } 40 | 41 | public double MaxY 42 | { 43 | get { return this._maxY; } 44 | set { this._maxY = value; } 45 | } 46 | 47 | public double Width 48 | { 49 | get { return this._width; } 50 | set { this._width = value; } 51 | } 52 | 53 | public double Height 54 | { 55 | get { return this._height; } 56 | set { this._height = value; } 57 | } 58 | 59 | #endregion 60 | 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/GeneryRandomPoints/GeneryRandomString.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSGatewaySimulator.RandomPoints 6 | { 7 | public class GeneryRandomString 8 | { 9 | public static string GetRandomString(RandomStringType randomType, int stringLength,int seed) 10 | { 11 | string[] sCaptions = new string[] { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" }; 12 | string[] sNumbers = new string[] { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" }; 13 | 14 | Random rnd = new Random(seed); 15 | string sResult = string.Empty; 16 | 17 | for (int i = 0; i < stringLength; i++) 18 | { 19 | if (randomType == RandomStringType.OnlyNumber) 20 | { 21 | sResult += sNumbers[rnd.Next(0, 9)]; 22 | } 23 | else if (randomType == RandomStringType.OnlyChar) 24 | { 25 | sResult += sCaptions[rnd.Next(0, 25)]; 26 | } 27 | else if (randomType == RandomStringType.NumberAndChar) 28 | { 29 | sResult += sNumbers[rnd.Next(0, 9)] + sCaptions[rnd.Next(0, 25)]; 30 | sResult = sResult.Remove(rnd.Next(0, sResult.Length - 1), 1); 31 | } 32 | } 33 | 34 | return sResult; 35 | } 36 | 37 | 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/frmStatistic.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace GPSTrackingMonitor 2 | { 3 | partial class frmStatistic 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows 窗体设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // frmStatistic 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.ClientSize = new System.Drawing.Size(601, 404); 38 | this.Name = "frmStatistic"; 39 | this.Text = "frmStatistic"; 40 | this.Load += new System.EventHandler(this.frmStatistic_Load); 41 | this.ResumeLayout(false); 42 | 43 | } 44 | 45 | #endregion 46 | 47 | 48 | 49 | } 50 | } -------------------------------------------------------------------------------- /GPSTrackingRecorder/HistoryTrakings/GeneryRandomString.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSTrackingRecorder.RandomPoints 6 | { 7 | public class GeneryRandomString 8 | { 9 | #region public methods 10 | 11 | public static string GetRandomString(RandomStringType randomType, int stringLength,int seed) 12 | { 13 | string[] sCaptions = new string[] { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" }; 14 | string[] sNumbers = new string[] { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" }; 15 | 16 | Random rnd = new Random(seed); 17 | string sResult = string.Empty; 18 | 19 | for (int i = 0; i < stringLength; i++) 20 | { 21 | if (randomType == RandomStringType.OnlyNumber) 22 | { 23 | sResult += sNumbers[rnd.Next(0, 9)]; 24 | } 25 | else if (randomType == RandomStringType.OnlyChar) 26 | { 27 | sResult += sCaptions[rnd.Next(0, 25)]; 28 | } 29 | else if (randomType == RandomStringType.NumberAndChar) 30 | { 31 | sResult += sNumbers[rnd.Next(0, 9)] + sCaptions[rnd.Next(0, 25)]; 32 | sResult = sResult.Remove(rnd.Next(0, sResult.Length - 1), 1); 33 | } 34 | } 35 | 36 | return sResult; 37 | } 38 | 39 | #endregion 40 | 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /MapConfigure/frmTruetypeSymbolSelection.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | using System.Drawing.Text; 9 | 10 | namespace MapConfigure 11 | { 12 | public partial class frmTruetypeSymbolSelection : Form 13 | { 14 | public frmTruetypeSymbolSelection() 15 | { 16 | InitializeComponent(); 17 | 18 | InstalledFontCollection oInstalledFonts = new InstalledFontCollection(); 19 | foreach (FontFamily item in oInstalledFonts.Families) 20 | { 21 | if(item.Name.Contains("ESRI")) 22 | this.comboBox1.Items.Add(item.Name); 23 | } 24 | 25 | this.comboBox1.SelectedIndexChanged += new EventHandler(comboBox1_SelectedIndexChanged); 26 | this.comboBox1.SelectedIndex = 0; 27 | 28 | } 29 | 30 | void comboBox1_SelectedIndexChanged(object sender, EventArgs e) 31 | { 32 | this.symbolSelectorControl1.ListSymbols(new Font(comboBox1.SelectedItem.ToString(), 12f, FontStyle.Regular, GraphicsUnit.Pixel)); 33 | } 34 | 35 | private void symbolSelectorControl1_SymbolSelected(object sender, SymbolSelector.SymbolSelectedEventArgs e) 36 | { 37 | Font oFont = new Font(e.CurrentFont.Name, 50, FontStyle.Bold, GraphicsUnit.Pixel); 38 | this.label1.Font = oFont; 39 | 40 | this.label1.Text = new String((char)e.SymbolIndex,1); 41 | this.label1.ForeColor = Color.Blue; 42 | } 43 | } 44 | } -------------------------------------------------------------------------------- /GPSTrackingMonitor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行库版本:2.0.50727.1433 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace GPSTrackingMonitor.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | 26 | [global::System.Configuration.ApplicationScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.ConnectionString)] 29 | [global::System.Configuration.DefaultSettingValueAttribute("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\\HistoryPoints.mdb")] 30 | public string HistoryPointsConnectionString { 31 | get { 32 | return ((string)(this["HistoryPointsConnectionString"])); 33 | } 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /MapConfigure/MapUtil/LayerInformations.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using MapObjects2; 5 | 6 | namespace MapConfigure.MapUtil 7 | { 8 | public class LayerInformations 9 | { 10 | #region fields 11 | 12 | private string _layerName; 13 | private LayerTypeConstants _moLayerType; 14 | private ShapeTypeConstants _moShapeType; 15 | private object _moLayer; 16 | 17 | #endregion 18 | 19 | #region constructor 20 | 21 | public LayerInformations() 22 | { 23 | } 24 | 25 | public LayerInformations(object moLayer, string layerName, LayerTypeConstants moLayerType, ShapeTypeConstants moShapeType) 26 | { 27 | this._moLayer = moLayer; 28 | this._layerName = layerName; 29 | this._moLayerType = moLayerType; 30 | this._moShapeType = moShapeType; 31 | } 32 | 33 | #endregion 34 | 35 | #region properties 36 | 37 | public object MoLayer 38 | { 39 | get { return this._moLayer; } 40 | set { this._moLayer = value; } 41 | } 42 | 43 | public string LayerName 44 | { 45 | get { return this._layerName; } 46 | set { this._layerName = value; } 47 | } 48 | 49 | public LayerTypeConstants MoLayerType 50 | { 51 | get { return this._moLayerType; } 52 | set { this._moLayerType = value; } 53 | } 54 | 55 | public ShapeTypeConstants MoShapeType 56 | { 57 | get { return this._moShapeType; } 58 | set { this._moShapeType = value; } 59 | } 60 | 61 | #endregion 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /GPSTrackingMonitor/MapUtil/LayerInformations.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using MapObjects2; 5 | 6 | namespace GPSTrackingMonitor.MapUtil 7 | { 8 | public class LayerInformations 9 | { 10 | #region fields 11 | 12 | private string _layerName; 13 | private LayerTypeConstants _moLayerType; 14 | private ShapeTypeConstants _moShapeType; 15 | private object _moLayer; 16 | 17 | #endregion 18 | 19 | #region constructor 20 | 21 | public LayerInformations() 22 | { 23 | } 24 | 25 | public LayerInformations(object moLayer, string layerName, LayerTypeConstants moLayerType, ShapeTypeConstants moShapeType) 26 | { 27 | this._moLayer = moLayer; 28 | this._layerName = layerName; 29 | this._moLayerType = moLayerType; 30 | this._moShapeType = moShapeType; 31 | } 32 | 33 | #endregion 34 | 35 | #region properties 36 | 37 | public object MoLayer 38 | { 39 | get { return this._moLayer; } 40 | set { this._moLayer = value; } 41 | } 42 | 43 | public string LayerName 44 | { 45 | get { return this._layerName; } 46 | set { this._layerName = value; } 47 | } 48 | 49 | public LayerTypeConstants MoLayerType 50 | { 51 | get { return this._moLayerType; } 52 | set { this._moLayerType = value; } 53 | } 54 | 55 | public ShapeTypeConstants MoShapeType 56 | { 57 | get { return this._moShapeType; } 58 | set { this._moShapeType = value; } 59 | } 60 | 61 | #endregion 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/RandomPoints/GetRandomCarLocations.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Data; 5 | 6 | namespace GPSGatewaySimulator.RandomPoints 7 | { 8 | class GetRandomCarLocations 9 | { 10 | #region public methods 11 | 12 | /// 13 | /// 14 | /// 15 | /// 16 | public Queue GetCarLocationsQueue() 17 | { 18 | DataTable dtTemp = new DataTable(); 19 | 20 | System.Data.OleDb.OleDbConnection oConn = BaseHandler.DatabaseManager.GetOleDbConnection(GlobeVariables.RandomPointsDBPath); 21 | 22 | //int iMaxValue = BaseHandler.DatabaseManager.GetColumnMaximmValue(oConn, "carlocation", "OrderIndex"); 23 | Random oRandomIndex = new Random(); 24 | // string sOrderIndex = oRandomIndex.Next(0, iMaxValue).ToString(); 25 | 26 | //string sQueryString = string.Format("select * from carlocation where orderindex={0}", sOrderIndex); 27 | string sQueryString = string.Format("select * from carlocation where carnumber like '%{0}%'", GeneryRandomString.GetRandomString(RandomStringType.NumberAndChar,1,oRandomIndex.Next(0,10000))); 28 | dtTemp = BaseHandler.DatabaseManager.GetData(oConn, sQueryString); 29 | 30 | Queue oQueueResult = new Queue(); 31 | foreach (DataRow dr in dtTemp.Rows) 32 | { 33 | oQueueResult.Enqueue(HistoryTrakings.DataStructConverter.DataRowToCommInfos(dr)); 34 | } 35 | 36 | return oQueueResult; 37 | } 38 | 39 | #endregion 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /MapConfigure/ProjectUtil/TextSymbolStruct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapConfigure.ProjectUtil 6 | { 7 | public class TextSymbolStruct 8 | { 9 | private System.Drawing.Color _textColor = System.Drawing.Color.Black; 10 | private bool _fitted = false; 11 | private stdole.StdFont _textFont = new stdole.StdFontClass(); 12 | private double _height = 0; 13 | private short _horizontalAlignment = 0; 14 | private short _verticalAlignment = 0; 15 | private double _rotation = 0; 16 | 17 | public System.Drawing.Color TextColor 18 | { 19 | get { return this._textColor; } 20 | set { this._textColor = value; } 21 | } 22 | 23 | public bool Fitted 24 | { 25 | get { return this._fitted; } 26 | set { this._fitted = value; } 27 | } 28 | 29 | public stdole.StdFont TextFont 30 | { 31 | get { return this._textFont; } 32 | set { this._textFont = value; } 33 | } 34 | 35 | public double Height 36 | { 37 | get { return this._height; } 38 | set { this._height = value; } 39 | } 40 | 41 | public short HorizontalAlignment 42 | { 43 | get { return this._horizontalAlignment; } 44 | set { this._horizontalAlignment = value; } 45 | } 46 | 47 | public short VerticalAlignment 48 | { 49 | get { return this._verticalAlignment; } 50 | set { this._verticalAlignment = value; } 51 | } 52 | 53 | public double Rotation 54 | { 55 | get { return this._rotation; } 56 | set { this._rotation = value; } 57 | } 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /MapConfigure/obj/MapConfigure.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\项目\SIOGR项目\GPSTracking\MapConfigure\bin\Debug\MapConfigure.exe 2 | D:\项目\SIOGR项目\GPSTracking\MapConfigure\bin\Debug\MapConfigure.pdb 3 | D:\项目\SIOGR项目\GPSTracking\MapConfigure\obj\Debug\ResolveAssemblyReference.cache 4 | D:\项目\SIOGR项目\GPSTracking\MapConfigure\obj\Debug\MapConfigure.Properties.Resources.resources 5 | D:\项目\SIOGR项目\GPSTracking\MapConfigure\obj\Debug\MapConfigure.csproj.GenerateResource.Cache 6 | D:\项目\SIOGR项目\GPSTracking\MapConfigure\obj\Debug\MapConfigure.exe 7 | D:\项目\SIOGR项目\GPSTracking\MapConfigure\obj\Debug\MapConfigure.pdb 8 | D:\项目\SIOGR项目\GPSTracking\MapConfigure\obj\Debug\MapConfigure.frmMain.resources 9 | D:\项目\SIOGR项目\GPSTracking\MapConfigure\obj\Debug\MapConfigure.frmMap.resources 10 | D:\项目\SIOGR项目\GPSTracking\MapConfigure\obj\Debug\MapConfigure.frmLegend.resources 11 | D:\项目\SIOGR项目\GPSTracking\MapConfigure\bin\Debug\WeifenLuo.WinFormsUI.Docking.dll 12 | D:\项目\SIOGR项目\GPSTracking\trunk\MapConfigure\bin\Debug\MapConfigure.exe 13 | D:\项目\SIOGR项目\GPSTracking\trunk\MapConfigure\bin\Debug\MapConfigure.pdb 14 | D:\项目\SIOGR项目\GPSTracking\trunk\MapConfigure\obj\Debug\ResolveAssemblyReference.cache 15 | D:\项目\SIOGR项目\GPSTracking\trunk\MapConfigure\obj\Debug\MapConfigure.frmLegend.resources 16 | D:\项目\SIOGR项目\GPSTracking\trunk\MapConfigure\obj\Debug\MapConfigure.frmMain.resources 17 | D:\项目\SIOGR项目\GPSTracking\trunk\MapConfigure\obj\Debug\MapConfigure.frmMap.resources 18 | D:\项目\SIOGR项目\GPSTracking\trunk\MapConfigure\obj\Debug\MapConfigure.Properties.Resources.resources 19 | D:\项目\SIOGR项目\GPSTracking\trunk\MapConfigure\obj\Debug\MapConfigure.csproj.GenerateResource.Cache 20 | D:\项目\SIOGR项目\GPSTracking\trunk\MapConfigure\obj\Debug\MapConfigure.exe 21 | D:\项目\SIOGR项目\GPSTracking\trunk\MapConfigure\obj\Debug\MapConfigure.pdb 22 | D:\项目\SIOGR项目\GPSTracking\trunk\MapConfigure\bin\Debug\WeifenLuo.WinFormsUI.Docking.dll 23 | -------------------------------------------------------------------------------- /GPSGatewaySimulator/RandomPoints/GeneryRandomString.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace GPSGatewaySimulator.RandomPoints 6 | { 7 | public class GeneryRandomString 8 | { 9 | #region public methods 10 | 11 | /// 12 | /// 13 | /// 14 | /// 15 | /// 16 | /// 17 | /// 18 | public static string GetRandomString(RandomStringType randomType, int stringLength,int seed) 19 | { 20 | string[] sCaptions = new string[] { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" }; 21 | string[] sNumbers = new string[] { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" }; 22 | 23 | Random rnd = new Random(seed); 24 | string sResult = string.Empty; 25 | 26 | for (int i = 0; i < stringLength; i++) 27 | { 28 | if (randomType == RandomStringType.OnlyNumber) 29 | { 30 | sResult += sNumbers[rnd.Next(0, 9)]; 31 | } 32 | else if (randomType == RandomStringType.OnlyChar) 33 | { 34 | sResult += sCaptions[rnd.Next(0, 25)]; 35 | } 36 | else if (randomType == RandomStringType.NumberAndChar) 37 | { 38 | sResult += sNumbers[rnd.Next(0, 9)] + sCaptions[rnd.Next(0, 25)]; 39 | sResult = sResult.Remove(rnd.Next(0, sResult.Length - 1), 1); 40 | } 41 | } 42 | 43 | return sResult; 44 | } 45 | 46 | #endregion 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /MapProject/TextSymbolStruct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace MapProject 6 | { 7 | [Serializable] 8 | public class TextSymbolStruct 9 | { 10 | private System.Drawing.Color _textColor = System.Drawing.Color.Black; 11 | private bool _fitted = false; 12 | private System.Drawing.Font _textFont = new System.Drawing.Font("Arial", 12f); 13 | private string _fontName = "Arial"; 14 | private double _height = 0; 15 | private short _horizontalAlignment = 0; 16 | private short _verticalAlignment = 0; 17 | private double _rotation = 0; 18 | 19 | public System.Drawing.Color TextColor 20 | { 21 | get { return this._textColor; } 22 | set { this._textColor = value; } 23 | } 24 | 25 | public bool Fitted 26 | { 27 | get { return this._fitted; } 28 | set { this._fitted = value; } 29 | } 30 | 31 | public System.Drawing.Font TextFont 32 | { 33 | get { return this._textFont; } 34 | set { this._textFont = value; } 35 | } 36 | 37 | public double Height 38 | { 39 | get { return this._height; } 40 | set { this._height = value; } 41 | } 42 | 43 | public short HorizontalAlignment 44 | { 45 | get { return this._horizontalAlignment; } 46 | set { this._horizontalAlignment = value; } 47 | } 48 | 49 | public short VerticalAlignment 50 | { 51 | get { return this._verticalAlignment; } 52 | set { this._verticalAlignment = value; } 53 | } 54 | 55 | public double Rotation 56 | { 57 | get { return this._rotation; } 58 | set { this._rotation = value; } 59 | } 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /GPSTrackingRecorder/frmSocketConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | 9 | namespace GPSTrackingRecorder 10 | { 11 | public partial class frmSocketConfig : Form 12 | { 13 | #region fields 14 | 15 | private string _serverIP; 16 | private string _liseningPort; 17 | private string _queueMax; 18 | 19 | #endregion 20 | 21 | #region properties 22 | 23 | public string ServerIP 24 | { 25 | get { return this._serverIP; } 26 | set { this._serverIP = value; } 27 | } 28 | 29 | public string LiseningPort 30 | { 31 | get { return this._liseningPort; } 32 | set { this._liseningPort = value; } 33 | } 34 | 35 | public string QueueMax 36 | { 37 | get { return this._queueMax; } 38 | set { this._queueMax = value; } 39 | } 40 | 41 | #endregion 42 | 43 | #region constructors 44 | 45 | public frmSocketConfig() 46 | { 47 | InitializeComponent(); 48 | } 49 | 50 | #endregion 51 | 52 | #region events 53 | 54 | private void btnOK_Click(object sender, EventArgs e) 55 | { 56 | this._liseningPort = this.txtLiseningPort.Text; 57 | this._serverIP = this.txtServerIP.Text; 58 | this._queueMax = this.txtQueueMax.Text; 59 | 60 | this.DialogResult = DialogResult.OK; 61 | } 62 | 63 | private void frmSocketConfig_Load(object sender, EventArgs e) 64 | { 65 | this.txtLiseningPort.Text = GlobeVariables.DefaultLiseningPort.ToString(); 66 | this.txtServerIP.Text = GlobeVariables.DefaultServerIP; 67 | this.txtQueueMax.Text = GlobeVariables.DefaultQueueMax.ToString(); 68 | } 69 | 70 | #endregion 71 | } 72 | } --------------------------------------------------------------------------------