├── .gitignore ├── .vs ├── BearGIS │ └── v14 │ │ └── .suo └── BearGIS_Solution │ ├── v14 │ └── .suo │ └── v16 │ └── .suo ├── BearGIS ├── .gitattributes ├── BearGIS.csproj ├── BearGISInfo.cs ├── ClassDiagram1.cd ├── Converters │ ├── BuildJsonAttributes.cs │ ├── LongLatPt.cs │ ├── PtLongLat.cs │ └── ReProjectCoordinates.cs ├── Exporters │ ├── PointESRI.cs │ ├── PointJSON.cs │ ├── PointSHP.cs │ ├── PolyLineESRI.cs │ ├── PolygonESRI.cs │ ├── PolygonJSON.cs │ ├── PolygonSHP.cs │ ├── PolylineJSON.cs │ └── PolylineSHP.cs ├── Importers │ ├── ReadDotShp.cs │ ├── ReadESRIJson.cs │ ├── ReadGeoJson.cs │ └── ReadShp.cs ├── MyCategoryIcon.cs ├── PrjESPG.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Publishing │ ├── net48 │ │ ├── BearGIS.gha │ │ ├── DotSpatial.Controls.dll │ │ ├── DotSpatial.Data.Forms.dll │ │ ├── DotSpatial.Data.dll │ │ ├── DotSpatial.Extensions.dll │ │ ├── DotSpatial.Modeling.Forms.dll │ │ ├── DotSpatial.NTSExtension.dll │ │ ├── DotSpatial.Positioning.dll │ │ ├── DotSpatial.Projections.Forms.dll │ │ ├── DotSpatial.Projections.dll │ │ ├── DotSpatial.Serialization.dll │ │ ├── DotSpatial.Symbology.Forms.dll │ │ ├── DotSpatial.Symbology.dll │ │ ├── NetTopologySuite.Features.dll │ │ ├── NetTopologySuite.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── beargis-2.1.1-rh7_38-any.yak │ │ └── manifest.yml │ ├── net7 │ │ ├── BearGIS.gha │ │ ├── DotSpatial.Data.Forms.dll │ │ ├── DotSpatial.Data.dll │ │ ├── DotSpatial.Extensions.dll │ │ ├── DotSpatial.Modeling.Forms.dll │ │ ├── DotSpatial.NTSExtension.dll │ │ ├── DotSpatial.Positioning.dll │ │ ├── DotSpatial.Projections.Forms.dll │ │ ├── DotSpatial.Projections.dll │ │ ├── DotSpatial.Serialization.dll │ │ ├── DotSpatial.Symbology.Forms.dll │ │ ├── DotSpatial.Symbology.dll │ │ ├── Ed.Eto.dll │ │ ├── NetTopologySuite.Features.dll │ │ ├── NetTopologySuite.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── beargis-2.1.1-rh8_24-any.yak │ │ └── manifest.yml │ └── publish.md ├── Resources │ ├── BearGISIconSet-14.png │ ├── BearGISIconSet-15.png │ ├── BearGISIconSet-16.png │ ├── BearGISIconSet-17.png │ ├── BearGISIconSet-18.png │ ├── BearGISIconSet-19.png │ └── BearGISIconSet-20.png ├── app.config └── obj │ └── Release │ └── BearGIS.csproj.CoreCompileInputs.cache ├── BearGIS_Solution.sln ├── ClassDiagram.cd ├── IconClass.cs ├── LICENSE ├── Migration Guide_ BearGIS to .NET 7 and .NET Framework 4.8.pdf ├── README.md ├── Resources ├── BearGISIPolylineExportIcon.bmp └── BearGISIPolylineExportIcon.png ├── UpgradeLog.htm └── docs ├── BearGIS Example.zip ├── css └── style.css ├── examples.html ├── img ├── BearGISIcon.png ├── BearGISIcon_sml.png └── comp-icon │ ├── BearGISIconSet-14.png │ ├── BearGISIconSet-15.png │ ├── BearGISIconSet-16.png │ ├── BearGISIconSet-17.png │ ├── BearGISIconSet-18.png │ └── BearGISIconSet-20.png ├── index.html ├── js ├── archive │ ├── fileBrowstoUpbload.js │ └── loadJsonRequest.js ├── fileDragtoUpload.js ├── fileHandler.js ├── loadOpenLayersMap.js └── ol.js └── plugin-zip ├── BearGIS_v0.01.1.zip ├── BearGIS_v0.01.2.zip ├── BearGIS_v0.01.3.zip ├── BearGIS_v0.01.4.zip ├── BearGIS_v0.01.5.zip ├── BearGIS_v0.01.6.zip └── BearGIS_v2.1.1.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/BearGIS/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/.vs/BearGIS/v14/.suo -------------------------------------------------------------------------------- /.vs/BearGIS_Solution/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/.vs/BearGIS_Solution/v14/.suo -------------------------------------------------------------------------------- /.vs/BearGIS_Solution/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/.vs/BearGIS_Solution/v16/.suo -------------------------------------------------------------------------------- /BearGIS/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/.gitattributes -------------------------------------------------------------------------------- /BearGIS/BearGIS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/BearGIS.csproj -------------------------------------------------------------------------------- /BearGIS/BearGISInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/BearGISInfo.cs -------------------------------------------------------------------------------- /BearGIS/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BearGIS/Converters/BuildJsonAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Converters/BuildJsonAttributes.cs -------------------------------------------------------------------------------- /BearGIS/Converters/LongLatPt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Converters/LongLatPt.cs -------------------------------------------------------------------------------- /BearGIS/Converters/PtLongLat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Converters/PtLongLat.cs -------------------------------------------------------------------------------- /BearGIS/Converters/ReProjectCoordinates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Converters/ReProjectCoordinates.cs -------------------------------------------------------------------------------- /BearGIS/Exporters/PointESRI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Exporters/PointESRI.cs -------------------------------------------------------------------------------- /BearGIS/Exporters/PointJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Exporters/PointJSON.cs -------------------------------------------------------------------------------- /BearGIS/Exporters/PointSHP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Exporters/PointSHP.cs -------------------------------------------------------------------------------- /BearGIS/Exporters/PolyLineESRI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Exporters/PolyLineESRI.cs -------------------------------------------------------------------------------- /BearGIS/Exporters/PolygonESRI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Exporters/PolygonESRI.cs -------------------------------------------------------------------------------- /BearGIS/Exporters/PolygonJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Exporters/PolygonJSON.cs -------------------------------------------------------------------------------- /BearGIS/Exporters/PolygonSHP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Exporters/PolygonSHP.cs -------------------------------------------------------------------------------- /BearGIS/Exporters/PolylineJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Exporters/PolylineJSON.cs -------------------------------------------------------------------------------- /BearGIS/Exporters/PolylineSHP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Exporters/PolylineSHP.cs -------------------------------------------------------------------------------- /BearGIS/Importers/ReadDotShp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Importers/ReadDotShp.cs -------------------------------------------------------------------------------- /BearGIS/Importers/ReadESRIJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Importers/ReadESRIJson.cs -------------------------------------------------------------------------------- /BearGIS/Importers/ReadGeoJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Importers/ReadGeoJson.cs -------------------------------------------------------------------------------- /BearGIS/Importers/ReadShp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Importers/ReadShp.cs -------------------------------------------------------------------------------- /BearGIS/MyCategoryIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/MyCategoryIcon.cs -------------------------------------------------------------------------------- /BearGIS/PrjESPG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/PrjESPG.cs -------------------------------------------------------------------------------- /BearGIS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BearGIS/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /BearGIS/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Properties/Resources.resx -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/BearGIS.gha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/BearGIS.gha -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/DotSpatial.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/DotSpatial.Controls.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/DotSpatial.Data.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/DotSpatial.Data.Forms.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/DotSpatial.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/DotSpatial.Data.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/DotSpatial.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/DotSpatial.Extensions.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/DotSpatial.Modeling.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/DotSpatial.Modeling.Forms.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/DotSpatial.NTSExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/DotSpatial.NTSExtension.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/DotSpatial.Positioning.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/DotSpatial.Positioning.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/DotSpatial.Projections.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/DotSpatial.Projections.Forms.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/DotSpatial.Projections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/DotSpatial.Projections.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/DotSpatial.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/DotSpatial.Serialization.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/DotSpatial.Symbology.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/DotSpatial.Symbology.Forms.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/DotSpatial.Symbology.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/DotSpatial.Symbology.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/NetTopologySuite.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/NetTopologySuite.Features.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/NetTopologySuite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/NetTopologySuite.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/beargis-2.1.1-rh7_38-any.yak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/beargis-2.1.1-rh7_38-any.yak -------------------------------------------------------------------------------- /BearGIS/Publishing/net48/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net48/manifest.yml -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/BearGIS.gha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/BearGIS.gha -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/DotSpatial.Data.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/DotSpatial.Data.Forms.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/DotSpatial.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/DotSpatial.Data.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/DotSpatial.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/DotSpatial.Extensions.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/DotSpatial.Modeling.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/DotSpatial.Modeling.Forms.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/DotSpatial.NTSExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/DotSpatial.NTSExtension.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/DotSpatial.Positioning.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/DotSpatial.Positioning.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/DotSpatial.Projections.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/DotSpatial.Projections.Forms.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/DotSpatial.Projections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/DotSpatial.Projections.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/DotSpatial.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/DotSpatial.Serialization.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/DotSpatial.Symbology.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/DotSpatial.Symbology.Forms.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/DotSpatial.Symbology.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/DotSpatial.Symbology.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/Ed.Eto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/Ed.Eto.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/NetTopologySuite.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/NetTopologySuite.Features.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/NetTopologySuite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/NetTopologySuite.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/beargis-2.1.1-rh8_24-any.yak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/beargis-2.1.1-rh8_24-any.yak -------------------------------------------------------------------------------- /BearGIS/Publishing/net7/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Publishing/net7/manifest.yml -------------------------------------------------------------------------------- /BearGIS/Publishing/publish.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BearGIS/Resources/BearGISIconSet-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Resources/BearGISIconSet-14.png -------------------------------------------------------------------------------- /BearGIS/Resources/BearGISIconSet-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Resources/BearGISIconSet-15.png -------------------------------------------------------------------------------- /BearGIS/Resources/BearGISIconSet-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Resources/BearGISIconSet-16.png -------------------------------------------------------------------------------- /BearGIS/Resources/BearGISIconSet-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Resources/BearGISIconSet-17.png -------------------------------------------------------------------------------- /BearGIS/Resources/BearGISIconSet-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Resources/BearGISIconSet-18.png -------------------------------------------------------------------------------- /BearGIS/Resources/BearGISIconSet-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Resources/BearGISIconSet-19.png -------------------------------------------------------------------------------- /BearGIS/Resources/BearGISIconSet-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/Resources/BearGISIconSet-20.png -------------------------------------------------------------------------------- /BearGIS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/app.config -------------------------------------------------------------------------------- /BearGIS/obj/Release/BearGIS.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS/obj/Release/BearGIS.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /BearGIS_Solution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/BearGIS_Solution.sln -------------------------------------------------------------------------------- /ClassDiagram.cd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /IconClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/IconClass.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/LICENSE -------------------------------------------------------------------------------- /Migration Guide_ BearGIS to .NET 7 and .NET Framework 4.8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/Migration Guide_ BearGIS to .NET 7 and .NET Framework 4.8.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/README.md -------------------------------------------------------------------------------- /Resources/BearGISIPolylineExportIcon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/Resources/BearGISIPolylineExportIcon.bmp -------------------------------------------------------------------------------- /Resources/BearGISIPolylineExportIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/Resources/BearGISIPolylineExportIcon.png -------------------------------------------------------------------------------- /UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/UpgradeLog.htm -------------------------------------------------------------------------------- /docs/BearGIS Example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/BearGIS Example.zip -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/css/style.css -------------------------------------------------------------------------------- /docs/examples.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/img/BearGISIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/img/BearGISIcon.png -------------------------------------------------------------------------------- /docs/img/BearGISIcon_sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/img/BearGISIcon_sml.png -------------------------------------------------------------------------------- /docs/img/comp-icon/BearGISIconSet-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/img/comp-icon/BearGISIconSet-14.png -------------------------------------------------------------------------------- /docs/img/comp-icon/BearGISIconSet-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/img/comp-icon/BearGISIconSet-15.png -------------------------------------------------------------------------------- /docs/img/comp-icon/BearGISIconSet-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/img/comp-icon/BearGISIconSet-16.png -------------------------------------------------------------------------------- /docs/img/comp-icon/BearGISIconSet-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/img/comp-icon/BearGISIconSet-17.png -------------------------------------------------------------------------------- /docs/img/comp-icon/BearGISIconSet-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/img/comp-icon/BearGISIconSet-18.png -------------------------------------------------------------------------------- /docs/img/comp-icon/BearGISIconSet-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/img/comp-icon/BearGISIconSet-20.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/archive/fileBrowstoUpbload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/js/archive/fileBrowstoUpbload.js -------------------------------------------------------------------------------- /docs/js/archive/loadJsonRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/js/archive/loadJsonRequest.js -------------------------------------------------------------------------------- /docs/js/fileDragtoUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/js/fileDragtoUpload.js -------------------------------------------------------------------------------- /docs/js/fileHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/js/fileHandler.js -------------------------------------------------------------------------------- /docs/js/loadOpenLayersMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/js/loadOpenLayersMap.js -------------------------------------------------------------------------------- /docs/js/ol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/js/ol.js -------------------------------------------------------------------------------- /docs/plugin-zip/BearGIS_v0.01.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/plugin-zip/BearGIS_v0.01.1.zip -------------------------------------------------------------------------------- /docs/plugin-zip/BearGIS_v0.01.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/plugin-zip/BearGIS_v0.01.2.zip -------------------------------------------------------------------------------- /docs/plugin-zip/BearGIS_v0.01.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/plugin-zip/BearGIS_v0.01.3.zip -------------------------------------------------------------------------------- /docs/plugin-zip/BearGIS_v0.01.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/plugin-zip/BearGIS_v0.01.4.zip -------------------------------------------------------------------------------- /docs/plugin-zip/BearGIS_v0.01.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/plugin-zip/BearGIS_v0.01.5.zip -------------------------------------------------------------------------------- /docs/plugin-zip/BearGIS_v0.01.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/plugin-zip/BearGIS_v0.01.6.zip -------------------------------------------------------------------------------- /docs/plugin-zip/BearGIS_v2.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoazel/BearGIS/HEAD/docs/plugin-zip/BearGIS_v2.1.1.zip --------------------------------------------------------------------------------