├── .dockerignore ├── .github └── workflows │ ├── docker-image-geotif.yml │ └── docker-image.yml ├── .gitignore ├── API.Dockerfile ├── API_ARM.Dockerfile ├── Dockerfile ├── LICENSE.txt ├── README.md ├── ZServer.sln ├── ZServer.sln.DotSettings ├── design.md ├── docker-entrypoint.sh ├── img ├── P.png └── design.jpg ├── maxboxstyle.json ├── nuget.config ├── package.props ├── publish.sh ├── publish_interfaces.sh ├── publish_package.bat ├── publish_package.sh ├── publish_x86.sh ├── publish_x86_api.sh ├── references.md ├── src ├── Client │ ├── Client.csproj │ ├── FeatureTypeStyleSerializer.cs │ ├── OgcSymbologyEncoding.cs │ ├── Program.cs │ ├── StyledLayerDescriptor.cs │ └── se.xml ├── Console │ ├── Console.csproj │ ├── Program.cs │ └── appsettings.json ├── Web │ ├── .env │ ├── index.html │ ├── leaflet-sample.js │ ├── leaflet.html │ ├── package.json │ ├── wms.html │ ├── wms.js │ ├── wmts.html │ └── wmts.js ├── ZMap.DynamicCompiler │ ├── NatashaDynamicCompiler.cs │ └── ZMap.DynamicCompiler.csproj ├── ZMap.Renderer.SkiaSharp │ ├── Extensions │ │ ├── MatrixExtensions.cs │ │ ├── RectExtensions.cs │ │ └── SKPointExtensions.cs │ ├── FillRenderer.cs │ ├── GraphicsServiceProvider.cs │ ├── Halo.cs │ ├── LineRenderer.cs │ ├── RasterRender.cs │ ├── ResourceFillRenderer.cs │ ├── ServiceCollectionExtensions.cs │ ├── SkiaGraphicsService.cs │ ├── SkiaRenderer.cs │ ├── SymbolRenderer.cs │ ├── TextRenderer.cs │ ├── Utilities │ │ ├── ColorUtility.cs │ │ ├── CoordinateTransformUtility.cs │ │ └── FontUtility.cs │ └── ZMap.Renderer.SkiaSharp.csproj ├── ZMap.SLD │ └── ZMap.SLD.csproj ├── ZMap.Source.CloudOptimizedGeoTIFF │ ├── COGGeoTiffSource.cs │ ├── DefaultParameters.cs │ ├── GeoKeyEntry.cs │ ├── GeoTiffConstants.cs │ ├── GeoTiffCoordinateTransformationsCodes.cs │ ├── GeoTiffGCSCodes.cs │ ├── GeoTiffIIOMetadataDecoder.cs │ ├── GeoTiffPCSCodes.cs │ ├── LibTiffUtility.cs │ ├── LzwNativeDecompressor.cs │ ├── RemoteCOGGeoTiffSource.cs │ ├── TIFFUtility.cs │ ├── TiffLzwDecoderLeastSignificantBitFirst.cs │ ├── TiffLzwDecoderMostSignificantBitFirst.cs │ └── ZMap.Source.CloudOptimizedGeoTIFF.csproj ├── ZMap.Source.GDAL │ ├── GDALSource.cs │ ├── GeoTransform.cs │ ├── RasterMetadata.cs │ ├── ZMap.Source.GDAL.csproj │ ├── libs │ │ └── OSGeo.GDAL.dll │ └── runtimes │ │ └── osx-x64 │ │ └── native │ │ ├── gdal_wrap.dylib │ │ ├── gdalconst_wrap.dylib │ │ ├── ogr_wrap.dylib │ │ └── osr_wrap.dylib ├── ZMap.Source.Postgre │ ├── PostgreSource.cs │ └── ZMap.Source.Postgre.csproj ├── ZMap.Source.ShapeFile │ ├── ShapeFileSource.cs │ ├── SpatialIndexFactory.cs │ └── ZMap.Source.ShapeFile.csproj ├── ZMap.TileGrid │ ├── DefaultGridSets.cs │ ├── DescendingComparer.cs │ ├── Grid.cs │ ├── GridArea.cs │ ├── GridSet.cs │ ├── GridSetFactory.cs │ ├── TileEnvelope.cs │ └── ZMap.TileGrid.csproj ├── ZMap │ ├── Defaults.cs │ ├── EnvironmentVariables.cs │ ├── Extensions │ │ ├── CoordinateExtensions.cs │ │ ├── DictionaryExtensions.cs │ │ ├── StreamExtensions.cs │ │ ├── UriExtensions.cs │ │ └── VisibleLimitExtensions.cs │ ├── Feature.cs │ ├── Functions.cs │ ├── GlobalUsings.cs │ ├── GridBuffer.cs │ ├── IGraphicsService.cs │ ├── IGraphicsServiceProvider.cs │ ├── ILayerQueryService.cs │ ├── IVisibleLimit.cs │ ├── Indexing │ │ ├── SpatialIndexItem.cs │ │ └── SpatialIndexType.cs │ ├── Infrastructure │ │ ├── CSharpDynamicCompiler.cs │ │ ├── Cache.cs │ │ ├── Convert.cs │ │ ├── CoordinateReferenceSystem.cs │ │ ├── CoordinateSystemComparer.cs │ │ ├── CryptographyUtility.cs │ │ ├── GeographicUtility.cs │ │ ├── GeometryUtility.cs │ │ ├── Log.cs │ │ ├── NamespaceIgnorantXmlTextReader.cs │ │ ├── PathInfo.cs │ │ ├── Utility.cs │ │ ├── esri_proj.csv │ │ └── proj.xml │ ├── Layer.cs │ ├── LayerGroup.cs │ ├── LayerQueryResult.cs │ ├── Map.cs │ ├── Ogc │ │ ├── LayerQuery.cs │ │ ├── MapResult.cs │ │ ├── Wms │ │ │ ├── GetFeatureInfoResult.cs │ │ │ ├── ParameterValidator.cs │ │ │ ├── RequestParameters.cs │ │ │ ├── ValidateResult.cs │ │ │ └── WmsService.cs │ │ └── Wmts │ │ │ ├── Capabilities.cs │ │ │ └── WmtsService.cs │ ├── Permission │ │ ├── DebugPermissionService.cs │ │ ├── IPermissionService.cs │ │ └── PolicyEffect.cs │ ├── RasterLayer.cs │ ├── Renderer │ │ ├── IFillRenderer.cs │ │ ├── ILineRenderer.cs │ │ ├── IRasterRender.cs │ │ ├── IRenderer.cs │ │ ├── ISymbolRenderer.cs │ │ ├── ITextRenderer.cs │ │ └── IVectorRenderer.cs │ ├── ResourceGroup.cs │ ├── SLD │ │ ├── AnchorPoint.cs │ │ ├── BlueChannel.cs │ │ ├── Channel.cs │ │ ├── ChannelSelection.cs │ │ ├── ColorMap.cs │ │ ├── Constant.cs │ │ ├── ContrastEnhancement.cs │ │ ├── CoverageConstraint.cs │ │ ├── CoverageExtent.cs │ │ ├── CoverageStyle.cs │ │ ├── Description.cs │ │ ├── Displacement.cs │ │ ├── Extent.cs │ │ ├── ExternalGraphic.cs │ │ ├── FeatureTypeConstraint.cs │ │ ├── FeatureTypeStyle.cs │ │ ├── Fill.cs │ │ ├── Filter │ │ │ ├── AbstractIdType.cs │ │ │ ├── And.cs │ │ │ ├── BinaryComparisonOpType.cs │ │ │ ├── BinaryLogicOpType.cs │ │ │ ├── ComparisonOpsType.cs │ │ │ ├── DefaultFilterVisitor.cs │ │ │ ├── Expression │ │ │ │ ├── Add.cs │ │ │ │ ├── BinaryOperatorType.cs │ │ │ │ ├── Div.cs │ │ │ │ ├── ExpressionType.cs │ │ │ │ ├── FunctionType.cs │ │ │ │ ├── FunctionType1.cs │ │ │ │ ├── IExpressionVisitor.cs │ │ │ │ ├── LiteralType.cs │ │ │ │ ├── Mul.cs │ │ │ │ ├── NilExpression.cs │ │ │ │ ├── PropertyNameType.cs │ │ │ │ ├── Sub.cs │ │ │ │ └── TrimType.cs │ │ │ ├── FeatureIdType.cs │ │ │ ├── FilterBase.cs │ │ │ ├── FilterType.cs │ │ │ ├── Functions │ │ │ │ ├── Categorize.cs │ │ │ │ ├── Env.cs │ │ │ │ ├── ToArray.cs │ │ │ │ └── ToString.cs │ │ │ ├── IFilterVisitor.cs │ │ │ ├── LogicOpsType.cs │ │ │ ├── LowerBoundaryType.cs │ │ │ ├── Methods.cs │ │ │ ├── Not.cs │ │ │ ├── Or.cs │ │ │ ├── PropertyIsBetweenType.cs │ │ │ ├── PropertyIsEmptyType.cs │ │ │ ├── PropertyIsEqualToType.cs │ │ │ ├── PropertyIsGreaterThanOrEqualTo.cs │ │ │ ├── PropertyIsGreaterThanType.cs │ │ │ ├── PropertyIsLessThan.cs │ │ │ ├── PropertyIsLessThanOrEqualTo.cs │ │ │ ├── PropertyIsLikeType.cs │ │ │ ├── PropertyIsNotEqualTo.cs │ │ │ ├── PropertyIsNullType.cs │ │ │ ├── SpatialOperator.cs │ │ │ ├── UnaryLogicOpType.cs │ │ │ └── UpperBoundaryType.cs │ │ ├── FontType.cs │ │ ├── Geometry.cs │ │ ├── Graphic.cs │ │ ├── GraphicFill.cs │ │ ├── GraphicStroke.cs │ │ ├── GraphicalSymbol.cs │ │ ├── GrayChannel.cs │ │ ├── GreenChannel.cs │ │ ├── Halo.cs │ │ ├── Histogram.cs │ │ ├── IFilterDeserializer.cs │ │ ├── INamedStyle.cs │ │ ├── IStyle.cs │ │ ├── IStyleVisitor.cs │ │ ├── ImageOutline.cs │ │ ├── Label.cs │ │ ├── LabelPlacement.cs │ │ ├── Labeling.cs │ │ ├── LayerConstraint.cs │ │ ├── LegendGraphic.cs │ │ ├── LinePlacement.cs │ │ ├── LineSymbolizer.cs │ │ ├── LowerBoundary.cs │ │ ├── Mark.cs │ │ ├── NamedLayer.cs │ │ ├── NamedStyle.cs │ │ ├── Normalize.cs │ │ ├── OnlineResource.cs │ │ ├── ParameterValue.cs │ │ ├── ParameterValueListExtensions.cs │ │ ├── PerpendicularOffset.cs │ │ ├── PointPlacement.cs │ │ ├── PointSymbolizer.cs │ │ ├── PolygonSymbolizer.cs │ │ ├── RangeAxis.cs │ │ ├── RasterSymbolizer.cs │ │ ├── RedChannel.cs │ │ ├── Rule.cs │ │ ├── ShadedRelief.cs │ │ ├── Stroke.cs │ │ ├── Style.cs │ │ ├── StyledLayer.cs │ │ ├── StyledLayerDescriptor.cs │ │ ├── Symbolizer.cs │ │ ├── TextSymbolizer.cs │ │ ├── TimePeriod.cs │ │ ├── UpperBoundary.cs │ │ ├── UserLayer.cs │ │ ├── UserStyle.cs │ │ ├── VendorOption.cs │ │ ├── docs │ │ │ └── 1.1.0 │ │ │ │ ├── DescribeLayer.xsd │ │ │ │ ├── FeatureStyle.xsd │ │ │ │ ├── GetMap.xsd │ │ │ │ ├── StyledLayerDescriptor.xsd │ │ │ │ ├── Symbolizer.xsd │ │ │ │ ├── common.xsd │ │ │ │ ├── example-sld.xml │ │ │ │ ├── example_capabilities.xml │ │ │ │ ├── example_describelayer.xml │ │ │ │ ├── example_getmap.xml │ │ │ │ ├── filter.xml │ │ │ │ ├── sldAll.xsd │ │ │ │ └── sld_capabilities.xsd │ │ └── sample.xml │ ├── ServiceType.cs │ ├── Source │ │ ├── IRasterSource.cs │ │ ├── IRemoteHttpSource.cs │ │ ├── ISource.cs │ │ ├── ITiledSource.cs │ │ ├── IVectorSource.cs │ │ ├── ImageData.cs │ │ ├── ImageDataType.cs │ │ ├── RasterSource.cs │ │ ├── RemoteWmtsSource.cs │ │ ├── SpatialDatabaseSource.cs │ │ └── VectorSourceBase.cs │ ├── Store │ │ ├── IGridSetStore.cs │ │ └── IRefresher.cs │ ├── Style │ │ ├── CSharpExpression.cs │ │ ├── CSharpExpressionV2.cs │ │ ├── FillStyle.cs │ │ ├── IZMapStyleVisitor.cs │ │ ├── LineStyle.cs │ │ ├── RasterStyle.cs │ │ ├── ResourceFillStyle.cs │ │ ├── SldStyleVisitor.cs │ │ ├── SpriteFillStyle.cs │ │ ├── SpriteLineStyle.cs │ │ ├── Style.cs │ │ ├── StyleGroup.cs │ │ ├── SymbolStyle.cs │ │ ├── TextStyle.cs │ │ ├── TextTransform.cs │ │ ├── TranslateAnchor.cs │ │ ├── VectorStyle.cs │ │ ├── ZMapStyleVisitor.cs │ │ └── sytle.json │ ├── Tile.cs │ ├── TiledLayer.cs │ ├── VectorLayer.cs │ ├── Viewport.cs │ ├── ZMap.csproj │ ├── Zoom.cs │ └── ZoomUnits.cs ├── ZServer.API │ ├── .env │ ├── Authentication │ │ ├── AllowAnonymousAuthorizationHandler.cs │ │ ├── TokenAuthHandler.cs │ │ └── TokenAuthOptions.cs │ ├── CleanNpgsql.sql │ ├── Controllers │ │ ├── ApiResult.cs │ │ ├── TestController.cs │ │ ├── ToolControler.cs │ │ ├── WMSController.cs │ │ ├── WMTSController.cs │ │ ├── XyzController.cs │ │ └── ZServerAuthorize.cs │ ├── Features │ │ └── TraceIdentifierFeature.cs │ ├── Filters │ │ └── GlobalExceptionFilter.cs │ ├── HttpContextExtensions.cs │ ├── Npgsql.sql │ ├── Permission │ │ ├── PermissionOptions.cs │ │ └── PermissionService.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Serilog │ │ ├── LoggerMiddleware.cs │ │ └── WithExtraEnricher.cs │ ├── ServerOptions.cs │ ├── Startup.cs │ ├── ZServer.API.csproj │ ├── conf │ │ ├── appsettings.json │ │ ├── appsettings.sample.json │ │ ├── serilog.json │ │ └── zserver.json │ ├── docker-compose.yml │ ├── fonts │ │ └── SourceHanSansSC-Regular.ttf │ ├── shapes │ │ ├── polygon.cpg │ │ ├── polygon.dbf │ │ ├── polygon.prj │ │ ├── polygon.shp │ │ ├── polygon.shx │ │ ├── polygon.sidx │ │ ├── polygon_3857.cpg │ │ ├── polygon_3857.dbf │ │ ├── polygon_3857.prj │ │ ├── polygon_3857.qmd │ │ ├── polygon_3857.shp │ │ ├── polygon_3857.shx │ │ └── polygon_3857.sidx │ ├── sld │ │ └── polygon.sld │ ├── start.bat │ └── start.sh ├── ZServer.Benchmark │ ├── Program.cs │ ├── RendererTest.cs │ ├── SKPaintCache.cs │ ├── StreamToArray.cs │ ├── ZServer.Benchmark.csproj │ ├── appsettings.json │ ├── polygons.json │ ├── shapes │ │ ├── osmbuildings.dbf │ │ ├── osmbuildings.prj │ │ ├── osmbuildings.shp │ │ └── osmbuildings.shx │ └── xiongmao.jpg ├── ZServer.Grains │ ├── GeoJsonSerializer.cs │ ├── RESTFUL │ │ └── Restful.cs │ ├── WMS │ │ └── WMSGrain.cs │ ├── WMTS │ │ └── WMTSGrain.cs │ ├── XYZ │ │ └── XyzGrain.cs │ └── ZServer.Grains.csproj ├── ZServer.Interfaces │ ├── Obsolete │ │ ├── ModeState.cs │ │ └── ModeStateUtilities.cs │ ├── RESTFUL │ │ └── IRestful.cs │ ├── ServerException.cs │ ├── ServerExceptionReport.cs │ ├── WMS │ │ └── IWMSGrain.cs │ ├── WMTS │ │ └── IWMTSGrain.cs │ ├── XYZ.cs │ ├── XYZ │ │ └── IXyzGrain.cs │ ├── ZServer.Interfaces.csproj │ ├── ZServerResponse.cs │ └── ZServerResponseFactory.cs ├── ZServer.Silo │ ├── OrleansExtensions.cs │ └── ZServer.Silo.csproj ├── ZServer.SiloHost │ ├── 1.json │ ├── 108.png │ ├── CleanNpgsql.sql │ ├── Extensions │ │ └── OrleansExtensions.cs │ ├── Npgsql.sql │ ├── Program.cs │ ├── ZServer.SiloHost.csproj │ ├── conf │ │ ├── appsettings.json │ │ ├── serilog.json │ │ └── zserver.json │ ├── fonts │ │ └── SourceHanSansSC-Regular.ttf │ ├── readme.txt │ ├── shapes │ │ ├── polygon.cpg │ │ ├── polygon.dbf │ │ ├── polygon.prj │ │ ├── polygon.shp │ │ ├── polygon.shx │ │ ├── polygon.sidx │ │ ├── polygon_3857.cpg │ │ ├── polygon_3857.dbf │ │ ├── polygon_3857.prj │ │ ├── polygon_3857.qmd │ │ ├── polygon_3857.shp │ │ ├── polygon_3857.shx │ │ └── polygon_3857.sidx │ └── sld │ │ └── polygon.sld ├── ZServer.Tests │ ├── 108.png │ ├── ApiTests.cs │ ├── BaseTests.cs │ ├── CSharpExpressionV2Tests.cs │ ├── CacheTests.cs │ ├── CogTests.cs │ ├── CommonTests.cs │ ├── CompositeStyleTests.cs │ ├── ConvertTests.cs │ ├── CoordinateSystemComparerTests.cs │ ├── DynamicBuildTestgs.cs │ ├── ESRI_CS.xlsx │ ├── EsriCoordinateSystems.cs │ ├── FeatureTests.cs │ ├── FillStyleTests.cs │ ├── FontManagerTest.cs │ ├── Fonts │ │ └── 2宋体.ttc │ ├── GDALTests.cs │ ├── GeoUtilitiesTests.cs │ ├── GridSetStoreTests.cs │ ├── GridSetTests.cs │ ├── LayerGroupStoreTests.cs │ ├── LayerStoreTests.cs │ ├── LineStyleTests.cs │ ├── MapZoneTests.cs │ ├── MeasureTestTests.cs │ ├── MemoryCacheTests.cs │ ├── MethodsTests.cs │ ├── MurmurHashAlgorithmServiceTests.cs │ ├── PostgreSourceTests.cs │ ├── RemoteWmtsSourceTests.cs │ ├── RenderServiceTests.cs │ ├── RendererFactoryTests.cs │ ├── ResourceGroupStoreTests.cs │ ├── ScaleTests.cs │ ├── ShapeFileTests.cs │ ├── SldFilterTests.cs │ ├── SocoStoreProviderTests.cs │ ├── SortedListTests.cs │ ├── SourceStoreTests.cs │ ├── SpatialIndexTests.cs │ ├── StyleGroupStoreTests.cs │ ├── StyledLayerDescriptorTests.cs │ ├── SymbolStyleTests.cs │ ├── TextStyleTests.cs │ ├── TiffTests.cs │ ├── TransformTests.cs │ ├── UriTests.cs │ ├── UtilityTests.cs │ ├── WebApplicationFactoryFixture.cs │ ├── WmtsTests.cs │ ├── XmlResultTests.cs │ ├── XmlToLinqExpression.cs │ ├── ZServer.Tests.csproj │ ├── appsettings.json │ ├── images │ │ ├── 108.png │ │ ├── colorblocks1.png │ │ ├── tianditu_c.png │ │ ├── tianditu_w.png │ │ └── world_raster_mod.tif │ ├── layers.json │ ├── multiLine.json │ ├── polygons.json │ ├── projs │ │ ├── 4508.prj │ │ ├── 4546.prj │ │ ├── 4548.prj │ │ ├── 4549.prj │ │ └── 4550.prj │ ├── runtimes │ │ └── osx-x64 │ │ │ └── native │ │ │ ├── gdal_wrap.dylib │ │ │ ├── gdalconst_wrap.dylib │ │ │ ├── ogr_wrap.dylib │ │ │ └── osr_wrap.dylib │ ├── se.xml │ ├── shapes │ │ ├── osmbuildings.dbf │ │ ├── osmbuildings.prj │ │ ├── osmbuildings.shp │ │ └── osmbuildings.shx │ ├── sld.xml │ └── sld │ │ ├── Add.xml │ │ ├── PropertyIsEqualTo.xml │ │ └── polygon.xml └── ZServer │ ├── Extensions │ └── ConfigurationSectionExtensions.cs │ ├── PreloadService.cs │ ├── RefreshConfigService.cs │ ├── ServerOptions.cs │ ├── ServiceCollectionExtensions.cs │ ├── Store │ ├── FileJsonStoreProvider.cs │ ├── GridSetStore.cs │ ├── IJsonStoreProvider.cs │ ├── ILayerGroupStore.cs │ ├── ILayerStore.cs │ ├── IResourceGroupStore.cs │ ├── ISldStore.cs │ ├── ISourceStore.cs │ ├── IStyleGroupStore.cs │ ├── LayerGroupStore.cs │ ├── LayerQueryService.cs │ ├── LayerStore.cs │ ├── ResourceGroupStore.cs │ ├── SldStore.cs │ ├── SocoStoreProvider.cs │ ├── SourceStore.cs │ ├── StoreConfigOptions.cs │ └── StyleGroupStore.cs │ ├── ZServer.csproj │ ├── ZServerBuilder.cs │ └── location.svg ├── start.sh ├── version.props └── workitems.md /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker-image-geotif.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/.github/workflows/docker-image-geotif.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/.gitignore -------------------------------------------------------------------------------- /API.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/API.Dockerfile -------------------------------------------------------------------------------- /API_ARM.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/API_ARM.Dockerfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/README.md -------------------------------------------------------------------------------- /ZServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/ZServer.sln -------------------------------------------------------------------------------- /ZServer.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/ZServer.sln.DotSettings -------------------------------------------------------------------------------- /design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/design.md -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /img/P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/img/P.png -------------------------------------------------------------------------------- /img/design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/img/design.jpg -------------------------------------------------------------------------------- /maxboxstyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/maxboxstyle.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/nuget.config -------------------------------------------------------------------------------- /package.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/package.props -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/publish.sh -------------------------------------------------------------------------------- /publish_interfaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/publish_interfaces.sh -------------------------------------------------------------------------------- /publish_package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/publish_package.bat -------------------------------------------------------------------------------- /publish_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/publish_package.sh -------------------------------------------------------------------------------- /publish_x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/publish_x86.sh -------------------------------------------------------------------------------- /publish_x86_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/publish_x86_api.sh -------------------------------------------------------------------------------- /references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/references.md -------------------------------------------------------------------------------- /src/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Client/Client.csproj -------------------------------------------------------------------------------- /src/Client/FeatureTypeStyleSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Client/FeatureTypeStyleSerializer.cs -------------------------------------------------------------------------------- /src/Client/OgcSymbologyEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Client/OgcSymbologyEncoding.cs -------------------------------------------------------------------------------- /src/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Client/Program.cs -------------------------------------------------------------------------------- /src/Client/StyledLayerDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Client/StyledLayerDescriptor.cs -------------------------------------------------------------------------------- /src/Client/se.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Client/se.xml -------------------------------------------------------------------------------- /src/Console/Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Console/Console.csproj -------------------------------------------------------------------------------- /src/Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Console/Program.cs -------------------------------------------------------------------------------- /src/Console/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Console/appsettings.json -------------------------------------------------------------------------------- /src/Web/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Web/.env -------------------------------------------------------------------------------- /src/Web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Web/index.html -------------------------------------------------------------------------------- /src/Web/leaflet-sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Web/leaflet-sample.js -------------------------------------------------------------------------------- /src/Web/leaflet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Web/leaflet.html -------------------------------------------------------------------------------- /src/Web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Web/package.json -------------------------------------------------------------------------------- /src/Web/wms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Web/wms.html -------------------------------------------------------------------------------- /src/Web/wms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Web/wms.js -------------------------------------------------------------------------------- /src/Web/wmts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Web/wmts.html -------------------------------------------------------------------------------- /src/Web/wmts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/Web/wmts.js -------------------------------------------------------------------------------- /src/ZMap.DynamicCompiler/NatashaDynamicCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.DynamicCompiler/NatashaDynamicCompiler.cs -------------------------------------------------------------------------------- /src/ZMap.DynamicCompiler/ZMap.DynamicCompiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.DynamicCompiler/ZMap.DynamicCompiler.csproj -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/Extensions/MatrixExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/Extensions/MatrixExtensions.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/Extensions/RectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/Extensions/RectExtensions.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/Extensions/SKPointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/Extensions/SKPointExtensions.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/FillRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/FillRenderer.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/GraphicsServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/GraphicsServiceProvider.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/Halo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/Halo.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/LineRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/LineRenderer.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/RasterRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/RasterRender.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/ResourceFillRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/ResourceFillRenderer.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/SkiaGraphicsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/SkiaGraphicsService.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/SkiaRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/SkiaRenderer.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/SymbolRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/SymbolRenderer.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/TextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/TextRenderer.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/Utilities/ColorUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/Utilities/ColorUtility.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/Utilities/CoordinateTransformUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/Utilities/CoordinateTransformUtility.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/Utilities/FontUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/Utilities/FontUtility.cs -------------------------------------------------------------------------------- /src/ZMap.Renderer.SkiaSharp/ZMap.Renderer.SkiaSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Renderer.SkiaSharp/ZMap.Renderer.SkiaSharp.csproj -------------------------------------------------------------------------------- /src/ZMap.SLD/ZMap.SLD.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.SLD/ZMap.SLD.csproj -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/COGGeoTiffSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/COGGeoTiffSource.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/DefaultParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/DefaultParameters.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/GeoKeyEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/GeoKeyEntry.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/GeoTiffConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/GeoTiffConstants.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/GeoTiffCoordinateTransformationsCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/GeoTiffCoordinateTransformationsCodes.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/GeoTiffGCSCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/GeoTiffGCSCodes.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/GeoTiffIIOMetadataDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/GeoTiffIIOMetadataDecoder.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/GeoTiffPCSCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/GeoTiffPCSCodes.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/LibTiffUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/LibTiffUtility.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/LzwNativeDecompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/LzwNativeDecompressor.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/RemoteCOGGeoTiffSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/RemoteCOGGeoTiffSource.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/TIFFUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/TIFFUtility.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/TiffLzwDecoderLeastSignificantBitFirst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/TiffLzwDecoderLeastSignificantBitFirst.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/TiffLzwDecoderMostSignificantBitFirst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/TiffLzwDecoderMostSignificantBitFirst.cs -------------------------------------------------------------------------------- /src/ZMap.Source.CloudOptimizedGeoTIFF/ZMap.Source.CloudOptimizedGeoTIFF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.CloudOptimizedGeoTIFF/ZMap.Source.CloudOptimizedGeoTIFF.csproj -------------------------------------------------------------------------------- /src/ZMap.Source.GDAL/GDALSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.GDAL/GDALSource.cs -------------------------------------------------------------------------------- /src/ZMap.Source.GDAL/GeoTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.GDAL/GeoTransform.cs -------------------------------------------------------------------------------- /src/ZMap.Source.GDAL/RasterMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.GDAL/RasterMetadata.cs -------------------------------------------------------------------------------- /src/ZMap.Source.GDAL/ZMap.Source.GDAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.GDAL/ZMap.Source.GDAL.csproj -------------------------------------------------------------------------------- /src/ZMap.Source.GDAL/libs/OSGeo.GDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.GDAL/libs/OSGeo.GDAL.dll -------------------------------------------------------------------------------- /src/ZMap.Source.GDAL/runtimes/osx-x64/native/gdal_wrap.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.GDAL/runtimes/osx-x64/native/gdal_wrap.dylib -------------------------------------------------------------------------------- /src/ZMap.Source.GDAL/runtimes/osx-x64/native/gdalconst_wrap.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.GDAL/runtimes/osx-x64/native/gdalconst_wrap.dylib -------------------------------------------------------------------------------- /src/ZMap.Source.GDAL/runtimes/osx-x64/native/ogr_wrap.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.GDAL/runtimes/osx-x64/native/ogr_wrap.dylib -------------------------------------------------------------------------------- /src/ZMap.Source.GDAL/runtimes/osx-x64/native/osr_wrap.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.GDAL/runtimes/osx-x64/native/osr_wrap.dylib -------------------------------------------------------------------------------- /src/ZMap.Source.Postgre/PostgreSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.Postgre/PostgreSource.cs -------------------------------------------------------------------------------- /src/ZMap.Source.Postgre/ZMap.Source.Postgre.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.Postgre/ZMap.Source.Postgre.csproj -------------------------------------------------------------------------------- /src/ZMap.Source.ShapeFile/ShapeFileSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.ShapeFile/ShapeFileSource.cs -------------------------------------------------------------------------------- /src/ZMap.Source.ShapeFile/SpatialIndexFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.ShapeFile/SpatialIndexFactory.cs -------------------------------------------------------------------------------- /src/ZMap.Source.ShapeFile/ZMap.Source.ShapeFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.Source.ShapeFile/ZMap.Source.ShapeFile.csproj -------------------------------------------------------------------------------- /src/ZMap.TileGrid/DefaultGridSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.TileGrid/DefaultGridSets.cs -------------------------------------------------------------------------------- /src/ZMap.TileGrid/DescendingComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.TileGrid/DescendingComparer.cs -------------------------------------------------------------------------------- /src/ZMap.TileGrid/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.TileGrid/Grid.cs -------------------------------------------------------------------------------- /src/ZMap.TileGrid/GridArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.TileGrid/GridArea.cs -------------------------------------------------------------------------------- /src/ZMap.TileGrid/GridSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.TileGrid/GridSet.cs -------------------------------------------------------------------------------- /src/ZMap.TileGrid/GridSetFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.TileGrid/GridSetFactory.cs -------------------------------------------------------------------------------- /src/ZMap.TileGrid/TileEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.TileGrid/TileEnvelope.cs -------------------------------------------------------------------------------- /src/ZMap.TileGrid/ZMap.TileGrid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap.TileGrid/ZMap.TileGrid.csproj -------------------------------------------------------------------------------- /src/ZMap/Defaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Defaults.cs -------------------------------------------------------------------------------- /src/ZMap/EnvironmentVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/EnvironmentVariables.cs -------------------------------------------------------------------------------- /src/ZMap/Extensions/CoordinateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Extensions/CoordinateExtensions.cs -------------------------------------------------------------------------------- /src/ZMap/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/ZMap/Extensions/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Extensions/StreamExtensions.cs -------------------------------------------------------------------------------- /src/ZMap/Extensions/UriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Extensions/UriExtensions.cs -------------------------------------------------------------------------------- /src/ZMap/Extensions/VisibleLimitExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Extensions/VisibleLimitExtensions.cs -------------------------------------------------------------------------------- /src/ZMap/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Feature.cs -------------------------------------------------------------------------------- /src/ZMap/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Functions.cs -------------------------------------------------------------------------------- /src/ZMap/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/GlobalUsings.cs -------------------------------------------------------------------------------- /src/ZMap/GridBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/GridBuffer.cs -------------------------------------------------------------------------------- /src/ZMap/IGraphicsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/IGraphicsService.cs -------------------------------------------------------------------------------- /src/ZMap/IGraphicsServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/IGraphicsServiceProvider.cs -------------------------------------------------------------------------------- /src/ZMap/ILayerQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/ILayerQueryService.cs -------------------------------------------------------------------------------- /src/ZMap/IVisibleLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/IVisibleLimit.cs -------------------------------------------------------------------------------- /src/ZMap/Indexing/SpatialIndexItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Indexing/SpatialIndexItem.cs -------------------------------------------------------------------------------- /src/ZMap/Indexing/SpatialIndexType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Indexing/SpatialIndexType.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/CSharpDynamicCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/CSharpDynamicCompiler.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/Cache.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/Convert.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/CoordinateReferenceSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/CoordinateReferenceSystem.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/CoordinateSystemComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/CoordinateSystemComparer.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/CryptographyUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/CryptographyUtility.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/GeographicUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/GeographicUtility.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/GeometryUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/GeometryUtility.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/Log.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/NamespaceIgnorantXmlTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/NamespaceIgnorantXmlTextReader.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/PathInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/PathInfo.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/Utility.cs -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/esri_proj.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/esri_proj.csv -------------------------------------------------------------------------------- /src/ZMap/Infrastructure/proj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Infrastructure/proj.xml -------------------------------------------------------------------------------- /src/ZMap/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Layer.cs -------------------------------------------------------------------------------- /src/ZMap/LayerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/LayerGroup.cs -------------------------------------------------------------------------------- /src/ZMap/LayerQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/LayerQueryResult.cs -------------------------------------------------------------------------------- /src/ZMap/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Map.cs -------------------------------------------------------------------------------- /src/ZMap/Ogc/LayerQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Ogc/LayerQuery.cs -------------------------------------------------------------------------------- /src/ZMap/Ogc/MapResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Ogc/MapResult.cs -------------------------------------------------------------------------------- /src/ZMap/Ogc/Wms/GetFeatureInfoResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Ogc/Wms/GetFeatureInfoResult.cs -------------------------------------------------------------------------------- /src/ZMap/Ogc/Wms/ParameterValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Ogc/Wms/ParameterValidator.cs -------------------------------------------------------------------------------- /src/ZMap/Ogc/Wms/RequestParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Ogc/Wms/RequestParameters.cs -------------------------------------------------------------------------------- /src/ZMap/Ogc/Wms/ValidateResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Ogc/Wms/ValidateResult.cs -------------------------------------------------------------------------------- /src/ZMap/Ogc/Wms/WmsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Ogc/Wms/WmsService.cs -------------------------------------------------------------------------------- /src/ZMap/Ogc/Wmts/Capabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Ogc/Wmts/Capabilities.cs -------------------------------------------------------------------------------- /src/ZMap/Ogc/Wmts/WmtsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Ogc/Wmts/WmtsService.cs -------------------------------------------------------------------------------- /src/ZMap/Permission/DebugPermissionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Permission/DebugPermissionService.cs -------------------------------------------------------------------------------- /src/ZMap/Permission/IPermissionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Permission/IPermissionService.cs -------------------------------------------------------------------------------- /src/ZMap/Permission/PolicyEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Permission/PolicyEffect.cs -------------------------------------------------------------------------------- /src/ZMap/RasterLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/RasterLayer.cs -------------------------------------------------------------------------------- /src/ZMap/Renderer/IFillRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Renderer/IFillRenderer.cs -------------------------------------------------------------------------------- /src/ZMap/Renderer/ILineRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Renderer/ILineRenderer.cs -------------------------------------------------------------------------------- /src/ZMap/Renderer/IRasterRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Renderer/IRasterRender.cs -------------------------------------------------------------------------------- /src/ZMap/Renderer/IRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Renderer/IRenderer.cs -------------------------------------------------------------------------------- /src/ZMap/Renderer/ISymbolRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Renderer/ISymbolRenderer.cs -------------------------------------------------------------------------------- /src/ZMap/Renderer/ITextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Renderer/ITextRenderer.cs -------------------------------------------------------------------------------- /src/ZMap/Renderer/IVectorRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Renderer/IVectorRenderer.cs -------------------------------------------------------------------------------- /src/ZMap/ResourceGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/ResourceGroup.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/AnchorPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/AnchorPoint.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/BlueChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/BlueChannel.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Channel.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/ChannelSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/ChannelSelection.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/ColorMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/ColorMap.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Constant.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/ContrastEnhancement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/ContrastEnhancement.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/CoverageConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/CoverageConstraint.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/CoverageExtent.cs: -------------------------------------------------------------------------------- 1 | namespace ZMap.SLD; 2 | 3 | public class CoverageExtent; -------------------------------------------------------------------------------- /src/ZMap/SLD/CoverageStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/CoverageStyle.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Description.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Description.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Displacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Displacement.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Extent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Extent.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/ExternalGraphic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/ExternalGraphic.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/FeatureTypeConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/FeatureTypeConstraint.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/FeatureTypeStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/FeatureTypeStyle.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Fill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Fill.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/AbstractIdType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/AbstractIdType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/And.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/And.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/BinaryComparisonOpType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/BinaryComparisonOpType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/BinaryLogicOpType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/BinaryLogicOpType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/ComparisonOpsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/ComparisonOpsType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/DefaultFilterVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/DefaultFilterVisitor.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/Add.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/BinaryOperatorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/BinaryOperatorType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/Div.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/Div.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/ExpressionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/ExpressionType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/FunctionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/FunctionType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/FunctionType1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/FunctionType1.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/IExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/IExpressionVisitor.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/LiteralType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/LiteralType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/Mul.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/Mul.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/NilExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/NilExpression.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/PropertyNameType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/PropertyNameType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/Sub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/Sub.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Expression/TrimType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Expression/TrimType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/FeatureIdType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/FeatureIdType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/FilterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/FilterBase.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/FilterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/FilterType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Functions/Categorize.cs: -------------------------------------------------------------------------------- 1 | namespace ZMap.SLD.Filter.Functions; 2 | 3 | public class Categorize; -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Functions/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Functions/Env.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Functions/ToArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Functions/ToArray.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Functions/ToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Functions/ToString.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/IFilterVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/IFilterVisitor.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/LogicOpsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/LogicOpsType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/LowerBoundaryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/LowerBoundaryType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Methods.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Not.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Not.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/Or.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/Or.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/PropertyIsBetweenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/PropertyIsBetweenType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/PropertyIsEmptyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/PropertyIsEmptyType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/PropertyIsEqualToType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/PropertyIsEqualToType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/PropertyIsGreaterThanOrEqualTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/PropertyIsGreaterThanOrEqualTo.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/PropertyIsGreaterThanType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/PropertyIsGreaterThanType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/PropertyIsLessThan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/PropertyIsLessThan.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/PropertyIsLessThanOrEqualTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/PropertyIsLessThanOrEqualTo.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/PropertyIsLikeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/PropertyIsLikeType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/PropertyIsNotEqualTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/PropertyIsNotEqualTo.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/PropertyIsNullType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/PropertyIsNullType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/SpatialOperator.cs: -------------------------------------------------------------------------------- 1 | namespace ZMap.SLD.Filter; 2 | 3 | public class SpatialOperator; -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/UnaryLogicOpType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/UnaryLogicOpType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Filter/UpperBoundaryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Filter/UpperBoundaryType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/FontType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/FontType.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Geometry.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Graphic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Graphic.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/GraphicFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/GraphicFill.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/GraphicStroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/GraphicStroke.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/GraphicalSymbol.cs: -------------------------------------------------------------------------------- 1 | namespace ZMap.SLD; 2 | 3 | public class GraphicalSymbol; -------------------------------------------------------------------------------- /src/ZMap/SLD/GrayChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/GrayChannel.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/GreenChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/GreenChannel.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Halo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Halo.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Histogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Histogram.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/IFilterDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/IFilterDeserializer.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/INamedStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/INamedStyle.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/IStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/IStyle.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/IStyleVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/IStyleVisitor.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/ImageOutline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/ImageOutline.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Label.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/LabelPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/LabelPlacement.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Labeling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Labeling.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/LayerConstraint.cs: -------------------------------------------------------------------------------- 1 | namespace ZMap.SLD; 2 | 3 | public class LayerConstraint; -------------------------------------------------------------------------------- /src/ZMap/SLD/LegendGraphic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/LegendGraphic.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/LinePlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/LinePlacement.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/LineSymbolizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/LineSymbolizer.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/LowerBoundary.cs: -------------------------------------------------------------------------------- 1 | namespace ZMap.SLD; 2 | 3 | public class LowerBoundary : Constant; -------------------------------------------------------------------------------- /src/ZMap/SLD/Mark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Mark.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/NamedLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/NamedLayer.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/NamedStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/NamedStyle.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Normalize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Normalize.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/OnlineResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/OnlineResource.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/ParameterValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/ParameterValue.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/ParameterValueListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/ParameterValueListExtensions.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/PerpendicularOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/PerpendicularOffset.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/PointPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/PointPlacement.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/PointSymbolizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/PointSymbolizer.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/PolygonSymbolizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/PolygonSymbolizer.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/RangeAxis.cs: -------------------------------------------------------------------------------- 1 | namespace ZMap.SLD; 2 | 3 | public class RangeAxis; -------------------------------------------------------------------------------- /src/ZMap/SLD/RasterSymbolizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/RasterSymbolizer.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/RedChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/RedChannel.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Rule.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/ShadedRelief.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/ShadedRelief.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Stroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Stroke.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Style.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/StyledLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/StyledLayer.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/StyledLayerDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/StyledLayerDescriptor.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/Symbolizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/Symbolizer.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/TextSymbolizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/TextSymbolizer.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/TimePeriod.cs: -------------------------------------------------------------------------------- 1 | namespace ZMap.SLD; 2 | 3 | public class TimePeriod; -------------------------------------------------------------------------------- /src/ZMap/SLD/UpperBoundary.cs: -------------------------------------------------------------------------------- 1 | namespace ZMap.SLD; 2 | 3 | public class UpperBoundary : Constant; -------------------------------------------------------------------------------- /src/ZMap/SLD/UserLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/UserLayer.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/UserStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/UserStyle.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/VendorOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/VendorOption.cs -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/DescribeLayer.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/DescribeLayer.xsd -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/FeatureStyle.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/FeatureStyle.xsd -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/GetMap.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/GetMap.xsd -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/StyledLayerDescriptor.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/StyledLayerDescriptor.xsd -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/Symbolizer.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/Symbolizer.xsd -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/common.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/common.xsd -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/example-sld.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/example-sld.xml -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/example_capabilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/example_capabilities.xml -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/example_describelayer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/example_describelayer.xml -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/example_getmap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/example_getmap.xml -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/filter.xml -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/sldAll.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/sldAll.xsd -------------------------------------------------------------------------------- /src/ZMap/SLD/docs/1.1.0/sld_capabilities.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/docs/1.1.0/sld_capabilities.xsd -------------------------------------------------------------------------------- /src/ZMap/SLD/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/SLD/sample.xml -------------------------------------------------------------------------------- /src/ZMap/ServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/ServiceType.cs -------------------------------------------------------------------------------- /src/ZMap/Source/IRasterSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Source/IRasterSource.cs -------------------------------------------------------------------------------- /src/ZMap/Source/IRemoteHttpSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Source/IRemoteHttpSource.cs -------------------------------------------------------------------------------- /src/ZMap/Source/ISource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Source/ISource.cs -------------------------------------------------------------------------------- /src/ZMap/Source/ITiledSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Source/ITiledSource.cs -------------------------------------------------------------------------------- /src/ZMap/Source/IVectorSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Source/IVectorSource.cs -------------------------------------------------------------------------------- /src/ZMap/Source/ImageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Source/ImageData.cs -------------------------------------------------------------------------------- /src/ZMap/Source/ImageDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Source/ImageDataType.cs -------------------------------------------------------------------------------- /src/ZMap/Source/RasterSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Source/RasterSource.cs -------------------------------------------------------------------------------- /src/ZMap/Source/RemoteWmtsSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Source/RemoteWmtsSource.cs -------------------------------------------------------------------------------- /src/ZMap/Source/SpatialDatabaseSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Source/SpatialDatabaseSource.cs -------------------------------------------------------------------------------- /src/ZMap/Source/VectorSourceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Source/VectorSourceBase.cs -------------------------------------------------------------------------------- /src/ZMap/Store/IGridSetStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Store/IGridSetStore.cs -------------------------------------------------------------------------------- /src/ZMap/Store/IRefresher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Store/IRefresher.cs -------------------------------------------------------------------------------- /src/ZMap/Style/CSharpExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/CSharpExpression.cs -------------------------------------------------------------------------------- /src/ZMap/Style/CSharpExpressionV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/CSharpExpressionV2.cs -------------------------------------------------------------------------------- /src/ZMap/Style/FillStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/FillStyle.cs -------------------------------------------------------------------------------- /src/ZMap/Style/IZMapStyleVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/IZMapStyleVisitor.cs -------------------------------------------------------------------------------- /src/ZMap/Style/LineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/LineStyle.cs -------------------------------------------------------------------------------- /src/ZMap/Style/RasterStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/RasterStyle.cs -------------------------------------------------------------------------------- /src/ZMap/Style/ResourceFillStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/ResourceFillStyle.cs -------------------------------------------------------------------------------- /src/ZMap/Style/SldStyleVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/SldStyleVisitor.cs -------------------------------------------------------------------------------- /src/ZMap/Style/SpriteFillStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/SpriteFillStyle.cs -------------------------------------------------------------------------------- /src/ZMap/Style/SpriteLineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/SpriteLineStyle.cs -------------------------------------------------------------------------------- /src/ZMap/Style/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/Style.cs -------------------------------------------------------------------------------- /src/ZMap/Style/StyleGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/StyleGroup.cs -------------------------------------------------------------------------------- /src/ZMap/Style/SymbolStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/SymbolStyle.cs -------------------------------------------------------------------------------- /src/ZMap/Style/TextStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/TextStyle.cs -------------------------------------------------------------------------------- /src/ZMap/Style/TextTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/TextTransform.cs -------------------------------------------------------------------------------- /src/ZMap/Style/TranslateAnchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/TranslateAnchor.cs -------------------------------------------------------------------------------- /src/ZMap/Style/VectorStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/VectorStyle.cs -------------------------------------------------------------------------------- /src/ZMap/Style/ZMapStyleVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/ZMapStyleVisitor.cs -------------------------------------------------------------------------------- /src/ZMap/Style/sytle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Style/sytle.json -------------------------------------------------------------------------------- /src/ZMap/Tile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Tile.cs -------------------------------------------------------------------------------- /src/ZMap/TiledLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/TiledLayer.cs -------------------------------------------------------------------------------- /src/ZMap/VectorLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/VectorLayer.cs -------------------------------------------------------------------------------- /src/ZMap/Viewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Viewport.cs -------------------------------------------------------------------------------- /src/ZMap/ZMap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/ZMap.csproj -------------------------------------------------------------------------------- /src/ZMap/Zoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/Zoom.cs -------------------------------------------------------------------------------- /src/ZMap/ZoomUnits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZMap/ZoomUnits.cs -------------------------------------------------------------------------------- /src/ZServer.API/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=zserver -------------------------------------------------------------------------------- /src/ZServer.API/Authentication/AllowAnonymousAuthorizationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Authentication/AllowAnonymousAuthorizationHandler.cs -------------------------------------------------------------------------------- /src/ZServer.API/Authentication/TokenAuthHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Authentication/TokenAuthHandler.cs -------------------------------------------------------------------------------- /src/ZServer.API/Authentication/TokenAuthOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Authentication/TokenAuthOptions.cs -------------------------------------------------------------------------------- /src/ZServer.API/CleanNpgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/CleanNpgsql.sql -------------------------------------------------------------------------------- /src/ZServer.API/Controllers/ApiResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Controllers/ApiResult.cs -------------------------------------------------------------------------------- /src/ZServer.API/Controllers/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Controllers/TestController.cs -------------------------------------------------------------------------------- /src/ZServer.API/Controllers/ToolControler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Controllers/ToolControler.cs -------------------------------------------------------------------------------- /src/ZServer.API/Controllers/WMSController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Controllers/WMSController.cs -------------------------------------------------------------------------------- /src/ZServer.API/Controllers/WMTSController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Controllers/WMTSController.cs -------------------------------------------------------------------------------- /src/ZServer.API/Controllers/XyzController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Controllers/XyzController.cs -------------------------------------------------------------------------------- /src/ZServer.API/Controllers/ZServerAuthorize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Controllers/ZServerAuthorize.cs -------------------------------------------------------------------------------- /src/ZServer.API/Features/TraceIdentifierFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Features/TraceIdentifierFeature.cs -------------------------------------------------------------------------------- /src/ZServer.API/Filters/GlobalExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Filters/GlobalExceptionFilter.cs -------------------------------------------------------------------------------- /src/ZServer.API/HttpContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/HttpContextExtensions.cs -------------------------------------------------------------------------------- /src/ZServer.API/Npgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Npgsql.sql -------------------------------------------------------------------------------- /src/ZServer.API/Permission/PermissionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Permission/PermissionOptions.cs -------------------------------------------------------------------------------- /src/ZServer.API/Permission/PermissionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Permission/PermissionService.cs -------------------------------------------------------------------------------- /src/ZServer.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Program.cs -------------------------------------------------------------------------------- /src/ZServer.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ZServer.API/Serilog/LoggerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Serilog/LoggerMiddleware.cs -------------------------------------------------------------------------------- /src/ZServer.API/Serilog/WithExtraEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Serilog/WithExtraEnricher.cs -------------------------------------------------------------------------------- /src/ZServer.API/ServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/ServerOptions.cs -------------------------------------------------------------------------------- /src/ZServer.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/Startup.cs -------------------------------------------------------------------------------- /src/ZServer.API/ZServer.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/ZServer.API.csproj -------------------------------------------------------------------------------- /src/ZServer.API/conf/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/conf/appsettings.json -------------------------------------------------------------------------------- /src/ZServer.API/conf/appsettings.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/conf/appsettings.sample.json -------------------------------------------------------------------------------- /src/ZServer.API/conf/serilog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/conf/serilog.json -------------------------------------------------------------------------------- /src/ZServer.API/conf/zserver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/conf/zserver.json -------------------------------------------------------------------------------- /src/ZServer.API/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/docker-compose.yml -------------------------------------------------------------------------------- /src/ZServer.API/fonts/SourceHanSansSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/fonts/SourceHanSansSC-Regular.ttf -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/shapes/polygon.dbf -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/shapes/polygon.prj -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/shapes/polygon.shp -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/shapes/polygon.shx -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon.sidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/shapes/polygon.sidx -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon_3857.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon_3857.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/shapes/polygon_3857.dbf -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon_3857.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/shapes/polygon_3857.prj -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon_3857.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/shapes/polygon_3857.qmd -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon_3857.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/shapes/polygon_3857.shp -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon_3857.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/shapes/polygon_3857.shx -------------------------------------------------------------------------------- /src/ZServer.API/shapes/polygon_3857.sidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/shapes/polygon_3857.sidx -------------------------------------------------------------------------------- /src/ZServer.API/sld/polygon.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.API/sld/polygon.sld -------------------------------------------------------------------------------- /src/ZServer.API/start.bat: -------------------------------------------------------------------------------- 1 | zapi.exe --standalone true -------------------------------------------------------------------------------- /src/ZServer.API/start.sh: -------------------------------------------------------------------------------- 1 | dotnet zapi.dll --standalone true -------------------------------------------------------------------------------- /src/ZServer.Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Benchmark/Program.cs -------------------------------------------------------------------------------- /src/ZServer.Benchmark/RendererTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Benchmark/RendererTest.cs -------------------------------------------------------------------------------- /src/ZServer.Benchmark/SKPaintCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Benchmark/SKPaintCache.cs -------------------------------------------------------------------------------- /src/ZServer.Benchmark/StreamToArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Benchmark/StreamToArray.cs -------------------------------------------------------------------------------- /src/ZServer.Benchmark/ZServer.Benchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Benchmark/ZServer.Benchmark.csproj -------------------------------------------------------------------------------- /src/ZServer.Benchmark/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Benchmark/appsettings.json -------------------------------------------------------------------------------- /src/ZServer.Benchmark/polygons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Benchmark/polygons.json -------------------------------------------------------------------------------- /src/ZServer.Benchmark/shapes/osmbuildings.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Benchmark/shapes/osmbuildings.dbf -------------------------------------------------------------------------------- /src/ZServer.Benchmark/shapes/osmbuildings.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Benchmark/shapes/osmbuildings.prj -------------------------------------------------------------------------------- /src/ZServer.Benchmark/shapes/osmbuildings.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Benchmark/shapes/osmbuildings.shp -------------------------------------------------------------------------------- /src/ZServer.Benchmark/shapes/osmbuildings.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Benchmark/shapes/osmbuildings.shx -------------------------------------------------------------------------------- /src/ZServer.Benchmark/xiongmao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Benchmark/xiongmao.jpg -------------------------------------------------------------------------------- /src/ZServer.Grains/GeoJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Grains/GeoJsonSerializer.cs -------------------------------------------------------------------------------- /src/ZServer.Grains/RESTFUL/Restful.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Grains/RESTFUL/Restful.cs -------------------------------------------------------------------------------- /src/ZServer.Grains/WMS/WMSGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Grains/WMS/WMSGrain.cs -------------------------------------------------------------------------------- /src/ZServer.Grains/WMTS/WMTSGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Grains/WMTS/WMTSGrain.cs -------------------------------------------------------------------------------- /src/ZServer.Grains/XYZ/XyzGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Grains/XYZ/XyzGrain.cs -------------------------------------------------------------------------------- /src/ZServer.Grains/ZServer.Grains.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Grains/ZServer.Grains.csproj -------------------------------------------------------------------------------- /src/ZServer.Interfaces/Obsolete/ModeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Interfaces/Obsolete/ModeState.cs -------------------------------------------------------------------------------- /src/ZServer.Interfaces/Obsolete/ModeStateUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Interfaces/Obsolete/ModeStateUtilities.cs -------------------------------------------------------------------------------- /src/ZServer.Interfaces/RESTFUL/IRestful.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Interfaces/RESTFUL/IRestful.cs -------------------------------------------------------------------------------- /src/ZServer.Interfaces/ServerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Interfaces/ServerException.cs -------------------------------------------------------------------------------- /src/ZServer.Interfaces/ServerExceptionReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Interfaces/ServerExceptionReport.cs -------------------------------------------------------------------------------- /src/ZServer.Interfaces/WMS/IWMSGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Interfaces/WMS/IWMSGrain.cs -------------------------------------------------------------------------------- /src/ZServer.Interfaces/WMTS/IWMTSGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Interfaces/WMTS/IWMTSGrain.cs -------------------------------------------------------------------------------- /src/ZServer.Interfaces/XYZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Interfaces/XYZ.cs -------------------------------------------------------------------------------- /src/ZServer.Interfaces/XYZ/IXyzGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Interfaces/XYZ/IXyzGrain.cs -------------------------------------------------------------------------------- /src/ZServer.Interfaces/ZServer.Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Interfaces/ZServer.Interfaces.csproj -------------------------------------------------------------------------------- /src/ZServer.Interfaces/ZServerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Interfaces/ZServerResponse.cs -------------------------------------------------------------------------------- /src/ZServer.Interfaces/ZServerResponseFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Interfaces/ZServerResponseFactory.cs -------------------------------------------------------------------------------- /src/ZServer.Silo/OrleansExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Silo/OrleansExtensions.cs -------------------------------------------------------------------------------- /src/ZServer.Silo/ZServer.Silo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Silo/ZServer.Silo.csproj -------------------------------------------------------------------------------- /src/ZServer.SiloHost/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/1.json -------------------------------------------------------------------------------- /src/ZServer.SiloHost/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/108.png -------------------------------------------------------------------------------- /src/ZServer.SiloHost/CleanNpgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/CleanNpgsql.sql -------------------------------------------------------------------------------- /src/ZServer.SiloHost/Extensions/OrleansExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/Extensions/OrleansExtensions.cs -------------------------------------------------------------------------------- /src/ZServer.SiloHost/Npgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/Npgsql.sql -------------------------------------------------------------------------------- /src/ZServer.SiloHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/Program.cs -------------------------------------------------------------------------------- /src/ZServer.SiloHost/ZServer.SiloHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/ZServer.SiloHost.csproj -------------------------------------------------------------------------------- /src/ZServer.SiloHost/conf/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/conf/appsettings.json -------------------------------------------------------------------------------- /src/ZServer.SiloHost/conf/serilog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/conf/serilog.json -------------------------------------------------------------------------------- /src/ZServer.SiloHost/conf/zserver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/conf/zserver.json -------------------------------------------------------------------------------- /src/ZServer.SiloHost/fonts/SourceHanSansSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/fonts/SourceHanSansSC-Regular.ttf -------------------------------------------------------------------------------- /src/ZServer.SiloHost/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/readme.txt -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/shapes/polygon.dbf -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/shapes/polygon.prj -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/shapes/polygon.shp -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/shapes/polygon.shx -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon.sidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/shapes/polygon.sidx -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon_3857.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon_3857.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/shapes/polygon_3857.dbf -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon_3857.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/shapes/polygon_3857.prj -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon_3857.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/shapes/polygon_3857.qmd -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon_3857.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/shapes/polygon_3857.shp -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon_3857.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/shapes/polygon_3857.shx -------------------------------------------------------------------------------- /src/ZServer.SiloHost/shapes/polygon_3857.sidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/shapes/polygon_3857.sidx -------------------------------------------------------------------------------- /src/ZServer.SiloHost/sld/polygon.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.SiloHost/sld/polygon.sld -------------------------------------------------------------------------------- /src/ZServer.Tests/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/108.png -------------------------------------------------------------------------------- /src/ZServer.Tests/ApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/ApiTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/BaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/BaseTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/CSharpExpressionV2Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/CSharpExpressionV2Tests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/CacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/CacheTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/CogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/CogTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/CommonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/CommonTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/CompositeStyleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/CompositeStyleTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/ConvertTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/ConvertTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/CoordinateSystemComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/CoordinateSystemComparerTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/DynamicBuildTestgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/DynamicBuildTestgs.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/ESRI_CS.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/ESRI_CS.xlsx -------------------------------------------------------------------------------- /src/ZServer.Tests/EsriCoordinateSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/EsriCoordinateSystems.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/FeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/FeatureTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/FillStyleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/FillStyleTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/FontManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/FontManagerTest.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/Fonts/2宋体.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/Fonts/2宋体.ttc -------------------------------------------------------------------------------- /src/ZServer.Tests/GDALTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/GDALTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/GeoUtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/GeoUtilitiesTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/GridSetStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/GridSetStoreTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/GridSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/GridSetTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/LayerGroupStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/LayerGroupStoreTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/LayerStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/LayerStoreTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/LineStyleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/LineStyleTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/MapZoneTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/MapZoneTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/MeasureTestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/MeasureTestTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/MemoryCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/MemoryCacheTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/MethodsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/MethodsTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/MurmurHashAlgorithmServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/MurmurHashAlgorithmServiceTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/PostgreSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/PostgreSourceTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/RemoteWmtsSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/RemoteWmtsSourceTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/RenderServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/RenderServiceTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/RendererFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/RendererFactoryTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/ResourceGroupStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/ResourceGroupStoreTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/ScaleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/ScaleTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/ShapeFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/ShapeFileTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/SldFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/SldFilterTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/SocoStoreProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/SocoStoreProviderTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/SortedListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/SortedListTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/SourceStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/SourceStoreTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/SpatialIndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/SpatialIndexTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/StyleGroupStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/StyleGroupStoreTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/StyledLayerDescriptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/StyledLayerDescriptorTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/SymbolStyleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/SymbolStyleTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/TextStyleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/TextStyleTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/TiffTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/TiffTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/TransformTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/TransformTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/UriTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/UriTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/UtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/UtilityTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/WebApplicationFactoryFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/WebApplicationFactoryFixture.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/WmtsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/WmtsTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/XmlResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/XmlResultTests.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/XmlToLinqExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/XmlToLinqExpression.cs -------------------------------------------------------------------------------- /src/ZServer.Tests/ZServer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/ZServer.Tests.csproj -------------------------------------------------------------------------------- /src/ZServer.Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/appsettings.json -------------------------------------------------------------------------------- /src/ZServer.Tests/images/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/images/108.png -------------------------------------------------------------------------------- /src/ZServer.Tests/images/colorblocks1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/images/colorblocks1.png -------------------------------------------------------------------------------- /src/ZServer.Tests/images/tianditu_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/images/tianditu_c.png -------------------------------------------------------------------------------- /src/ZServer.Tests/images/tianditu_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/images/tianditu_w.png -------------------------------------------------------------------------------- /src/ZServer.Tests/images/world_raster_mod.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/images/world_raster_mod.tif -------------------------------------------------------------------------------- /src/ZServer.Tests/layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/layers.json -------------------------------------------------------------------------------- /src/ZServer.Tests/multiLine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/multiLine.json -------------------------------------------------------------------------------- /src/ZServer.Tests/polygons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/polygons.json -------------------------------------------------------------------------------- /src/ZServer.Tests/projs/4508.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/projs/4508.prj -------------------------------------------------------------------------------- /src/ZServer.Tests/projs/4546.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/projs/4546.prj -------------------------------------------------------------------------------- /src/ZServer.Tests/projs/4548.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/projs/4548.prj -------------------------------------------------------------------------------- /src/ZServer.Tests/projs/4549.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/projs/4549.prj -------------------------------------------------------------------------------- /src/ZServer.Tests/projs/4550.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/projs/4550.prj -------------------------------------------------------------------------------- /src/ZServer.Tests/runtimes/osx-x64/native/gdal_wrap.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/runtimes/osx-x64/native/gdal_wrap.dylib -------------------------------------------------------------------------------- /src/ZServer.Tests/runtimes/osx-x64/native/gdalconst_wrap.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/runtimes/osx-x64/native/gdalconst_wrap.dylib -------------------------------------------------------------------------------- /src/ZServer.Tests/runtimes/osx-x64/native/ogr_wrap.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/runtimes/osx-x64/native/ogr_wrap.dylib -------------------------------------------------------------------------------- /src/ZServer.Tests/runtimes/osx-x64/native/osr_wrap.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/runtimes/osx-x64/native/osr_wrap.dylib -------------------------------------------------------------------------------- /src/ZServer.Tests/se.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/se.xml -------------------------------------------------------------------------------- /src/ZServer.Tests/shapes/osmbuildings.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/shapes/osmbuildings.dbf -------------------------------------------------------------------------------- /src/ZServer.Tests/shapes/osmbuildings.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/shapes/osmbuildings.prj -------------------------------------------------------------------------------- /src/ZServer.Tests/shapes/osmbuildings.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/shapes/osmbuildings.shp -------------------------------------------------------------------------------- /src/ZServer.Tests/shapes/osmbuildings.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/shapes/osmbuildings.shx -------------------------------------------------------------------------------- /src/ZServer.Tests/sld.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/sld.xml -------------------------------------------------------------------------------- /src/ZServer.Tests/sld/Add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/sld/Add.xml -------------------------------------------------------------------------------- /src/ZServer.Tests/sld/PropertyIsEqualTo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/sld/PropertyIsEqualTo.xml -------------------------------------------------------------------------------- /src/ZServer.Tests/sld/polygon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer.Tests/sld/polygon.xml -------------------------------------------------------------------------------- /src/ZServer/Extensions/ConfigurationSectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Extensions/ConfigurationSectionExtensions.cs -------------------------------------------------------------------------------- /src/ZServer/PreloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/PreloadService.cs -------------------------------------------------------------------------------- /src/ZServer/RefreshConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/RefreshConfigService.cs -------------------------------------------------------------------------------- /src/ZServer/ServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/ServerOptions.cs -------------------------------------------------------------------------------- /src/ZServer/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/ZServer/Store/FileJsonStoreProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/FileJsonStoreProvider.cs -------------------------------------------------------------------------------- /src/ZServer/Store/GridSetStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/GridSetStore.cs -------------------------------------------------------------------------------- /src/ZServer/Store/IJsonStoreProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/IJsonStoreProvider.cs -------------------------------------------------------------------------------- /src/ZServer/Store/ILayerGroupStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/ILayerGroupStore.cs -------------------------------------------------------------------------------- /src/ZServer/Store/ILayerStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/ILayerStore.cs -------------------------------------------------------------------------------- /src/ZServer/Store/IResourceGroupStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/IResourceGroupStore.cs -------------------------------------------------------------------------------- /src/ZServer/Store/ISldStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/ISldStore.cs -------------------------------------------------------------------------------- /src/ZServer/Store/ISourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/ISourceStore.cs -------------------------------------------------------------------------------- /src/ZServer/Store/IStyleGroupStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/IStyleGroupStore.cs -------------------------------------------------------------------------------- /src/ZServer/Store/LayerGroupStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/LayerGroupStore.cs -------------------------------------------------------------------------------- /src/ZServer/Store/LayerQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/LayerQueryService.cs -------------------------------------------------------------------------------- /src/ZServer/Store/LayerStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/LayerStore.cs -------------------------------------------------------------------------------- /src/ZServer/Store/ResourceGroupStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/ResourceGroupStore.cs -------------------------------------------------------------------------------- /src/ZServer/Store/SldStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/SldStore.cs -------------------------------------------------------------------------------- /src/ZServer/Store/SocoStoreProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/SocoStoreProvider.cs -------------------------------------------------------------------------------- /src/ZServer/Store/SourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/SourceStore.cs -------------------------------------------------------------------------------- /src/ZServer/Store/StoreConfigOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/StoreConfigOptions.cs -------------------------------------------------------------------------------- /src/ZServer/Store/StyleGroupStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/Store/StyleGroupStore.cs -------------------------------------------------------------------------------- /src/ZServer/ZServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/ZServer.csproj -------------------------------------------------------------------------------- /src/ZServer/ZServerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/ZServerBuilder.cs -------------------------------------------------------------------------------- /src/ZServer/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/src/ZServer/location.svg -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/start.sh -------------------------------------------------------------------------------- /version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/version.props -------------------------------------------------------------------------------- /workitems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmaplab/zserver/HEAD/workitems.md --------------------------------------------------------------------------------