├── 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