├── .gitattributes ├── .gitignore ├── LightGIS_1.0.exe ├── LightGIS_1.0.sln ├── LightGIS_1.0 ├── Application │ ├── ChildFrm │ │ ├── frmAddField.Designer.cs │ │ ├── frmAddField.cs │ │ ├── frmAddField.resx │ │ ├── frmCreateLayer.Designer.cs │ │ ├── frmCreateLayer.cs │ │ ├── frmCreateLayer.resx │ │ ├── frmSearch.Designer.cs │ │ ├── frmSearch.cs │ │ └── frmSearch.resx │ ├── Program.cs │ ├── frmMain.Designer.cs │ ├── frmMain.cs │ └── frmMain.resx ├── LightGIS_1.0.csproj ├── MapControl.Designer.cs ├── MapControl.cs ├── MapControl.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Cross.ico │ ├── DataAdd.ico │ ├── EditingEditTool.ico │ ├── GenericDocument32.png │ ├── GenericProperties_B_32.png │ ├── IdentifyTool32.png │ ├── LayerBasemapNew32.png │ ├── LayerGenericGroupLayerOff32.png │ ├── LayerShadow32.png │ ├── LayerZoomTo32.png │ ├── Layout32.png │ ├── MapWithStarBlue32.png │ ├── PanTool32.png │ ├── PanUp.ico │ ├── ProjectOrganize32.png │ ├── RasterImageAnalysisClip32.png │ ├── RepresentationLassoSelectTool32.png │ ├── RepresentationPropertyOverrideA32.png │ ├── RepresentationSelectTool32.png │ ├── RouteAddBarrier.ico │ ├── RouteAddStop.ico │ ├── SelectionClearSelected32.png │ ├── SelectionClearSelection_B_32.png │ ├── SelectionPanToSelected32.png │ ├── SelectionSelectAll32.png │ ├── SelectionSelectTool.ico │ ├── SelectionSelectTool32.png │ ├── SelectionZoomToSelected32.png │ ├── TableDeleteHighlighted32.png │ ├── TrackingDataAdd32.png │ ├── VersionChange32.png │ ├── ZoomFixedZoomIn32.png │ ├── ZoomFixedZoomOut32.png │ ├── ZoomIn.ico │ ├── ZoomInTool32.png │ ├── ZoomOut.ico │ ├── ZoomOutTool32.png │ ├── edit-save_20x20.png │ ├── favicon.ico │ ├── graphics.ico │ ├── left.png │ └── right.png ├── Src │ ├── DataIO │ │ └── DataIO.cs │ ├── GeoLayer │ │ ├── GeoIndex.cs │ │ ├── GeoRenderer │ │ │ ├── ClassBreakRenderer.cs │ │ │ ├── GeoSymbol │ │ │ │ ├── ColorTranslator.cs │ │ │ │ ├── LineSymbol.cs │ │ │ │ ├── PointSymbol.cs │ │ │ │ ├── PolygonSymbol.cs │ │ │ │ ├── Symbol.cs │ │ │ │ └── TextSymbol.cs │ │ │ ├── Renderer.cs │ │ │ ├── SimpleRenderer.cs │ │ │ └── UniqueValueRenderer.cs │ │ ├── Layer.cs │ │ └── LayerTools.cs │ ├── GeoMap │ │ ├── Map.cs │ │ └── ProjectedCoordinateSystem.cs │ └── GeoObject │ │ ├── Geometry.cs │ │ ├── Geometry │ │ ├── MultiPolyLine.cs │ │ ├── MultiPolygon.cs │ │ ├── PointD.cs │ │ ├── PolyLine.cs │ │ └── Polygon.cs │ │ └── RectangleD.cs ├── TreeViewEnhanced.Designer.cs ├── TreeViewEnhanced.cs └── TreeViewEnhanced.resx ├── README.md ├── show.gif └── shp_data ├── nineLine.dbf ├── nineLine.prj ├── nineLine.sbn ├── nineLine.sbx ├── nineLine.shp ├── nineLine.shx ├── sheng.dbf ├── sheng.prj ├── sheng.sbn ├── sheng.sbx ├── sheng.shp ├── sheng.shx ├── shi.dbf ├── shi.prj ├── shi.sbn ├── shi.sbx ├── shi.shp ├── shi.shx ├── xian_new.dbf ├── xian_new.prj ├── xian_new.sbn ├── xian_new.sbx ├── xian_new.shp ├── xian_new.shp.xml ├── xian_new.shx └── 无标题.mxd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/.gitignore -------------------------------------------------------------------------------- /LightGIS_1.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0.exe -------------------------------------------------------------------------------- /LightGIS_1.0.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0.sln -------------------------------------------------------------------------------- /LightGIS_1.0/Application/ChildFrm/frmAddField.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/ChildFrm/frmAddField.Designer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Application/ChildFrm/frmAddField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/ChildFrm/frmAddField.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Application/ChildFrm/frmAddField.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/ChildFrm/frmAddField.resx -------------------------------------------------------------------------------- /LightGIS_1.0/Application/ChildFrm/frmCreateLayer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/ChildFrm/frmCreateLayer.Designer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Application/ChildFrm/frmCreateLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/ChildFrm/frmCreateLayer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Application/ChildFrm/frmCreateLayer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/ChildFrm/frmCreateLayer.resx -------------------------------------------------------------------------------- /LightGIS_1.0/Application/ChildFrm/frmSearch.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/ChildFrm/frmSearch.Designer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Application/ChildFrm/frmSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/ChildFrm/frmSearch.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Application/ChildFrm/frmSearch.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/ChildFrm/frmSearch.resx -------------------------------------------------------------------------------- /LightGIS_1.0/Application/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/Program.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Application/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/frmMain.Designer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Application/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/frmMain.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Application/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Application/frmMain.resx -------------------------------------------------------------------------------- /LightGIS_1.0/LightGIS_1.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/LightGIS_1.0.csproj -------------------------------------------------------------------------------- /LightGIS_1.0/MapControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/MapControl.Designer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/MapControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/MapControl.cs -------------------------------------------------------------------------------- /LightGIS_1.0/MapControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/MapControl.resx -------------------------------------------------------------------------------- /LightGIS_1.0/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Properties/Resources.resx -------------------------------------------------------------------------------- /LightGIS_1.0/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Properties/Settings.settings -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/Cross.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/Cross.ico -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/DataAdd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/DataAdd.ico -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/EditingEditTool.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/EditingEditTool.ico -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/GenericDocument32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/GenericDocument32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/GenericProperties_B_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/GenericProperties_B_32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/IdentifyTool32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/IdentifyTool32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/LayerBasemapNew32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/LayerBasemapNew32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/LayerGenericGroupLayerOff32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/LayerGenericGroupLayerOff32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/LayerShadow32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/LayerShadow32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/LayerZoomTo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/LayerZoomTo32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/Layout32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/Layout32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/MapWithStarBlue32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/MapWithStarBlue32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/PanTool32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/PanTool32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/PanUp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/PanUp.ico -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/ProjectOrganize32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/ProjectOrganize32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/RasterImageAnalysisClip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/RasterImageAnalysisClip32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/RepresentationLassoSelectTool32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/RepresentationLassoSelectTool32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/RepresentationPropertyOverrideA32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/RepresentationPropertyOverrideA32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/RepresentationSelectTool32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/RepresentationSelectTool32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/RouteAddBarrier.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/RouteAddBarrier.ico -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/RouteAddStop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/RouteAddStop.ico -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/SelectionClearSelected32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/SelectionClearSelected32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/SelectionClearSelection_B_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/SelectionClearSelection_B_32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/SelectionPanToSelected32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/SelectionPanToSelected32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/SelectionSelectAll32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/SelectionSelectAll32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/SelectionSelectTool.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/SelectionSelectTool.ico -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/SelectionSelectTool32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/SelectionSelectTool32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/SelectionZoomToSelected32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/SelectionZoomToSelected32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/TableDeleteHighlighted32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/TableDeleteHighlighted32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/TrackingDataAdd32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/TrackingDataAdd32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/VersionChange32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/VersionChange32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/ZoomFixedZoomIn32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/ZoomFixedZoomIn32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/ZoomFixedZoomOut32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/ZoomFixedZoomOut32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/ZoomIn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/ZoomIn.ico -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/ZoomInTool32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/ZoomInTool32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/ZoomOut.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/ZoomOut.ico -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/ZoomOutTool32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/ZoomOutTool32.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/edit-save_20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/edit-save_20x20.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/favicon.ico -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/graphics.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/graphics.ico -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/left.png -------------------------------------------------------------------------------- /LightGIS_1.0/Resources/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Resources/right.png -------------------------------------------------------------------------------- /LightGIS_1.0/Src/DataIO/DataIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/DataIO/DataIO.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/GeoIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/GeoIndex.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/GeoRenderer/ClassBreakRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/GeoRenderer/ClassBreakRenderer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/GeoRenderer/GeoSymbol/ColorTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/GeoRenderer/GeoSymbol/ColorTranslator.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/GeoRenderer/GeoSymbol/LineSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/GeoRenderer/GeoSymbol/LineSymbol.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/GeoRenderer/GeoSymbol/PointSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/GeoRenderer/GeoSymbol/PointSymbol.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/GeoRenderer/GeoSymbol/PolygonSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/GeoRenderer/GeoSymbol/PolygonSymbol.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/GeoRenderer/GeoSymbol/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/GeoRenderer/GeoSymbol/Symbol.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/GeoRenderer/GeoSymbol/TextSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/GeoRenderer/GeoSymbol/TextSymbol.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/GeoRenderer/Renderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/GeoRenderer/Renderer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/GeoRenderer/SimpleRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/GeoRenderer/SimpleRenderer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/GeoRenderer/UniqueValueRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/GeoRenderer/UniqueValueRenderer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/Layer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoLayer/LayerTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoLayer/LayerTools.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoMap/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoMap/Map.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoMap/ProjectedCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoMap/ProjectedCoordinateSystem.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoObject/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoObject/Geometry.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoObject/Geometry/MultiPolyLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoObject/Geometry/MultiPolyLine.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoObject/Geometry/MultiPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoObject/Geometry/MultiPolygon.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoObject/Geometry/PointD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoObject/Geometry/PointD.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoObject/Geometry/PolyLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoObject/Geometry/PolyLine.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoObject/Geometry/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoObject/Geometry/Polygon.cs -------------------------------------------------------------------------------- /LightGIS_1.0/Src/GeoObject/RectangleD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/Src/GeoObject/RectangleD.cs -------------------------------------------------------------------------------- /LightGIS_1.0/TreeViewEnhanced.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/TreeViewEnhanced.Designer.cs -------------------------------------------------------------------------------- /LightGIS_1.0/TreeViewEnhanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/TreeViewEnhanced.cs -------------------------------------------------------------------------------- /LightGIS_1.0/TreeViewEnhanced.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/LightGIS_1.0/TreeViewEnhanced.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/README.md -------------------------------------------------------------------------------- /show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/show.gif -------------------------------------------------------------------------------- /shp_data/nineLine.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/nineLine.dbf -------------------------------------------------------------------------------- /shp_data/nineLine.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/nineLine.prj -------------------------------------------------------------------------------- /shp_data/nineLine.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/nineLine.sbn -------------------------------------------------------------------------------- /shp_data/nineLine.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/nineLine.sbx -------------------------------------------------------------------------------- /shp_data/nineLine.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/nineLine.shp -------------------------------------------------------------------------------- /shp_data/nineLine.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/nineLine.shx -------------------------------------------------------------------------------- /shp_data/sheng.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/sheng.dbf -------------------------------------------------------------------------------- /shp_data/sheng.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/sheng.prj -------------------------------------------------------------------------------- /shp_data/sheng.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/sheng.sbn -------------------------------------------------------------------------------- /shp_data/sheng.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/sheng.sbx -------------------------------------------------------------------------------- /shp_data/sheng.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/sheng.shp -------------------------------------------------------------------------------- /shp_data/sheng.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/sheng.shx -------------------------------------------------------------------------------- /shp_data/shi.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/shi.dbf -------------------------------------------------------------------------------- /shp_data/shi.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/shi.prj -------------------------------------------------------------------------------- /shp_data/shi.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/shi.sbn -------------------------------------------------------------------------------- /shp_data/shi.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/shi.sbx -------------------------------------------------------------------------------- /shp_data/shi.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/shi.shp -------------------------------------------------------------------------------- /shp_data/shi.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/shi.shx -------------------------------------------------------------------------------- /shp_data/xian_new.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/xian_new.dbf -------------------------------------------------------------------------------- /shp_data/xian_new.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/xian_new.prj -------------------------------------------------------------------------------- /shp_data/xian_new.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/xian_new.sbn -------------------------------------------------------------------------------- /shp_data/xian_new.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/xian_new.sbx -------------------------------------------------------------------------------- /shp_data/xian_new.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/xian_new.shp -------------------------------------------------------------------------------- /shp_data/xian_new.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/xian_new.shp.xml -------------------------------------------------------------------------------- /shp_data/xian_new.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/xian_new.shx -------------------------------------------------------------------------------- /shp_data/无标题.mxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gooong/LightGIS/HEAD/shp_data/无标题.mxd --------------------------------------------------------------------------------