├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── ci-upgrade.yaml ├── dpkg-versions.yaml ├── ghci.yaml ├── monthly-release ├── publish.yaml ├── renovate.json5 └── workflows │ ├── main.yaml │ ├── monthly-release.yaml │ ├── pull-request-automation.yaml │ └── rebuild.yaml ├── .gitignore ├── .hadolint.yaml ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc.yaml ├── BREAKING-CHANGES.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── build.gradle ├── checkstyle_checks.xml ├── checkstyle_suppressions.xml ├── ci ├── check-fonts ├── requirements.txt └── validate-container ├── core ├── .dockerignore ├── Dockerfile ├── build.gradle ├── docker │ └── usr │ │ ├── local │ │ └── tomcat │ │ │ ├── bin │ │ │ ├── docker-pre-stop-print │ │ │ ├── docker-start-print │ │ │ ├── docker-start-watch │ │ │ └── setenv.sh │ │ │ ├── conf │ │ │ ├── logback-access.xml │ │ │ ├── logback-custom.xml │ │ │ └── logback.xml │ │ │ └── webapps │ │ │ └── ROOT │ │ │ └── WEB-INF │ │ │ └── lib │ │ │ └── Cadastra.jar │ │ └── share │ │ └── fonts │ │ └── truetype │ │ ├── font-awesome-5 │ │ ├── fa-brands-400.ttf │ │ ├── fa-regular-400.ttf │ │ └── fa-solid-900.ttf │ │ └── font-awesome-6 │ │ ├── fa-brands-400.ttf │ │ ├── fa-regular-400.ttf │ │ ├── fa-solid-900.ttf │ │ └── fa-v4compatibility.ttf ├── extraConfigFor │ ├── acceptanceTests │ │ └── mapfish-spring-application-context-override.xml │ └── docs │ │ └── mapfish-spring-application-context-override.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── mapfish │ │ │ └── print │ │ │ ├── ApplicationContextProvider.java │ │ │ ├── Constants.java │ │ │ ├── ExceptionUtils.java │ │ │ ├── ExtraPropertyException.java │ │ │ ├── FileUtils.java │ │ │ ├── FloatingPointUtil.java │ │ │ ├── FontTools.java │ │ │ ├── IllegalFileAccessException.java │ │ │ ├── ImageIOPluginScanner.java │ │ │ ├── ImageUtils.java │ │ │ ├── MapPrinter.java │ │ │ ├── MapPrinterFactory.java │ │ │ ├── MissingPropertyException.java │ │ │ ├── OptionalUtils.java │ │ │ ├── PrintException.java │ │ │ ├── RegexpUtil.java │ │ │ ├── SetsUtils.java │ │ │ ├── StatsUtils.java │ │ │ ├── SvgUtil.java │ │ │ ├── URIUtils.java │ │ │ ├── VersionInfo.java │ │ │ ├── WaitDB.java │ │ │ ├── attribute │ │ │ ├── Attribute.java │ │ │ ├── BooleanAttribute.java │ │ │ ├── DataSourceAttribute.java │ │ │ ├── FeaturesAttribute.java │ │ │ ├── FloatAttribute.java │ │ │ ├── HttpRequestHeadersAttribute.java │ │ │ ├── IntegerAttribute.java │ │ │ ├── InternalAttribute.java │ │ │ ├── JsonDatasourceAttribute.java │ │ │ ├── LegendAttribute.java │ │ │ ├── NorthArrowAttribute.java │ │ │ ├── PrimitiveAttribute.java │ │ │ ├── ReflectiveAttribute.java │ │ │ ├── ScalebarAttribute.java │ │ │ ├── StringArrayAttribute.java │ │ │ ├── StringAttribute.java │ │ │ ├── StyleAttribute.java │ │ │ ├── TableAttribute.java │ │ │ ├── map │ │ │ │ ├── AreaOfInterest.java │ │ │ │ ├── BBoxMapBounds.java │ │ │ │ ├── CenterScaleMapBounds.java │ │ │ │ ├── GenericMapAttribute.java │ │ │ │ ├── MapAttribute.java │ │ │ │ ├── MapBounds.java │ │ │ │ ├── MapLayer.java │ │ │ │ ├── MapfishMapContext.java │ │ │ │ ├── OverviewMapAttribute.java │ │ │ │ ├── PagingAttribute.java │ │ │ │ ├── StaticLayersAttribute.java │ │ │ │ ├── ZoomLevelSnapStrategy.java │ │ │ │ ├── ZoomLevels.java │ │ │ │ ├── ZoomToFeatures.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── cli │ │ │ ├── CliDefinition.java │ │ │ ├── CliHelpDefinition.java │ │ │ ├── CliServletContext.java │ │ │ ├── Main.java │ │ │ └── package-info.java │ │ │ ├── config │ │ │ ├── Configuration.java │ │ │ ├── ConfigurationException.java │ │ │ ├── ConfigurationFactory.java │ │ │ ├── ConfigurationObject.java │ │ │ ├── CustomFontLoader.java │ │ │ ├── HasConfiguration.java │ │ │ ├── MapfishPrintConstructor.java │ │ │ ├── PDFConfig.java │ │ │ ├── ReportStorage.java │ │ │ ├── S3ReportStorage.java │ │ │ ├── SmtpConfig.java │ │ │ ├── Template.java │ │ │ ├── WorkingDirectories.java │ │ │ ├── access │ │ │ │ ├── AccessAssertion.java │ │ │ │ ├── AccessAssertionPersister.java │ │ │ │ ├── AlwaysAllowAssertion.java │ │ │ │ ├── AndAccessAssertion.java │ │ │ │ ├── RoleAccessAssertion.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── http │ │ │ ├── AbstractMfClientHttpRequestFactoryWrapper.java │ │ │ ├── CertificateStore.java │ │ │ ├── ConfigFileResolvingHttpRequestFactory.java │ │ │ ├── ConfigFileResolvingRequest.java │ │ │ ├── ConfigurableRequest.java │ │ │ ├── ErrorResponseClientHttpResponse.java │ │ │ ├── HttpCredential.java │ │ │ ├── HttpProxy.java │ │ │ ├── HttpRequestFetcher.java │ │ │ ├── MfClientHttpRequestFactory.java │ │ │ ├── MfClientHttpRequestFactoryImpl.java │ │ │ ├── MfCredentialsProvider.java │ │ │ ├── MfRoutePlanner.java │ │ │ ├── MfSSLSocketFactory.java │ │ │ ├── UserAgentCreator.java │ │ │ ├── Utils.java │ │ │ └── package-info.java │ │ │ ├── jasperreports │ │ │ ├── HumanAlphaSerie.java │ │ │ └── package-info.java │ │ │ ├── map │ │ │ ├── AbstractLayerParams.java │ │ │ ├── CustomEPSGCodes.java │ │ │ ├── DistanceUnit.java │ │ │ ├── MapLayerFactoryPlugin.java │ │ │ ├── Scale.java │ │ │ ├── geotools │ │ │ │ ├── AbstractFeatureSourceLayer.java │ │ │ │ ├── AbstractFeatureSourceLayerPlugin.java │ │ │ │ ├── AbstractGeotoolsLayer.java │ │ │ │ ├── AbstractGridCoverageLayerPlugin.java │ │ │ │ ├── AbstractVectorLayerParam.java │ │ │ │ ├── CachingUrihandler.java │ │ │ │ ├── FeatureLayer.java │ │ │ │ ├── FeatureSourceSupplier.java │ │ │ │ ├── FeaturesParser.java │ │ │ │ ├── GeoJsonLayer.java │ │ │ │ ├── GeotiffLayer.java │ │ │ │ ├── GmlLayer.java │ │ │ │ ├── OpacitySettingStyleVisitor.java │ │ │ │ ├── StyleSupplier.java │ │ │ │ ├── function │ │ │ │ │ ├── FunctionFactory.java │ │ │ │ │ ├── MultiplicationFunction.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── grid │ │ │ │ │ ├── FontStyle.java │ │ │ │ │ ├── GridFontParam.java │ │ │ │ │ ├── GridLabel.java │ │ │ │ │ ├── GridLabelFormat.java │ │ │ │ │ ├── GridLayer.java │ │ │ │ │ ├── GridLayerPlugin.java │ │ │ │ │ ├── GridParam.java │ │ │ │ │ ├── GridType.java │ │ │ │ │ ├── GridUtils.java │ │ │ │ │ ├── LabelPositionCollector.java │ │ │ │ │ ├── LineGridStrategy.java │ │ │ │ │ ├── LineGridStyle.java │ │ │ │ │ ├── LinearCoordinateSequence.java │ │ │ │ │ ├── PointGridStrategy.java │ │ │ │ │ ├── PointGridStyle.java │ │ │ │ │ ├── RotationQuadrant.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ ├── image │ │ │ │ ├── AbstractSingleImageLayer.java │ │ │ │ ├── ImageLayer.java │ │ │ │ ├── package-info.java │ │ │ │ └── wms │ │ │ │ │ ├── WmsLayer.java │ │ │ │ │ ├── WmsLayerFactoryPlugin.java │ │ │ │ │ ├── WmsLayerParam.java │ │ │ │ │ ├── WmsUtilities.java │ │ │ │ │ ├── WmsVersion.java │ │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── style │ │ │ │ ├── ParserPluginUtils.java │ │ │ │ ├── SLDParserPlugin.java │ │ │ │ ├── StyleParser.java │ │ │ │ ├── StyleParserPlugin.java │ │ │ │ ├── json │ │ │ │ │ ├── ColorParser.java │ │ │ │ │ ├── JsonStyleParserHelper.java │ │ │ │ │ ├── MapfishJsonStyleVersion1.java │ │ │ │ │ ├── MapfishJsonStyleVersion2.java │ │ │ │ │ ├── MapfishStyleParserPlugin.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ └── tiled │ │ │ │ ├── AbstractTiledLayer.java │ │ │ │ ├── AbstractTiledLayerParams.java │ │ │ │ ├── AbstractWMXLayerParams.java │ │ │ │ ├── CoverageTask.java │ │ │ │ ├── TileInformation.java │ │ │ │ ├── TilePreparationInfo.java │ │ │ │ ├── TilePreparationTask.java │ │ │ │ ├── osm │ │ │ │ ├── OsmLayer.java │ │ │ │ ├── OsmLayerParam.java │ │ │ │ ├── OsmLayerParserPlugin.java │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ ├── wms │ │ │ │ ├── TiledWmsLayer.java │ │ │ │ ├── TiledWmsLayerParam.java │ │ │ │ ├── TiledWmsLayerParserPlugin.java │ │ │ │ └── package-info.java │ │ │ │ └── wmts │ │ │ │ ├── Matrix.java │ │ │ │ ├── RequestEncoding.java │ │ │ │ ├── WMTSLayer.java │ │ │ │ ├── WMTSLayerParam.java │ │ │ │ ├── WmtsLayerParserPlugin.java │ │ │ │ └── package-info.java │ │ │ ├── metrics │ │ │ ├── HealthCheckRegistryContextListener.java │ │ │ ├── HealthCheckingRegistry.java │ │ │ ├── JmxMetricsReporter.java │ │ │ ├── JobQueueHealthCheck.java │ │ │ ├── JvmMetricsConfigurator.java │ │ │ ├── LoggingMetricsConfigurator.java │ │ │ ├── MapfishPrintInstrumentedFilterContextListener.java │ │ │ ├── MetricsNameStrategyFactory.java │ │ │ ├── MetricsRegistryContextListener.java │ │ │ ├── UnhealthyCountersHealthCheck.java │ │ │ └── package-info.java │ │ │ ├── output │ │ │ ├── AbstractJasperReportOutputFormat.java │ │ │ ├── AttributeParsingException.java │ │ │ ├── JasperReportExcelOutputFormat.java │ │ │ ├── JasperReportImageOutputFormat.java │ │ │ ├── JasperReportPDFOutputFormat.java │ │ │ ├── JasperReportSvgOutputFormat.java │ │ │ ├── MapExportOutputFormat.java │ │ │ ├── MapfishPrintRepositoryService.java │ │ │ ├── OutputFormat.java │ │ │ ├── ResourceBundleClassLoader.java │ │ │ ├── Values.java │ │ │ ├── ValuesLogger.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── parser │ │ │ ├── CanSatisfyOneOf.java │ │ │ ├── HasDefaultValue.java │ │ │ ├── MapfishParser.java │ │ │ ├── OneOf.java │ │ │ ├── OneOfTracker.java │ │ │ ├── ParserUtils.java │ │ │ ├── Requires.java │ │ │ ├── RequiresTracker.java │ │ │ └── package-info.java │ │ │ ├── processor │ │ │ ├── AbstractProcessor.java │ │ │ ├── CustomDependencies.java │ │ │ ├── ExecutionStats.java │ │ │ ├── InputOutputValue.java │ │ │ ├── InputValue.java │ │ │ ├── InternalValue.java │ │ │ ├── OutputValue.java │ │ │ ├── PdfConfigurationProcessor.java │ │ │ ├── Processor.java │ │ │ ├── ProcessorDependency.java │ │ │ ├── ProcessorDependencyGraph.java │ │ │ ├── ProcessorDependencyGraphFactory.java │ │ │ ├── ProcessorExecutionContext.java │ │ │ ├── ProcessorGraphNode.java │ │ │ ├── ProcessorUtils.java │ │ │ ├── ProvideAttributes.java │ │ │ ├── RequireAttributes.java │ │ │ ├── http │ │ │ │ ├── AbstractClientHttpRequestFactoryProcessor.java │ │ │ │ ├── AddHeadersProcessor.java │ │ │ │ ├── ClientHttpFactoryProcessorParam.java │ │ │ │ ├── CompositeClientHttpRequestFactoryProcessor.java │ │ │ │ ├── ForwardHeadersProcessor.java │ │ │ │ ├── HttpProcessor.java │ │ │ │ ├── MapUriProcessor.java │ │ │ │ ├── MfClientHttpRequestFactoryProvider.java │ │ │ │ ├── RestrictUrisProcessor.java │ │ │ │ ├── UseHttpForHttpsProcessor.java │ │ │ │ ├── matcher │ │ │ │ │ ├── AbstractMatcher.java │ │ │ │ │ ├── AcceptAllMatcher.java │ │ │ │ │ ├── AddressHostMatcher.java │ │ │ │ │ ├── DnsHostMatcher.java │ │ │ │ │ ├── HostMatcher.java │ │ │ │ │ ├── HostnameMatcher.java │ │ │ │ │ ├── InetHostMatcher.java │ │ │ │ │ ├── LocalHostMatcher.java │ │ │ │ │ ├── MatchInfo.java │ │ │ │ │ ├── URIMatcher.java │ │ │ │ │ ├── UriMatchers.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ ├── jasper │ │ │ │ ├── DataSourceProcessor.java │ │ │ │ ├── DateFormatProcessor.java │ │ │ │ ├── HttpImageResolver.java │ │ │ │ ├── ImagesSubReport.java │ │ │ │ ├── JasperReportBuilder.java │ │ │ │ ├── LegendProcessor.java │ │ │ │ ├── MergeDataSourceProcessor.java │ │ │ │ ├── TableColumnConverter.java │ │ │ │ ├── TableDataSource.java │ │ │ │ ├── TableProcessor.java │ │ │ │ └── package-info.java │ │ │ ├── map │ │ │ │ ├── AddStaticLayersProcessor.java │ │ │ │ ├── ConstantClipGraphics2D.java │ │ │ │ ├── CreateMapPagesProcessor.java │ │ │ │ ├── CreateMapProcessor.java │ │ │ │ ├── CreateNorthArrowProcessor.java │ │ │ │ ├── CreateOverviewMapProcessor.java │ │ │ │ ├── ImageWriter.java │ │ │ │ ├── NorthArrowGraphic.java │ │ │ │ ├── SetFeaturesProcessor.java │ │ │ │ ├── SetStyleProcessor.java │ │ │ │ ├── SetTiledWmsProcessor.java │ │ │ │ ├── SetWmsCustomParamProcessor.java │ │ │ │ ├── SvgFileGenerator.java │ │ │ │ ├── package-info.java │ │ │ │ └── scalebar │ │ │ │ │ ├── BarScalebarDrawer.java │ │ │ │ │ ├── BarSubScalebarDrawer.java │ │ │ │ │ ├── CreateScalebarProcessor.java │ │ │ │ │ ├── HorizontalAlign.java │ │ │ │ │ ├── Label.java │ │ │ │ │ ├── LineScalebarDrawer.java │ │ │ │ │ ├── Orientation.java │ │ │ │ │ ├── ScaleBarRenderSettings.java │ │ │ │ │ ├── ScalebarDrawer.java │ │ │ │ │ ├── ScalebarGraphic.java │ │ │ │ │ ├── Type.java │ │ │ │ │ ├── VerticalAlign.java │ │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── servlet │ │ │ ├── BaseMapServlet.java │ │ │ ├── BooleanHandleReportLoadResult.java │ │ │ ├── ConfigBasedServletInfo.java │ │ │ ├── HandleReportLoadResult.java │ │ │ ├── MapPrinterServlet.java │ │ │ ├── NoOpAuthenticationManager.java │ │ │ ├── NoSuchAppException.java │ │ │ ├── RequestSizeFilter.java │ │ │ ├── ServletInfo.java │ │ │ ├── ServletMapPrinterFactory.java │ │ │ ├── VoidHandleReportLoadResult.java │ │ │ ├── fileloader │ │ │ │ ├── AbstractFileConfigFileLoader.java │ │ │ │ ├── ClasspathConfigFileLoader.java │ │ │ │ ├── ConfigFileLoaderManager.java │ │ │ │ ├── ConfigFileLoaderPlugin.java │ │ │ │ ├── FileConfigFileLoader.java │ │ │ │ ├── ServletConfigFileLoader.java │ │ │ │ └── package-info.java │ │ │ ├── job │ │ │ │ ├── Accounting.java │ │ │ │ ├── HibernateAccounting.java │ │ │ │ ├── HibernateAccountingEntry.java │ │ │ │ ├── JobManager.java │ │ │ │ ├── JobQueue.java │ │ │ │ ├── NoSuchReferenceException.java │ │ │ │ ├── PrintJob.java │ │ │ │ ├── PrintJobEntry.java │ │ │ │ ├── PrintJobResult.java │ │ │ │ ├── PrintJobStatus.java │ │ │ │ ├── impl │ │ │ │ │ ├── FilePrintJob.java │ │ │ │ │ ├── PrintJobEntryImpl.java │ │ │ │ │ ├── PrintJobResultImpl.java │ │ │ │ │ ├── PrintJobStatusImpl.java │ │ │ │ │ ├── RegistryJobQueue.java │ │ │ │ │ ├── SubmittedPrintJob.java │ │ │ │ │ ├── ThreadPoolJobManager.java │ │ │ │ │ ├── hibernate │ │ │ │ │ │ ├── AccessAssertionUserType.java │ │ │ │ │ │ ├── HibernateJobQueue.java │ │ │ │ │ │ ├── HibernatePrintJob.java │ │ │ │ │ │ ├── HibernateReportLoader.java │ │ │ │ │ │ ├── PJsonObjectUserType.java │ │ │ │ │ │ ├── PrintJobDao.java │ │ │ │ │ │ ├── PrintJobResultExtImpl.java │ │ │ │ │ │ ├── PrintJobStatusExtImpl.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── loader │ │ │ │ │ ├── FileReportLoader.java │ │ │ │ │ ├── ReportLoader.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── registry │ │ │ │ ├── BasicRegistry.java │ │ │ │ ├── Registry.java │ │ │ │ └── package-info.java │ │ │ ├── test │ │ │ └── util │ │ │ │ ├── AttributeTesting.java │ │ │ │ ├── ImageSimilarity.java │ │ │ │ └── package-info.java │ │ │ ├── url │ │ │ ├── data │ │ │ │ ├── DataUrlConnection.java │ │ │ │ ├── Handler.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ └── wrapper │ │ │ ├── ObjectMissingException.java │ │ │ ├── PAbstractObject.java │ │ │ ├── PArray.java │ │ │ ├── PElement.java │ │ │ ├── PJoinedArray.java │ │ │ ├── PObject.java │ │ │ ├── json │ │ │ ├── InvalidJsonValueException.java │ │ │ ├── PJsonArray.java │ │ │ ├── PJsonObject.java │ │ │ └── package-info.java │ │ │ ├── multi │ │ │ ├── PMultiObject.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── yaml │ │ │ ├── PYamlArray.java │ │ │ ├── PYamlObject.java │ │ │ └── package-info.java │ ├── resources │ │ ├── META-INF │ │ │ └── services │ │ │ │ ├── org.geotools.api.referencing.crs.CRSAuthorityFactory │ │ │ │ └── org.geotools.filter.FunctionFactory │ │ ├── default_error.png │ │ ├── epsg.properties │ │ ├── logback.xml │ │ ├── mapfish-cli-spring-application-context.xml │ │ ├── mapfish-spring-access-assertions.xml │ │ ├── mapfish-spring-application-context-override-db.xml │ │ ├── mapfish-spring-application-context-override.xml │ │ ├── mapfish-spring-application-context.xml │ │ ├── mapfish-spring-attributes.xml │ │ ├── mapfish-spring-config-file-loaders.xml │ │ ├── mapfish-spring-config-objects.xml │ │ ├── mapfish-spring-config-output-formats.xml │ │ ├── mapfish-spring-custom-fonts.xml │ │ ├── mapfish-spring-hibernate.xml │ │ ├── mapfish-spring-layer-parser.xml │ │ ├── mapfish-spring-named-styles.xml │ │ ├── mapfish-spring-processors.xml │ │ ├── mapfish-spring-security.xml │ │ ├── mapfish-spring-style-parsers.xml │ │ ├── mapfish-spring.properties │ │ ├── net │ │ │ └── opengis │ │ │ │ └── schemas │ │ │ │ └── wfs │ │ │ │ ├── 1.0.0 │ │ │ │ ├── OGC-exception.xsd │ │ │ │ ├── WFS-basic.xsd │ │ │ │ ├── WFS-capabilities.xsd │ │ │ │ ├── WFS-transaction.xsd │ │ │ │ └── wfs.xsd │ │ │ │ ├── 1.1.0 │ │ │ │ └── wfs.xsd │ │ │ │ └── 2.0 │ │ │ │ └── wfs.xsd │ │ ├── org │ │ │ └── mapfish │ │ │ │ └── print │ │ │ │ ├── map │ │ │ │ └── renderers │ │ │ │ │ └── svgZoomOut.xsl │ │ │ │ ├── processor │ │ │ │ ├── jasper │ │ │ │ │ └── dynamic-table-default.jrxml │ │ │ │ └── map │ │ │ │ │ ├── License.md │ │ │ │ │ └── NorthArrow_10.svg │ │ │ │ └── version.properties │ │ ├── shell-default-log.xml │ │ ├── shell-info-log.xml │ │ ├── shell-quiet-log.xml │ │ └── shell-verbose-log.xml │ └── webapp │ │ ├── WEB-INF │ │ ├── classes │ │ │ └── logback.xml │ │ ├── mapfish-print-printer-factory.xml │ │ ├── mapfish-print-servlet.xml │ │ └── web.xml │ │ ├── favicon.ico │ │ ├── index.html │ │ └── mapfish_transparent.png │ ├── scripts │ ├── print │ └── print.bat │ └── test │ ├── java │ └── org │ │ └── mapfish │ │ └── print │ │ ├── AbstractMapfishSpringTest.java │ │ ├── StatsUtilsTest.java │ │ ├── TestHttpClientFactory.java │ │ ├── URIUtilsTest.java │ │ ├── attribute │ │ ├── AbstractAttributeTest.java │ │ ├── AllRegisteredReflectiveAttributeValidationTest.java │ │ ├── BooleanAttributeTest.java │ │ ├── DataSourceAttributeTest.java │ │ ├── FeaturesAttributeTest.java │ │ ├── FloatAttributeTest.java │ │ ├── HttpRequestHeadersAttributeTest.java │ │ ├── IntegerAttributeTest.java │ │ ├── JsonDatasourceAttributeTest.java │ │ ├── LegendAttributeTest.java │ │ ├── ReflectiveAttributeTest.java │ │ ├── ScalebarAttributeTest.java │ │ ├── StringArrayAttributeTest.java │ │ ├── StringAttributeTest.java │ │ ├── StyleAttributeTest.java │ │ ├── TableAttributeTest.java │ │ └── map │ │ │ ├── BBoxMapBoundsTest.java │ │ │ ├── BasicMapAttributeTest.java │ │ │ ├── CenterScaleMapBoundsTest.java │ │ │ ├── GenericMapAttributeTest.java │ │ │ ├── MapAttributeTest.java │ │ │ ├── OverviewMapAttributeTest.java │ │ │ ├── ScaleAdjustmentAccuracyTest.java │ │ │ ├── TestMapAttribute.java │ │ │ └── ZoomLevelsTest.java │ │ ├── cli │ │ └── MainTest.java │ │ ├── config │ │ ├── AttributeWithConfigurationInjection.java │ │ ├── AttributeWithSpringInjection.java │ │ ├── ConfigurationFactoryAllConfigObjectMustBePrototypeTest.java │ │ ├── ConfigurationFactoryTest.java │ │ ├── ConfigurationTest.java │ │ ├── CustomFontLoaderTest.java │ │ ├── ProcessorWithConfigurationInjection.java │ │ ├── ProcessorWithSpringInjection.java │ │ ├── WorkingDirectoriesTest.java │ │ ├── access │ │ │ ├── AccessAssertionPersisterTest.java │ │ │ ├── AccessAssertionTestUtil.java │ │ │ ├── AlwaysAllowAssertionTest.java │ │ │ ├── AndAccessAssertionTest.java │ │ │ ├── RoleAccessAssertionTest.java │ │ │ └── package-info.java │ │ └── package-info.java │ │ ├── http │ │ ├── ConfigFileResolvingHttpRequestFactoryTest.java │ │ ├── ConfigFileResolvingRequestTest.java │ │ ├── HttpConfigurationTest.java │ │ ├── HttpCredentialTest.java │ │ ├── HttpProxyTest.java │ │ └── MfClientHttpRequestFactoryImplTest.java │ │ ├── map │ │ ├── DistanceUnitTest.java │ │ ├── ScaleTest.java │ │ ├── geotools │ │ │ ├── FeaturesParserTest.java │ │ │ ├── GeoJsonLayerTest.java │ │ │ ├── GeotiffLayerFactoryPluginTest.java │ │ │ └── grid │ │ │ │ ├── GridUtilsTest.java │ │ │ │ ├── LineGridStrategyTest.java │ │ │ │ └── PointGridStrategyTest.java │ │ ├── image │ │ │ ├── AbstractSingleImageLayerTest.java │ │ │ └── wms │ │ │ │ └── WmsUtilitiesTest.java │ │ ├── style │ │ │ ├── FileSLDParserPluginTest.java │ │ │ ├── ParserPluginUtilsTest.java │ │ │ ├── URLSLDParserPluginTest.java │ │ │ └── json │ │ │ │ ├── ColorParserTest.java │ │ │ │ ├── JsonStyleParserHelperTest.java │ │ │ │ ├── MapfishJsonFileResolverTest.java │ │ │ │ ├── MapfishJsonStyleVersion2Test.java │ │ │ │ └── MapfishStyleParserPluginTest.java │ │ └── tiled │ │ │ ├── AbstractWMXLayerParamsTest.java │ │ │ ├── SingleTileLoaderTaskTest.java │ │ │ ├── osm │ │ │ ├── OsmLayerParamTest.java │ │ │ └── OsmLayerTest.java │ │ │ └── wmts │ │ │ ├── WMTSLayerParamTest.java │ │ │ └── WMTSLayerTest.java │ │ ├── metrics │ │ ├── JobQueueHealthCheckTest.java │ │ └── UnhealthyCountersHealthCheckTest.java │ │ ├── output │ │ ├── AbstractJasperReportOutputFormatTest.java │ │ ├── JasperReportOutputFormatSimpleMapTest.java │ │ ├── JasperReportPDFOutputFormatTest.java │ │ ├── JasperReportSvgOutputFormatTest.java │ │ └── ValuesTest.java │ │ ├── parser │ │ └── MapfishParserTest.java │ │ ├── processor │ │ ├── AbstractProcessorTest.java │ │ ├── PdfConfigurationProcessorTest.java │ │ ├── ProcessorDependencyGraphFactoryTest.java │ │ ├── ProcessorDependencyGraphTest.java │ │ ├── ProcessorGraphNodeTest.java │ │ ├── SetStyleProcessorTest.java │ │ ├── http │ │ │ ├── AbstractHttpProcessorTest.java │ │ │ ├── AddHeadersProcessorTest.java │ │ │ ├── CompositeClientHttpRequestFactoryProcessorTest.java │ │ │ ├── ForwardHeadersProcessorTest.java │ │ │ ├── MapUriBug228ProcessorTest.java │ │ │ ├── MapUriProcessorTest.java │ │ │ ├── RestrictUrisProcessorTest.java │ │ │ ├── UseHttpForHttpsProcessorTest.java │ │ │ └── matcher │ │ │ │ ├── AcceptAllMatcherTest.java │ │ │ │ ├── AddressHostMatcherTest.java │ │ │ │ ├── DnsHostMatcherTest.java │ │ │ │ ├── HostnameMatcherTest.java │ │ │ │ ├── LocalHostMatcherTest.java │ │ │ │ └── MatcherTestUtils.java │ │ ├── jasper │ │ │ ├── DataSourceProcessorTest.java │ │ │ ├── DateFormatProcessorTest.java │ │ │ ├── HttpImageResolverTest.java │ │ │ ├── IconTaskTest.java │ │ │ ├── LegendProcessorTest.java │ │ │ ├── MapSubReportTest.java │ │ │ ├── MergeDataSourceProcessorIntegrationTest.java │ │ │ ├── MergeDataSourceProcessorTest.java │ │ │ └── TableProcessorTest.java │ │ └── map │ │ │ ├── AddBackgroundLayersTest.java │ │ │ ├── AddOverlayLayersTest.java │ │ │ ├── CreateMapPagesProcessorTest.java │ │ │ ├── CreateMapPagesProcessorZoomToFeatureTest.java │ │ │ ├── CreateMapProcessorAoiForBoundsTest.java │ │ │ ├── CreateMapProcessorAoiTest.java │ │ │ ├── CreateMapProcessorCenterGeoJsonZoomToExtentFlexibleScaleTest.java │ │ │ ├── CreateMapProcessorCenterGeoJsonZoomToExtentMinScaleTest.java │ │ │ ├── CreateMapProcessorCenterGeoJsonZoomToExtentTest.java │ │ │ ├── CreateMapProcessorCenterGeoJsonZoomToTest.java │ │ │ ├── CreateMapProcessorCenterGeojsonEmptyCollection.java │ │ │ ├── CreateMapProcessorCenterGeojsonJsonStyleHighDpi.java │ │ │ ├── CreateMapProcessorCenterGeojsonJsonStyleV1.java │ │ │ ├── CreateMapProcessorCenterWMSRotationSmallTilesTest.java │ │ │ ├── CreateMapProcessorFixedScaleAndCenterWMTSRestTest.java │ │ │ ├── CreateMapProcessorFixedScaleAndCenterWMTSRotationTest.java │ │ │ ├── CreateMapProcessorFixedScaleAndCenterWMTSTest.java │ │ │ ├── CreateMapProcessorFixedScaleBBoxGeoJsonTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterGridFixedNumlinesPointTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterGridFixedNumlinesTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterGridFixedSpacingPointTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterGridSpacingTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterOsmDpiTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterOsmRotationTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterOsmTest.java │ │ │ ├── CreateMapProcessorFlexibleScaleAndCenterGeoTiffTest.java │ │ │ ├── CreateMapProcessorFlexibleScaleBBoxGeoJsonTest.java │ │ │ ├── CreateMapProcessorFlexibleScaleBBoxGmlTest.java │ │ │ ├── CreateMapProcessorFlexibleScaleCenterTiledWmsTest.java │ │ │ ├── CreateMapProcessorFlexibleScaleCenterWms1_0_0Test.java │ │ │ ├── CreateMapProcessorFlexibleScaleCenterWms1_0_0_DPITest.java │ │ │ ├── CreateMapProcessorFlexibleScaleCenterWms1_0_0_DPI_SVG_Test.java │ │ │ ├── CreateMapProcessorGridFixedNumlinesLinesNoRotateLabelsTest.java │ │ │ ├── CreateMapProcessorGridFixedNumlinesPointAltLabelProjTest.java │ │ │ ├── CreateMapProcessorGridFixedNumlinesPointCRS84Test.java │ │ │ ├── CreateMapProcessorGridFixedNumlinesPointRotatedTest.java │ │ │ ├── CreateMapProcessorImageLayerTest.java │ │ │ ├── CreateMapProcessorLabelGeoJsonTest.java │ │ │ ├── CreateMapProcessorLineVsPolygonStyleGeoJsonTest.java │ │ │ ├── CreateMapProcessorOpacityWMTSTest.java │ │ │ ├── CreateMapProcessorRenderTypeTest.java │ │ │ ├── CreateMapProcessorScaleBBoxNativeRotationWms1_3_0Test.java │ │ │ ├── CreateMapProcessorWmtsBufferTest.java │ │ │ ├── CreateNorthArrowProcessorSvgTest.java │ │ │ ├── CreateNorthArrowProcessorTest.java │ │ │ ├── CreateOverviewMapProcessorCustomBounds.java │ │ │ ├── CreateOverviewMapProcessorCustomLayerTest.java │ │ │ ├── CreateOverviewMapProcessorRotateTest.java │ │ │ ├── CreateOverviewMapProcessorStyleTest.java │ │ │ ├── CreateOverviewMapProcessorTest.java │ │ │ ├── MapfishMapContextTest.java │ │ │ ├── NorthArrowGraphicTest.java │ │ │ ├── SetFeaturesProcessorTest.java │ │ │ ├── SetTiledWmsProcessorTest.java │ │ │ ├── SetWmsCustomParamProcessorTest.java │ │ │ ├── TiledWMSUtil.java │ │ │ ├── package-info.java │ │ │ └── scalebar │ │ │ ├── CreateScaleBarProcessorFixedScaleCenterOsmTest.java │ │ │ ├── ScalebarDrawerTest.java │ │ │ └── ScalebarGraphicTest.java │ │ ├── servlet │ │ ├── ClusteredMapPrinterServletTest.java │ │ ├── MapPrinterServletSecurityTest.java │ │ ├── MapPrinterServletTest.java │ │ ├── SmtpProviderTestUtils.java │ │ ├── TestS3ReportStorage.java │ │ ├── fileloader │ │ │ ├── AbstractConfigLoaderTest.java │ │ │ ├── ClasspathConfigFileLoaderTest.java │ │ │ ├── FileConfigFileLoaderTest.java │ │ │ └── ServletConfigFileLoaderTest.java │ │ ├── job │ │ │ ├── ClusteringTaskTest.java │ │ │ └── PostResultToRegistryTaskTest.java │ │ └── registry │ │ │ └── BasicRegistryTest.java │ │ ├── test │ │ └── util │ │ │ └── ImageSimilarityTest.java │ │ ├── url │ │ └── data │ │ │ ├── TestDataUrlConnection.java │ │ │ └── TestHandler.java │ │ └── wrapper │ │ └── yaml │ │ ├── PYamlArrayTest.java │ │ └── PYamlObjectTest.java │ └── resources │ ├── META-INF │ └── services │ │ └── javax.mail.Provider │ ├── fonts │ ├── ComingSoon.ttf │ └── LICENSE.txt │ ├── icons │ ├── info-crosswalk-9.png │ └── warn.png │ ├── logback.xml │ ├── map-data │ ├── geojson │ │ ├── ny-roads-3857.json │ │ └── states.json │ ├── gml │ │ ├── spearfish-streams-v2.gml │ │ ├── spearfish-streams-v311.gml │ │ ├── spearfish-streams-v32.gml │ │ └── tiger_roads.kml │ ├── icons │ │ └── men-at-work.jpeg │ ├── legends │ │ ├── arbres.png │ │ ├── legend1.png │ │ ├── legend2.png │ │ ├── legend3.png │ │ ├── legend4.png │ │ ├── perturbations.png │ │ ├── points-de-vente.png │ │ └── stationement.png │ ├── ny-tiles │ │ ├── 1205x1538.png │ │ ├── 1205x1539.png │ │ ├── 1205x1540.png │ │ ├── 1206x1538.png │ │ ├── 1206x1539.png │ │ ├── 1206x1540.png │ │ ├── 1207x1538.png │ │ ├── 1207x1539.png │ │ └── 1207x1540.png │ ├── ol-demo.html │ ├── openlayers │ │ ├── OpenLayers.js │ │ ├── img │ │ │ ├── blank.gif │ │ │ ├── close.gif │ │ │ ├── cloud-popup-relative.png │ │ │ ├── drag-rectangle-off.png │ │ │ ├── drag-rectangle-on.png │ │ │ ├── east-mini.png │ │ │ ├── layer-switcher-maximize.png │ │ │ ├── layer-switcher-minimize.png │ │ │ ├── marker-blue.png │ │ │ ├── marker-gold.png │ │ │ ├── marker-green.png │ │ │ ├── marker.png │ │ │ ├── measuring-stick-off.png │ │ │ ├── measuring-stick-on.png │ │ │ ├── north-mini.png │ │ │ ├── panning-hand-off.png │ │ │ ├── panning-hand-on.png │ │ │ ├── slider.png │ │ │ ├── south-mini.png │ │ │ ├── west-mini.png │ │ │ ├── zoom-minus-mini.png │ │ │ ├── zoom-plus-mini.png │ │ │ ├── zoom-world-mini.png │ │ │ └── zoombar.png │ │ ├── ol-demo.cfg │ │ ├── readme.txt │ │ └── theme │ │ │ └── default │ │ │ ├── framedCloud.css │ │ │ ├── img │ │ │ ├── add_point_off.png │ │ │ ├── add_point_on.png │ │ │ ├── blank.gif │ │ │ ├── close.gif │ │ │ ├── drag-rectangle-off.png │ │ │ ├── drag-rectangle-on.png │ │ │ ├── draw_line_off.png │ │ │ ├── draw_line_on.png │ │ │ ├── draw_point_off.png │ │ │ ├── draw_point_on.png │ │ │ ├── draw_polygon_off.png │ │ │ ├── draw_polygon_on.png │ │ │ ├── editing_tool_bar.png │ │ │ ├── move_feature_off.png │ │ │ ├── move_feature_on.png │ │ │ ├── overview_replacement.gif │ │ │ ├── pan_off.png │ │ │ ├── pan_on.png │ │ │ ├── panning-hand-off.png │ │ │ ├── panning-hand-on.png │ │ │ ├── remove_point_off.png │ │ │ ├── remove_point_on.png │ │ │ ├── view_next_off.png │ │ │ ├── view_next_on.png │ │ │ ├── view_previous_off.png │ │ │ └── view_previous_on.png │ │ │ └── style.css │ ├── osm-custom-params │ │ └── 16 │ │ │ ├── 33475 │ │ │ ├── 23928.png │ │ │ ├── 23929.png │ │ │ └── 23930.png │ │ │ ├── 33476 │ │ │ ├── 23928.png │ │ │ ├── 23929.png │ │ │ └── 23930.png │ │ │ └── 33477 │ │ │ ├── 23928.png │ │ │ ├── 23929.png │ │ │ └── 23930.png │ ├── osm │ │ ├── 12 │ │ │ ├── 1205 │ │ │ │ ├── 1538.png │ │ │ │ └── 1539.png │ │ │ └── 1206 │ │ │ │ ├── 1538.png │ │ │ │ └── 1539.png │ │ ├── 14 │ │ │ ├── 4823 │ │ │ │ ├── 6155.png │ │ │ │ └── 6156.png │ │ │ ├── 4824 │ │ │ │ ├── 6155.png │ │ │ │ └── 6156.png │ │ │ ├── 4825 │ │ │ │ ├── 6155.png │ │ │ │ └── 6156.png │ │ │ └── 4826 │ │ │ │ ├── 6155.png │ │ │ │ └── 6156.png │ │ └── 15 │ │ │ ├── 9646 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ │ │ ├── 9647 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ │ │ ├── 9648 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ │ │ ├── 9649 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ │ │ ├── 9650 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ │ │ ├── 9651 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ │ │ └── 9652 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ ├── states-native-rotation.png │ ├── styles │ │ ├── green.sld │ │ ├── remoteOws.sld │ │ └── remoteTasmania.sld │ ├── test-data │ │ └── simple-squares-geojson.json │ ├── tiger-ny.png │ ├── tiled-wms-tiles │ │ ├── -109.6544269789473_19.24097872857841_-81.65790976543605_47.23749594208966.png │ │ ├── -109.6544269789473_47.23749594208966_-81.65790976543605_75.2340131556009.png │ │ ├── -137.65094419245855_19.24097872857841_-109.6544269789473_47.23749594208966.png │ │ ├── -137.65094419245855_47.23749594208966_-109.6544269789473_75.2340131556009.png │ │ ├── -53.66139255192479_19.24097872857841_-52.34905580754146_47.23749594208966.png │ │ ├── -53.66139255192479_47.23749594208966_-52.34905580754146_75.2340131556009.png │ │ ├── -81.65790976543605_19.24097872857841_-53.66139255192479_47.23749594208966.png │ │ └── -81.65790976543605_47.23749594208966_-53.66139255192479_75.2340131556009.png │ ├── wfs-t.html │ └── zoomed-in-ny-tiger.tif │ ├── mapfish-spring-hibernate.xml │ ├── org │ └── mapfish │ │ └── print │ │ ├── attribute │ │ ├── bool │ │ │ ├── config.yaml │ │ │ └── requestData.json │ │ ├── datasource │ │ │ ├── config.yaml │ │ │ └── requestData.json │ │ ├── jsonDatasource │ │ │ ├── config.yaml │ │ │ └── requestData.json │ │ ├── map │ │ │ ├── map_attributes │ │ │ │ ├── config-json-dpi.yaml │ │ │ │ ├── config-json.yaml │ │ │ │ ├── config-yaml.yaml │ │ │ │ ├── config-zoomTo.yaml │ │ │ │ ├── config-zoomToCenter.yaml │ │ │ │ ├── geojson.json │ │ │ │ ├── requestData-json.json │ │ │ │ ├── requestData-yaml.json │ │ │ │ ├── requestData-zoomTo.json │ │ │ │ └── requestData-zoomToCenter.json │ │ │ └── overviewmap_attributes │ │ │ │ ├── config-json.yaml │ │ │ │ ├── config-yaml.yaml │ │ │ │ ├── requestData-json.json │ │ │ │ └── requestData-yaml.json │ │ ├── scalebar │ │ │ ├── config.yaml │ │ │ └── requestData.json │ │ ├── string │ │ │ ├── config.yaml │ │ │ ├── requestData.json │ │ │ └── requestDataError.json │ │ ├── stringarray │ │ │ ├── config.yaml │ │ │ ├── geojson.json │ │ │ └── requestData.json │ │ └── style_attributes │ │ │ ├── config.yaml │ │ │ └── request.json │ │ ├── cli │ │ ├── config.yaml │ │ ├── expectedV3Image.png │ │ ├── simpleReport.jrxml │ │ ├── streams.json │ │ ├── streams.sld │ │ └── v3Request.json │ │ ├── config │ │ ├── config-test-application-context.xml │ │ ├── config-test-no-prototype-application-context.xml │ │ ├── configRequiringConfigurationInjection.yaml │ │ ├── configRequiringSpringInjection.yaml │ │ ├── configWithAttributeAsProcessor_bad_config.yaml │ │ ├── configWithProcessorAsAttribute_bad_config.yaml │ │ └── font │ │ │ ├── config.yaml │ │ │ ├── requestData.json │ │ │ └── simpleReport.jrxml │ │ ├── http │ │ ├── configuration │ │ │ ├── config.yaml │ │ │ └── keystore.jks │ │ └── proxy │ │ │ ├── application-context-proxy-test.xml │ │ │ ├── config.yaml │ │ │ └── keystore.jks │ │ ├── map │ │ ├── geotools │ │ │ └── geojson │ │ │ │ ├── array-features-3.json │ │ │ │ ├── config.yaml │ │ │ │ ├── geojson-inconsistent-attributes-2.json │ │ │ │ ├── geojson_org-1.json │ │ │ │ └── simple-geojson-3.json │ │ └── style │ │ │ ├── json │ │ │ ├── bug_cant_transform_to_xml.json │ │ │ ├── mark.png │ │ │ ├── requestData-style-json-v1-style.json │ │ │ ├── v2-style-all-properies-as-expressions.json │ │ │ ├── v2-style-default-symbolizers.json │ │ │ └── v2-style-symbolizers-default-values.json │ │ │ ├── multipleStyles.sld │ │ │ └── singleStyle.sld │ │ ├── output │ │ ├── pdf-config │ │ │ ├── config-defaults.yaml │ │ │ ├── config-settings-in-config.yaml │ │ │ ├── config-settings-in-template.yaml │ │ │ ├── config-template-override-config.yaml │ │ │ ├── geojson.json │ │ │ ├── logo.png │ │ │ ├── requestData.json │ │ │ └── simple-map.jrxml │ │ ├── simple_map │ │ │ ├── config-map-wrong-type.yaml │ │ │ ├── config-missing-map.yaml │ │ │ ├── config.yaml │ │ │ ├── expectedReport.png │ │ │ ├── expectedReport.svg │ │ │ ├── geojson.json │ │ │ ├── logo.png │ │ │ ├── requestData.json │ │ │ ├── simple-map-wrong-type.jrxml │ │ │ └── simple-map.jrxml │ │ └── values │ │ │ ├── config-defaults.yaml │ │ │ ├── config-no-defaults.yaml │ │ │ └── requestData.json │ │ ├── parser │ │ └── mapAttributeTest.json │ │ ├── processor │ │ ├── http │ │ │ ├── add-headers │ │ │ │ ├── add-custom-processor-application-context.xml │ │ │ │ ├── config-createmap.yaml │ │ │ │ └── config.yaml │ │ │ ├── composite-client-http-request-factory │ │ │ │ ├── add-custom-processor-application-context.xml │ │ │ │ ├── config-createmap.yaml │ │ │ │ └── config.yaml │ │ │ ├── forward-headers │ │ │ │ ├── add-custom-processor-application-context.xml │ │ │ │ ├── config-createmap.yaml │ │ │ │ ├── config-forward-all.yaml │ │ │ │ └── config.yaml │ │ │ ├── map-uri │ │ │ │ ├── NorthArrow.png │ │ │ │ ├── add-custom-processor-application-context.xml │ │ │ │ ├── config-createmap.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── map-uri-228-bug-fix-config.yaml │ │ │ │ └── map-uri-228-bug-fix-processor-application-context.xml │ │ │ └── use-http-for-https │ │ │ │ ├── add-custom-processor-application-context.xml │ │ │ │ ├── config-createmap.yaml │ │ │ │ └── config.yaml │ │ ├── jasper │ │ │ ├── date-format │ │ │ │ ├── config.yaml │ │ │ │ └── requestData.json │ │ │ ├── incorrectly-configured-DataSourceProcessor │ │ │ │ ├── config.yaml │ │ │ │ └── table.jrxml │ │ │ ├── legend │ │ │ │ ├── config.yaml │ │ │ │ ├── legend.jrxml │ │ │ │ └── requestData.json │ │ │ ├── legend_dynamic │ │ │ │ ├── config.yaml │ │ │ │ ├── legend1.png │ │ │ │ ├── legend2.png │ │ │ │ ├── legend3.png │ │ │ │ └── requestData.json │ │ │ ├── merge-data-sources │ │ │ │ └── config.yaml │ │ │ ├── table-dynamic-defaults │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedImage.png │ │ │ │ ├── logo.png │ │ │ │ ├── requestData.json │ │ │ │ └── simpleReport.jrxml │ │ │ ├── table-dynamic │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedImage.png │ │ │ │ ├── logo.png │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport.jrxml │ │ │ │ └── table.jrxml │ │ │ ├── table-image-column-resolver │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedImage.png │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── simpleReport.jrxml │ │ │ ├── table │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedImage.png │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport-wrong-field-type.jrxml │ │ │ │ └── simpleReport.jrxml │ │ │ ├── table_converters │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── simpleReport.jrxml │ │ │ ├── table_converters_dyn │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedImage.png │ │ │ │ ├── logo.png │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport.jrxml │ │ │ │ └── table.jrxml │ │ │ └── tablelist │ │ │ │ ├── config.yaml │ │ │ │ ├── expected-page.png │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport.jrxml │ │ │ │ └── table.jrxml │ │ ├── map │ │ │ ├── add-background-layers │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedOverviewImage.png │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── add-overlay-layers │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedOverviewImage.png │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── bbox_geojson_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ └── requestData.json │ │ │ ├── bbox_geojson_flexible_scale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ ├── requestData.json │ │ │ │ └── style.json │ │ │ ├── bbox_geojson_label_style │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ ├── requestData.json │ │ │ │ └── style.json │ │ │ ├── bbox_geojson_line_style │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ ├── requestData.json │ │ │ │ └── style.json │ │ │ ├── bbox_native_rotation_wms1_3_0_scale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_empty_collection │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_json_style_highdpi │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_json_style_v1 │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_zoomTo │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_zoomToExtent │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_zoomToExtent_flexiblescale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_zoomToExtent_minScale_flexiblescale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ └── requestData.json │ │ │ ├── center_geotiff_flexible_scale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── sampleGeoTiff.tif │ │ │ ├── center_gml_flexible_scale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── expectedspearfish-streams-v2.gml.png │ │ │ │ ├── expectedspearfish-streams-v311.gml.png │ │ │ │ └── requestData.json │ │ │ ├── center_gml_only_aoi_for_bounds │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage-no-bounds.png │ │ │ │ ├── requestData.json │ │ │ │ ├── roads.sld │ │ │ │ └── thinline.sld │ │ │ ├── center_osm_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_osm_fixedscale_dpi │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_osm_grid_numlines_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_osm_grid_numlines_points_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_osm_grid_space_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_osm_grid_spacing_points_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_osm_rotation_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_tiledwms_flexiblescale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wms1_0_0_flexiblescale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wms1_0_0_flexiblescale_area_of_interest │ │ │ │ ├── config.yaml │ │ │ │ ├── output │ │ │ │ │ ├── expectedSimpleImage-clip-svg-transparent.png │ │ │ │ │ ├── expectedSimpleImage-clip-svg.png │ │ │ │ │ ├── expectedSimpleImage-clip-transparent.png │ │ │ │ │ ├── expectedSimpleImage-clip.png │ │ │ │ │ ├── expectedSimpleImage-default-transparent.png │ │ │ │ │ ├── expectedSimpleImage-default.png │ │ │ │ │ ├── expectedSimpleImage-none-transparent.png │ │ │ │ │ ├── expectedSimpleImage-none.png │ │ │ │ │ ├── expectedSimpleImage-render-jsonStyle.png │ │ │ │ │ ├── expectedSimpleImage-render-polygon-svg-transparent.png │ │ │ │ │ ├── expectedSimpleImage-render-polygon-svg.png │ │ │ │ │ ├── expectedSimpleImage-render-polygon.png │ │ │ │ │ ├── expectedSimpleImage-render-thinline-transparent.png │ │ │ │ │ ├── expectedSimpleImage-render-thinline.png │ │ │ │ │ ├── expectedSimpleImage-rotate-clip-svg.png │ │ │ │ │ └── expectedSimpleImage-rotate-render-svg.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wms1_0_0_flexiblescale_high_dpi │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wms1_0_0_flexiblescale_high_dpi_SVG │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wms_rotation_small_tiles │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── green_square.png │ │ │ │ ├── red_square.png │ │ │ │ └── requestData.json │ │ │ ├── center_wmts_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wmts_fixedscale_rest │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wmts_rotation_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── grid_numlines_lines_fixedscale_norotatelabels │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── grid_numlines_points_fixedscale_alt_label_proj │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── grid_numlines_points_fixedscale_crs84 │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── grid_numlines_points_fixedscale_rotated │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage_123-linux.png │ │ │ │ ├── expectedSimpleImage_123.png │ │ │ │ ├── expectedSimpleImage_180-linux.png │ │ │ │ ├── expectedSimpleImage_180.png │ │ │ │ ├── expectedSimpleImage_203-linux.png │ │ │ │ ├── expectedSimpleImage_203.png │ │ │ │ ├── expectedSimpleImage_23-linux.png │ │ │ │ ├── expectedSimpleImage_23.png │ │ │ │ ├── expectedSimpleImage_270-linux.png │ │ │ │ ├── expectedSimpleImage_270.png │ │ │ │ ├── expectedSimpleImage_310-linux.png │ │ │ │ ├── expectedSimpleImage_310.png │ │ │ │ ├── expectedSimpleImage_360-linux.png │ │ │ │ ├── expectedSimpleImage_360.png │ │ │ │ ├── expectedSimpleImage_90-linux.png │ │ │ │ ├── expectedSimpleImage_90.png │ │ │ │ ├── expectedSimpleImage_rotation-linux.png │ │ │ │ └── requestData.json │ │ │ ├── image_layer_test │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── north_arrow │ │ │ │ ├── NorthArrow.png │ │ │ │ ├── NorthArrow.svg │ │ │ │ ├── NorthArrow_10.png │ │ │ │ ├── NorthArrow_10.svg │ │ │ │ ├── config-no-report.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── expected-north-arrow-bg.png │ │ │ │ ├── expected-north-arrow-png-bg-square-down.png │ │ │ │ ├── expected-north-arrow-png-square-45-down.png │ │ │ │ ├── expected-north-arrow-png-square-45-up.png │ │ │ │ ├── expected-north-arrow-png-square-down.png │ │ │ │ ├── expected-north-arrow-png-square-up.png │ │ │ │ ├── expected-north-arrow.png │ │ │ │ ├── expected-north-arrow_10-bg.png │ │ │ │ ├── expected-north-arrow_10-default.png │ │ │ │ ├── expected-north-arrow_10-png-nosquare-45-down.png │ │ │ │ ├── expected-north-arrow_10-png-nosquare-45-up.png │ │ │ │ ├── expected-north-arrow_10-png-nosquare-down.png │ │ │ │ ├── expected-north-arrow_10-png-nosquare-up.png │ │ │ │ ├── expected-north-arrow_10.png │ │ │ │ ├── expectedNorthArrow.png │ │ │ │ └── requestData.json │ │ │ ├── north_arrow_svg │ │ │ │ ├── NorthArrow_10.svg │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedNorthArrow.png │ │ │ │ └── requestData.json │ │ │ ├── opacity_center_wmts_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ ├── thickline.sld │ │ │ │ └── thinline.sld │ │ │ ├── osm_custom_params │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── overview_map │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── overview_map_custom_bounds │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── overview_map_custom_layer │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── overview_map_rotate │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── overview_map_style │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── overview-map.sld │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── paging_processor_test │ │ │ │ ├── config-geodetic.yaml │ │ │ │ ├── config-scalebar.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage-default.png │ │ │ │ ├── output │ │ │ │ │ ├── all-none │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── clip-full-aoi │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── clip-page-aoi │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── default-aoi │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── full-clip-sub-none │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── full-clip-sub-render │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── geodetic │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── higher-dpi-geodetic │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── higher-dpi │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── none-aoi │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ └── scalebar │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport.jrxml │ │ │ │ └── thinline.sld │ │ │ ├── paging_processor_zoom_to_features_test │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage-default.png │ │ │ │ ├── output │ │ │ │ │ └── zoom-to-features │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport.jrxml │ │ │ │ └── thinline.sld │ │ │ ├── rendertype │ │ │ │ ├── config.yaml │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── scalebar │ │ │ │ ├── center_osm_fixedscale │ │ │ │ │ ├── config-no-report.yaml │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── expectedScalebar.png │ │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ │ ├── requestData.json │ │ │ │ │ └── thinline.sld │ │ │ │ ├── expected-scalebar-bar-bg.png │ │ │ │ ├── expected-scalebar-bar-subs.png │ │ │ │ ├── expected-scalebar-bar-text-above.png │ │ │ │ ├── expected-scalebar-bar-vertical-text-left.png │ │ │ │ ├── expected-scalebar-bar-vertical-text-right.png │ │ │ │ ├── expected-scalebar-bar.png │ │ │ │ ├── expected-scalebar-barsub-subs.png │ │ │ │ ├── expected-scalebar-barsub.png │ │ │ │ ├── expected-scalebar-graphic-dpi.png │ │ │ │ ├── expected-scalebar-graphic-svg.png │ │ │ │ ├── expected-scalebar-graphic.png │ │ │ │ ├── expected-scalebar-line-labels-above-partially-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-above-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-left-partially-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-left-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-partially-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-right-partially-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-right-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-rotated-negative.png │ │ │ │ ├── expected-scalebar-line-labels-rotated.png │ │ │ │ ├── expected-scalebar-line-subs.png │ │ │ │ ├── expected-scalebar-line.png │ │ │ │ ├── expected-scalebar-middle-center.png │ │ │ │ ├── expected-scalebar-top-right.png │ │ │ │ └── expectedSimpleImage.png │ │ │ ├── setfeaturesprocessor │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ └── requestData.json │ │ │ ├── setparamprocessor │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ └── wmts_buffer │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ └── setstyle │ │ │ ├── basic │ │ │ ├── config.yaml │ │ │ └── request.json │ │ │ ├── map │ │ │ └── config.yaml │ │ │ └── two_maps │ │ │ └── config.yaml │ │ ├── servlet │ │ ├── MapOnly_A4.jrxml │ │ ├── abstract-mapfish-spring-application-context-clustered.xml │ │ ├── config-email-s3.yaml │ │ ├── config-referrer.yaml │ │ ├── config-security.yaml │ │ ├── config-timeout.yaml │ │ ├── config.yaml │ │ ├── expectedSimpleImage.png │ │ ├── fileloader │ │ │ ├── config.yaml │ │ │ └── resourceFile.txt │ │ ├── mapfish-print-servlet.xml │ │ ├── mapfish-spring-application-context-clustered-test.xml │ │ ├── mapfish-spring-application-context-clustered.xml │ │ ├── requestData.json │ │ ├── requestDataEmail.json │ │ ├── requestDataError.json │ │ └── sampleGeoTiff.tif │ │ └── test │ │ └── util │ │ └── imageSimilarity │ │ ├── with.png │ │ └── without.png │ ├── test-http-request-factory-application-context.xml │ └── test-mapfish-spring-custom-fonts.xml ├── docker-compose.override.sample.yaml ├── docker-compose.yaml ├── docs ├── README.md ├── build.gradle └── src │ └── main │ ├── groovy │ ├── DocsXmlSupport.groovy │ ├── GenerateDocs.groovy │ └── Javadoc7Parser.groovy │ └── resources │ ├── css │ ├── custom.css │ ├── readthedocs-doc-embed.css │ └── sphinx_rtd_theme.css │ ├── fonts │ ├── FontAwesome.otf │ ├── Inconsolata-Bold.ttf │ ├── Inconsolata-Regular.ttf │ ├── Lato-Bold.ttf │ ├── Lato-Regular.ttf │ ├── RobotoSlab-Bold.ttf │ ├── RobotoSlab-Regular.ttf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff │ ├── images │ ├── Mapfish_Print_V3_Architecture.svg │ ├── adapt1.png │ ├── expression.png │ ├── image_table.png │ ├── jasperbands.png │ ├── jaspersoft.png │ ├── preview.png │ └── prompt.png │ ├── js │ └── theme.js │ ├── pages.json │ └── templates │ ├── _content.html │ ├── _main.html │ ├── _sub_nav.html │ ├── api.html │ ├── attributes.html │ ├── configuration.html │ ├── docker.html │ ├── download.html │ ├── fileloaders.html │ ├── index.html │ ├── jasperreports.html │ ├── layers.html │ ├── outputformats.html │ ├── processors.html │ ├── scaling.html │ ├── styles.html │ └── tableimages.html ├── examples ├── README.md ├── build.gradle ├── geoserver-data │ ├── README.rst │ ├── coverages │ │ ├── arc_sample │ │ │ ├── info.xml │ │ │ ├── precip30min.asc │ │ │ └── precip30min.prj │ │ ├── img_sample │ │ │ ├── Pk50095.prj │ │ │ ├── Pk50095.tfw │ │ │ ├── Pk50095.tif │ │ │ ├── info.xml │ │ │ ├── usa.jpeg │ │ │ ├── usa.meta │ │ │ └── usa.prj │ │ ├── mosaic_sample │ │ │ ├── global_mosaic_0.pgw │ │ │ ├── global_mosaic_0.png │ │ │ ├── global_mosaic_0.prj │ │ │ ├── global_mosaic_1.pgw │ │ │ ├── global_mosaic_1.png │ │ │ ├── global_mosaic_1.prj │ │ │ ├── global_mosaic_10.pgw │ │ │ ├── global_mosaic_10.png │ │ │ ├── global_mosaic_10.prj │ │ │ ├── global_mosaic_11.pgw │ │ │ ├── global_mosaic_11.png │ │ │ ├── global_mosaic_11.prj │ │ │ ├── global_mosaic_12.pgw │ │ │ ├── global_mosaic_12.png │ │ │ ├── global_mosaic_12.prj │ │ │ ├── global_mosaic_13.pgw │ │ │ ├── global_mosaic_13.png │ │ │ ├── global_mosaic_13.prj │ │ │ ├── global_mosaic_14.pgw │ │ │ ├── global_mosaic_14.png │ │ │ ├── global_mosaic_14.prj │ │ │ ├── global_mosaic_15.pgw │ │ │ ├── global_mosaic_15.png │ │ │ ├── global_mosaic_15.prj │ │ │ ├── global_mosaic_16.pgw │ │ │ ├── global_mosaic_16.png │ │ │ ├── global_mosaic_16.prj │ │ │ ├── global_mosaic_17.pgw │ │ │ ├── global_mosaic_17.png │ │ │ ├── global_mosaic_17.prj │ │ │ ├── global_mosaic_18.pgw │ │ │ ├── global_mosaic_18.png │ │ │ ├── global_mosaic_18.prj │ │ │ ├── global_mosaic_19.pgw │ │ │ ├── global_mosaic_19.png │ │ │ ├── global_mosaic_19.prj │ │ │ ├── global_mosaic_2.pgw │ │ │ ├── global_mosaic_2.png │ │ │ ├── global_mosaic_2.prj │ │ │ ├── global_mosaic_20.pgw │ │ │ ├── global_mosaic_20.png │ │ │ ├── global_mosaic_20.prj │ │ │ ├── global_mosaic_21.pgw │ │ │ ├── global_mosaic_21.png │ │ │ ├── global_mosaic_21.prj │ │ │ ├── global_mosaic_22.pgw │ │ │ ├── global_mosaic_22.png │ │ │ ├── global_mosaic_22.prj │ │ │ ├── global_mosaic_23.pgw │ │ │ ├── global_mosaic_23.png │ │ │ ├── global_mosaic_23.prj │ │ │ ├── global_mosaic_24.pgw │ │ │ ├── global_mosaic_24.png │ │ │ ├── global_mosaic_24.prj │ │ │ ├── global_mosaic_3.pgw │ │ │ ├── global_mosaic_3.png │ │ │ ├── global_mosaic_3.prj │ │ │ ├── global_mosaic_4.pgw │ │ │ ├── global_mosaic_4.png │ │ │ ├── global_mosaic_4.prj │ │ │ ├── global_mosaic_5.pgw │ │ │ ├── global_mosaic_5.png │ │ │ ├── global_mosaic_5.prj │ │ │ ├── global_mosaic_6.pgw │ │ │ ├── global_mosaic_6.png │ │ │ ├── global_mosaic_6.prj │ │ │ ├── global_mosaic_7.pgw │ │ │ ├── global_mosaic_7.png │ │ │ ├── global_mosaic_7.prj │ │ │ ├── global_mosaic_8.pgw │ │ │ ├── global_mosaic_8.png │ │ │ ├── global_mosaic_8.prj │ │ │ ├── global_mosaic_9.pgw │ │ │ ├── global_mosaic_9.png │ │ │ ├── global_mosaic_9.prj │ │ │ ├── info.xml │ │ │ ├── mosaic.dbf │ │ │ ├── mosaic.fix │ │ │ ├── mosaic.prj │ │ │ ├── mosaic.properties │ │ │ ├── mosaic.qix │ │ │ ├── mosaic.shp │ │ │ └── mosaic.shx │ │ └── sfdem_sfdem │ │ │ └── info.xml │ ├── csw.xml │ ├── data │ │ ├── README.md │ │ ├── nyc │ │ │ ├── giant_polygon.dbf │ │ │ ├── giant_polygon.prj │ │ │ ├── giant_polygon.qix │ │ │ ├── giant_polygon.shp │ │ │ ├── giant_polygon.shx │ │ │ ├── poi.dbf │ │ │ ├── poi.prj │ │ │ ├── poi.qix │ │ │ ├── poi.shp │ │ │ ├── poi.shx │ │ │ ├── poly_landmarks.dbf │ │ │ ├── poly_landmarks.prj │ │ │ ├── poly_landmarks.qix │ │ │ ├── poly_landmarks.shp │ │ │ ├── poly_landmarks.shx │ │ │ ├── tiger_roads.dbf │ │ │ ├── tiger_roads.prj │ │ │ ├── tiger_roads.qix │ │ │ ├── tiger_roads.shp │ │ │ └── tiger_roads.shx │ │ ├── sf │ │ │ ├── archsites.dbf │ │ │ ├── archsites.prj │ │ │ ├── archsites.qix │ │ │ ├── archsites.shp │ │ │ ├── archsites.shx │ │ │ ├── bugsites.dbf │ │ │ ├── bugsites.prj │ │ │ ├── bugsites.qix │ │ │ ├── bugsites.shp │ │ │ ├── bugsites.shx │ │ │ ├── restricted.dbf │ │ │ ├── restricted.prj │ │ │ ├── restricted.qix │ │ │ ├── restricted.shp │ │ │ ├── restricted.shx │ │ │ ├── roads.dbf │ │ │ ├── roads.prj │ │ │ ├── roads.qix │ │ │ ├── roads.shp │ │ │ ├── roads.shx │ │ │ ├── sfdem.tif │ │ │ ├── streams.dbf │ │ │ ├── streams.prj │ │ │ ├── streams.qix │ │ │ ├── streams.shp │ │ │ └── streams.shx │ │ ├── shapefiles │ │ │ ├── README.md │ │ │ ├── states.dbf │ │ │ ├── states.prj │ │ │ ├── states.qix │ │ │ ├── states.shp │ │ │ └── states.shx │ │ └── taz_shapes │ │ │ ├── tasmania_cities.dbf │ │ │ ├── tasmania_cities.prj │ │ │ ├── tasmania_cities.shp │ │ │ ├── tasmania_cities.shx │ │ │ ├── tasmania_roads.dbf │ │ │ ├── tasmania_roads.prj │ │ │ ├── tasmania_roads.qix │ │ │ ├── tasmania_roads.shp │ │ │ ├── tasmania_roads.shx │ │ │ ├── tasmania_state_boundaries.dbf │ │ │ ├── tasmania_state_boundaries.prj │ │ │ ├── tasmania_state_boundaries.shp │ │ │ ├── tasmania_state_boundaries.shx │ │ │ ├── tasmania_water_bodies.dbf │ │ │ ├── tasmania_water_bodies.prj │ │ │ ├── tasmania_water_bodies.shp │ │ │ └── tasmania_water_bodies.shx │ ├── demo │ │ ├── WCS_describeCoverage.xml │ │ ├── WCS_getCapabilities.xml │ │ ├── WCS_getCoverage.xml │ │ ├── WFS_describeFeatureType-1.0.xml │ │ ├── WFS_describeFeatureType-1.1.xml │ │ ├── WFS_getCapabilities-1.0.xml │ │ ├── WFS_getCapabilities-1.1.xml │ │ ├── WFS_getFeature-1.0.xml │ │ ├── WFS_getFeature-1.1.xml │ │ ├── WFS_getFeature-2.0.url │ │ ├── WFS_getFeature-2.0.xml │ │ ├── WFS_getFeatureBBOX-1.0.xml │ │ ├── WFS_getFeatureBBOX-1.1.xml │ │ ├── WFS_getFeatureBBOX.url │ │ ├── WFS_getFeatureBetween-1.0.xml │ │ ├── WFS_getFeatureBetween-1.1.xml │ │ ├── WFS_getFeatureBetween.url │ │ ├── WFS_getFeatureBetweenCQL.url │ │ ├── WFS_getFeatureFid.url │ │ ├── WFS_getFeatureFidFilter.url │ │ ├── WFS_getFeatureIntersects-1.0.xml │ │ ├── WFS_getFeatureIntersects-1.1.xml │ │ ├── WFS_getFeatureIntersects.url │ │ ├── WFS_getFeatureMultiFilter.url │ │ ├── WFS_getFeatureNotDisjoint-2.0.url │ │ ├── WFS_getFeatureNotDisjoint-2.0.xml │ │ ├── WFS_mathGetFeature.url │ │ ├── WFS_mathGetFeature.xml │ │ ├── WFS_transactionDelete.xml │ │ ├── WFS_transactionInsert.xml │ │ ├── WFS_transactionUpdate.xml │ │ ├── WFS_transactionUpdateGeom.xml │ │ ├── WMS_GetLegendGraphic-SLD.url │ │ ├── WMS_GetLegendGraphic-SLD_BODY.url │ │ ├── WMS_GetLegendGraphic.url │ │ ├── WMS_describeLayer.url │ │ ├── WMS_featureInfo.url │ │ ├── WMS_getCapabilities.url │ │ ├── WMS_getMap.url │ │ ├── WMS_getMap.xml │ │ ├── WMS_getMap_OpenLayers.url │ │ ├── WMS_getMap_SLD_BODY_LiteralMode-1.3.url │ │ ├── WMS_getMap_SLD_BODY_LiteralMode.url │ │ ├── WMS_getMap_SVG.url │ │ ├── WMS_getMap_SVG_Style.url │ │ ├── WMS_getMap_fid.url │ │ ├── WMS_getMap_fidfilter.url │ │ ├── WMS_getMap_inlineFeature.url │ │ ├── WMS_getMap_inlineFeatureSmile.xml │ │ ├── WMS_getMap_multilayer.url │ │ ├── WMS_getMap_multilayer_cql.url │ │ └── WMS_getMap_multilayer_filter.url │ ├── global.xml │ ├── images │ │ ├── colorpicker.jpg │ │ ├── delete.png │ │ ├── deleteRed.png │ │ ├── down.png │ │ ├── gs.gif │ │ ├── gs.ico │ │ ├── rasterLegend.png │ │ └── up.png │ ├── layergroups │ │ ├── spearfish.xml │ │ ├── tasmania.xml │ │ └── tiger-ny.xml │ ├── logging.xml │ ├── palettes │ │ ├── dem31.pal │ │ ├── ita31.pal │ │ ├── ny31.pal │ │ └── popshade.png │ ├── plugIns │ │ ├── AddressGap.xml │ │ ├── AddressOverlap.xml │ │ ├── AngleSize.xml │ │ ├── Attribute.xml │ │ ├── Constraint.xml │ │ ├── ContainsIntegrity.xml │ │ ├── CrossesIntegrity.xml │ │ ├── DisjointIntegrity.xml │ │ ├── Domain.xml │ │ ├── Equality.xml │ │ ├── GazetteerName.xml │ │ ├── IntersectsIntegrity.xml │ │ ├── IsValidGeometry.xml │ │ ├── LineCoveredByFeatureLine.xml │ │ ├── LineCoveredByPolygon.xml │ │ ├── LineCoveredByPolygonBoundary.xml │ │ ├── LineEndPointCoveredByLine.xml │ │ ├── LineIntersectsLineWithNode.xml │ │ ├── LineMustBeASinglePart.xml │ │ ├── LineNoDangles.xml │ │ ├── LineNoPseudoNode.xml │ │ ├── LineNoSelfIntersect.xml │ │ ├── LineNoSelfOverlapping.xml │ │ ├── LineNotTouchingPolygonInterior.xml │ │ ├── LinesNotIntersect.xml │ │ ├── LinesNotOverlap.xml │ │ ├── NameExists.xml │ │ ├── NameInList.xml │ │ ├── NullZero.xml │ │ ├── OverlapsIntegrity.xml │ │ ├── PointCoveredByEndPointOfLine.xml │ │ ├── PointCoveredByLine.xml │ │ ├── PointCoveredByPolygon.xml │ │ ├── PointCoveredByPolygonBoundary.xml │ │ ├── PointInsidePolygon.xml │ │ ├── PolygonBoundaryCoveredByPolygon.xml │ │ ├── PolygonCoveredByFeaturePolygon.xml │ │ ├── PolygonCoveredByPolygon.xml │ │ ├── PolygonNoGaps.xml │ │ ├── PolygonNotCoveredByPolygon.xml │ │ ├── PolygonNotOverlappingLine.xml │ │ ├── PolygonNotOverlappingPolygon.xml │ │ ├── Range.xml │ │ ├── RelateIntegrity.xml │ │ ├── SQL.xml │ │ ├── SingleValue.xml │ │ ├── StarNode.xml │ │ ├── TouchesIntegrity.xml │ │ ├── UniqueFID.xml │ │ ├── Uniquity.xml │ │ └── WithinIntegrity.xml │ ├── security │ │ ├── auth │ │ │ └── default │ │ │ │ └── config.xml │ │ ├── config.xml │ │ ├── filter │ │ │ ├── anonymous │ │ │ │ └── config.xml │ │ │ ├── basic │ │ │ │ └── config.xml │ │ │ ├── contextAsc │ │ │ │ └── config.xml │ │ │ ├── contextNoAsc │ │ │ │ └── config.xml │ │ │ ├── exception │ │ │ │ └── config.xml │ │ │ ├── form │ │ │ │ └── config.xml │ │ │ ├── formLogout │ │ │ │ └── config.xml │ │ │ ├── interceptor │ │ │ │ └── config.xml │ │ │ ├── rememberme │ │ │ │ └── config.xml │ │ │ ├── restInterceptor │ │ │ │ └── config.xml │ │ │ ├── roleFilter │ │ │ │ └── config.xml │ │ │ └── sslFilter │ │ │ │ └── config.xml │ │ ├── layers.properties │ │ ├── masterpw.xml │ │ ├── masterpw │ │ │ └── default │ │ │ │ ├── config.xml │ │ │ │ └── passwd │ │ ├── pwpolicy │ │ │ ├── default │ │ │ │ └── config.xml │ │ │ └── master │ │ │ │ └── config.xml │ │ ├── rest.properties │ │ ├── role │ │ │ └── default │ │ │ │ ├── config.xml │ │ │ │ ├── roles.xml │ │ │ │ └── roles.xsd │ │ ├── services.properties │ │ └── usergroup │ │ │ └── default │ │ │ ├── config.xml │ │ │ ├── users.xml │ │ │ └── users.xsd │ ├── styles │ │ ├── Lakes.sld │ │ ├── NamedPlaces.sld │ │ ├── burg.sld │ │ ├── burg.xml │ │ ├── burg02.svg │ │ ├── capitals.sld │ │ ├── capitals.xml │ │ ├── cite_lakes.xml │ │ ├── default_generic.sld │ │ ├── default_line.sld │ │ ├── default_line2.sld │ │ ├── default_point.sld │ │ ├── default_polygon.sld │ │ ├── dem.sld │ │ ├── dem.xml │ │ ├── generic.xml │ │ ├── giant_polygon.sld │ │ ├── giant_polygon.xml │ │ ├── grass.xml │ │ ├── grass_fill.png │ │ ├── grass_poly.sld │ │ ├── green.sld │ │ ├── green.xml │ │ ├── line.xml │ │ ├── poi.sld │ │ ├── poi.xml │ │ ├── point.xml │ │ ├── poly_landmarks.sld │ │ ├── poly_landmarks.xml │ │ ├── polygon.xml │ │ ├── pophatch.sld │ │ ├── pophatch.xml │ │ ├── popshade.sld │ │ ├── population.xml │ │ ├── rain.sld │ │ ├── rain.xml │ │ ├── raster.sld │ │ ├── raster.xml │ │ ├── restricted.sld │ │ ├── restricted.xml │ │ ├── simpleRoads.sld │ │ ├── simple_roads.xml │ │ ├── simple_streams.sld │ │ ├── simple_streams.xml │ │ ├── tiger_roads.sld │ │ └── tiger_roads.xml │ ├── user_projections │ │ └── epsg.properties │ ├── validation │ │ ├── FeatureCheck.xml │ │ └── IntegrityCheck.xml │ ├── wcs.xml │ ├── wfs.xml │ ├── wms.xml │ ├── workspaces │ │ ├── cite │ │ │ ├── namespace.xml │ │ │ └── workspace.xml │ │ ├── it.geosolutions │ │ │ ├── namespace.xml │ │ │ └── workspace.xml │ │ ├── nurc │ │ │ ├── arcGridSample │ │ │ │ ├── Arc_Sample │ │ │ │ │ ├── coverage.xml │ │ │ │ │ └── layer.xml │ │ │ │ └── coveragestore.xml │ │ │ ├── img_sample2 │ │ │ │ ├── Pk50095 │ │ │ │ │ ├── coverage.xml │ │ │ │ │ └── layer.xml │ │ │ │ └── coveragestore.xml │ │ │ ├── mosaic │ │ │ │ ├── coveragestore.xml │ │ │ │ └── mosaic │ │ │ │ │ ├── coverage.xml │ │ │ │ │ └── layer.xml │ │ │ ├── namespace.xml │ │ │ ├── workspace.xml │ │ │ └── worldImageSample │ │ │ │ ├── Img_Sample │ │ │ │ ├── coverage.xml │ │ │ │ └── layer.xml │ │ │ │ └── coveragestore.xml │ │ ├── sde │ │ │ ├── namespace.xml │ │ │ └── workspace.xml │ │ ├── sf │ │ │ ├── namespace.xml │ │ │ ├── sf │ │ │ │ ├── archsites │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ ├── bugsites │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ ├── datastore.xml │ │ │ │ ├── restricted │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ ├── roads │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ └── streams │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ ├── sfdem │ │ │ │ ├── coveragestore.xml │ │ │ │ └── sfdem │ │ │ │ │ ├── coverage.xml │ │ │ │ │ └── layer.xml │ │ │ └── workspace.xml │ │ ├── tiger │ │ │ ├── namespace.xml │ │ │ ├── nyc │ │ │ │ ├── datastore.xml │ │ │ │ ├── giant_polygon │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ ├── poi │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ ├── poly_landmarks │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ └── tiger_roads │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ └── workspace.xml │ │ └── topp │ │ │ ├── namespace.xml │ │ │ ├── states_shapefile │ │ │ ├── datastore.xml │ │ │ └── states │ │ │ │ ├── description.ftl │ │ │ │ ├── featuretype.xml │ │ │ │ ├── layer.xml │ │ │ │ └── title.ftl │ │ │ ├── taz_shapes │ │ │ ├── datastore.xml │ │ │ ├── tasmania_cities │ │ │ │ ├── featuretype.xml │ │ │ │ └── layer.xml │ │ │ ├── tasmania_roads │ │ │ │ ├── featuretype.xml │ │ │ │ └── layer.xml │ │ │ ├── tasmania_state_boundaries │ │ │ │ ├── featuretype.xml │ │ │ │ └── layer.xml │ │ │ └── tasmania_water_bodies │ │ │ │ ├── featuretype.xml │ │ │ │ └── layer.xml │ │ │ └── workspace.xml │ └── www │ │ ├── GeoServer.png │ │ └── oereb │ │ ├── 2771.png │ │ ├── FederalLogo.png │ │ ├── MunicipalityLogo.png │ │ ├── PLRCadastreLogo.png │ │ ├── StaoTyp1.png │ │ ├── StaoTyp2.png │ │ ├── StaoTyp3.png │ │ ├── de.png │ │ ├── logo_canton.png │ │ ├── logo_confederation.png │ │ ├── logo_oereb_de.png │ │ ├── logo_oereb_fr.png │ │ └── logo_oereb_it.png └── src │ └── test │ ├── java │ └── org │ │ └── mapfish │ │ └── print │ │ ├── AbstractApiTest.java │ │ ├── ExamplesTest.java │ │ ├── MetricsApiTest.java │ │ └── PrintApiTest.java │ └── resources │ ├── data │ ├── logging.xml │ └── logs │ │ └── PRODUCTION_LOGGING.properties │ ├── examples │ ├── README.md │ ├── add_overlay_layer │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-no-data-layer.png │ │ │ ├── requestData-one-data-layer.png │ │ │ └── requestData-override-overlay.png │ │ ├── requestData-no-data-layer.json │ │ ├── requestData-one-data-layer.json │ │ ├── requestData-override-overlay.json │ │ └── simpleReport.jrxml │ ├── config_aliases_defaults │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-landscape.png │ │ │ └── requestData-portrait.png │ │ ├── pdf-preview-landscape.jrxml │ │ ├── pdf-preview-portrait.jrxml │ │ ├── requestData-landscape.json │ │ └── requestData-portrait.json │ ├── crosses_point_grid │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-all-usa-states-with-crosses-grid.png │ │ │ └── requestData-new-york-with-crosses-grid-22-degree-rotation.png │ │ ├── requestData-all-usa-states-with-crosses-grid.json │ │ ├── requestData-new-york-with-crosses-grid-22-degree-rotation.json │ │ └── simpleReport.jrxml │ ├── customDynamicReport │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── requestData.json │ │ ├── simpleReport.jrxml │ │ └── table.jrxml │ ├── data_uri_json │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData-json-style-v2-not-svg.png │ │ ├── requestData-json-style-v2-not-svg.json │ │ └── simpleReport.jrxml │ ├── datasource_dynamic_tables │ │ ├── A4_Portrait.jrxml │ │ ├── A4_landscape.jrxml │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-landscape.png │ │ │ └── requestData-portrait.png │ │ ├── requestData-landscape.json │ │ ├── requestData-portrait.json │ │ ├── results_landscape.jrxml │ │ └── results_portrait.jrxml │ ├── datasource_many_dynamictables_legend │ │ ├── A4_Portrait.jrxml │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── mask-requestData.png │ │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── north.svg │ │ └── requestData.json │ ├── datasource_multiple_maps │ │ ├── A4_Portrait.jrxml │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── mask-requestData.png │ │ │ └── requestData.png │ │ └── requestData.json │ ├── geoext │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── http_processors │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── image_layer_base64 │ │ ├── A4_Landscape.jrxml │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData-layer-base64.png │ │ └── requestData-layer-base64.json │ ├── image_layer_test │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-with-error.png │ │ │ └── requestData.png │ │ ├── requestData-with-error.json │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── json_styling │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-json-style-line-v1.png │ │ │ ├── requestData-json-style-line-v2.png │ │ │ └── requestData-json-style-v2-not-svg.png │ │ ├── requestData-json-style-line-v1.json │ │ ├── requestData-json-style-line-v2.json │ │ ├── requestData-json-style-v2-not-svg.json │ │ └── simpleReport.jrxml │ ├── legend │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── legend_cropped │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── legend_dpi │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-noMaxWidth.png │ │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── requestData-noMaxWidth.json │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── legend_scaled │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── mapexport │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-bmp.bmp │ │ │ ├── requestData-jpeg.jpeg │ │ │ ├── requestData-pdf.pdf │ │ │ ├── requestData-png.png │ │ │ └── requestData-tiff.tiff │ │ ├── requestData-bmp.json │ │ ├── requestData-gif.json │ │ ├── requestData-jpeg.json │ │ ├── requestData-pdf.json │ │ ├── requestData-png.json │ │ └── requestData-tiff.json │ ├── merged_datasource │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── mask-requestData.png │ │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── main.jrxml │ │ ├── mapfish-icon.png │ │ ├── requestData.json │ │ └── table.jrxml │ ├── multiple_maps │ │ ├── README.md │ │ ├── config.yaml │ │ ├── countries.geojson │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── report.jrxml │ │ └── requestData.json │ ├── native_mix │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── report.jrxml │ │ └── requestData.json │ ├── oereb │ │ ├── CantonalLogo.jpg │ │ ├── Report.properties │ │ ├── Report_de.properties │ │ ├── Report_fr.properties │ │ ├── Report_it.properties │ │ ├── config.yaml │ │ ├── exclusion_of_liability.jrxml │ │ ├── expected_output │ │ │ ├── mask-requestData.png │ │ │ └── requestData.png │ │ ├── glossar.jrxml │ │ ├── legal.jrxml │ │ ├── legalprovision.jrxml │ │ ├── legend.jrxml │ │ ├── mainpage.jrxml │ │ ├── north.svg │ │ ├── pdfextract.jrxml │ │ ├── requestData.json │ │ ├── sRGB_IEC61966-2-1_black_scaled.icc │ │ ├── table.jrxml │ │ ├── textatweb.jrxml │ │ ├── themelist.jrxml │ │ ├── toc.jrxml │ │ ├── tocFull.jrxml │ │ ├── tocReduced.jrxml │ │ ├── topiclegend.jrxml │ │ ├── topicotherlegend.jrxml │ │ ├── topicpage.jrxml │ │ └── topicresponsibleoffice.jrxml │ ├── overviewmap_tyger_ny_EPSG_3857 │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData-scale-wmts1_0_0-full-kvp.png │ │ ├── requestData-scale-wmts1_0_0-full-kvp.json │ │ └── simpleReport.jrxml │ ├── paging │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-multipoint.png │ │ │ └── requestData-polygon.png │ │ ├── requestData-multipoint.json │ │ ├── requestData-polygon.json │ │ └── simpleReport.jrxml │ ├── pdf_a_compliant │ │ ├── AdobeRGB1998.icc │ │ ├── NorthArrow_10.svg │ │ ├── config.yaml │ │ ├── ny_feature.geojson │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── print_osm_new_york_EPSG_3857 │ │ ├── NorthArrow_10.svg │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-scale-osm.png │ │ │ └── requestData-scale-rotate-osm.png │ │ ├── requestData-scale-osm.json │ │ ├── requestData-scale-rotate-osm.json │ │ └── simpleReport.jrxml │ ├── print_osm_new_york_nosubreports │ │ ├── NorthArrow_10.svg │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── printtiledwms │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-bbox-auto-meta-tiled-wms1_1_1.png │ │ │ ├── requestData-bbox-auto-tiled-wms1_1_1.png │ │ │ ├── requestData-bbox-meta-tiled-wms1_1_1.png │ │ │ ├── requestData-bbox-tiled-wms1_1_1.png │ │ │ ├── requestData-bbox-wms1_1_1.png │ │ │ ├── requestData-scale-tiled-wms1_1_1.png │ │ │ └── requestData-scale-wms1_1_1.png │ │ ├── requestData-bbox-auto-meta-tiled-wms1_1_1.json │ │ ├── requestData-bbox-auto-tiled-wms1_1_1.json │ │ ├── requestData-bbox-meta-tiled-wms1_1_1.json │ │ ├── requestData-bbox-tiled-wms1_1_1.json │ │ ├── requestData-bbox-wms1_1_1.json │ │ ├── requestData-scale-tiled-wms1_1_1.json │ │ ├── requestData-scale-wms1_1_1.json │ │ └── simpleReport.jrxml │ ├── printwms_SpearfishStreams_EPSG_26713 │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-bbox-wms1_1_1.png │ │ │ ├── requestData-bbox-wms1_3_0.png │ │ │ ├── requestData-scale-wms1_1_1.png │ │ │ └── requestData-scale-wms1_3_0.png │ │ ├── requestData-bbox-wms1_1_1.json │ │ ├── requestData-bbox-wms1_3_0.json │ │ ├── requestData-scale-wms1_1_1.json │ │ ├── requestData-scale-wms1_3_0.json │ │ └── simpleReport.jrxml │ ├── printwms_UsaPopulation_EPSG_4326 │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-bbox-native-rotate-wms1_3_0.png │ │ │ ├── requestData-bbox-rotate-wms1_3_0.png │ │ │ ├── requestData-bbox-wms1_1_1.png │ │ │ ├── requestData-bbox-wms1_3_0.png │ │ │ ├── requestData-scale-native-rotate-wms1_1_1.png │ │ │ ├── requestData-scale-rotate-wms1_1_1.png │ │ │ ├── requestData-scale-wms1_1_1.png │ │ │ └── requestData-scale-wms1_3_0.png │ │ ├── requestData-bbox-native-rotate-wms1_3_0.json │ │ ├── requestData-bbox-rotate-wms1_3_0.json │ │ ├── requestData-bbox-wms1_1_1.json │ │ ├── requestData-bbox-wms1_3_0.json │ │ ├── requestData-scale-native-rotate-wms1_1_1.json │ │ ├── requestData-scale-rotate-wms1_1_1.json │ │ ├── requestData-scale-wms1_1_1.json │ │ ├── requestData-scale-wms1_3_0.json │ │ └── simpleReport.jrxml │ ├── printwms_archsites_server_type │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-scale-wms1_0_0-high-dpi.png │ │ │ └── requestData-scale-wms1_0_0.png │ │ ├── requestData-scale-wms1_0_0-high-dpi.json │ │ ├── requestData-scale-wms1_0_0.json │ │ └── simpleReport.jrxml │ ├── printwms_background_layer │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-no-data-layer-300dpi.png │ │ │ ├── requestData-no-data-layer.png │ │ │ ├── requestData-one-data-layer.png │ │ │ └── requestData-override-background.png │ │ ├── requestData-no-data-layer-300dpi.json │ │ ├── requestData-no-data-layer.json │ │ ├── requestData-one-data-layer.json │ │ ├── requestData-override-background.json │ │ └── simpleReport.jrxml │ ├── printwms_tyger_ny_EPSG_3857 │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-multi-layer-openlayers-2-compatible-style-wms.png │ │ │ ├── requestData-scale-rotate-wms1_0_0.png │ │ │ ├── requestData-scale-wms1_0_0-high-dpi-svg-vector.png │ │ │ ├── requestData-scale-wms1_0_0-high-dpi.png │ │ │ └── requestData-scale-wms1_0_0.png │ │ ├── requestData-multi-layer-openlayers-2-compatible-style-wms.json │ │ ├── requestData-scale-rotate-wms1_0_0.json │ │ ├── requestData-scale-wms1_0_0-high-dpi-svg-vector.json │ │ ├── requestData-scale-wms1_0_0-high-dpi.json │ │ ├── requestData-scale-wms1_0_0.json │ │ └── simpleReport.jrxml │ ├── printwmts_tyger_ny_EPSG_3857 │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-scale-rotate-wmts1_0_0-full-kvp.png │ │ │ └── requestData-scale-wmts1_0_0-full-kvp.png │ │ ├── requestData-scale-rotate-wmts1_0_0-full-kvp.json │ │ ├── requestData-scale-wmts1_0_0-full-kvp.json │ │ └── simpleReport.jrxml │ ├── report │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── report.jrxml │ │ └── requestData.json │ ├── request_rewrite │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── report.jrxml │ │ └── requestData.json │ ├── resource_bundle │ │ ├── README.md │ │ ├── Report.properties │ │ ├── Report_fr_CH.properties │ │ ├── config.yaml │ │ ├── countries.geojson │ │ ├── expected_output │ │ │ ├── requestData-en.png │ │ │ └── requestData.png │ │ ├── report.jrxml │ │ ├── requestData-en.json │ │ └── requestData.json │ ├── secured_templates │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── simple │ │ ├── README.md │ │ ├── config.yaml │ │ ├── countries.geojson │ │ ├── expected_output │ │ │ ├── requestData-bmp.bmp │ │ │ ├── requestData-fontawesome-5.png │ │ │ ├── requestData-fontawesome-6.png │ │ │ ├── requestData-jpeg.jpeg │ │ │ ├── requestData-png.png │ │ │ └── requestData-tiff.tiff │ │ ├── report.jrxml │ │ ├── requestData-bmp.json │ │ ├── requestData-fontawesome-5.json │ │ ├── requestData-fontawesome-6.json │ │ ├── requestData-jpeg.json │ │ ├── requestData-pdf.json │ │ ├── requestData-png.json │ │ └── requestData-tiff.json │ ├── simple_A0 │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── report.jrxml │ │ └── requestData.json │ ├── updatePdfMetadata │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ └── verboseExample │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── requestData.json │ │ ├── resources │ │ └── geojson.json │ │ ├── simpleReport.jrxml │ │ └── table.jrxml │ ├── examples_to_port │ ├── README.md │ ├── print_tms_tyger_ny_EPSG_3857 │ │ ├── config.yaml │ │ ├── requestData-scale-tms1_0_0.json │ │ └── simpleReport.jrxml │ └── print_vector_new_york_EPSG_3857 │ │ ├── config.yaml │ │ ├── requestData-scale-vector.json │ │ └── simpleReport.jrxml │ └── test-http-request-factory-application-context.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew-debug ├── gradlew-debug.bat ├── gradlew.bat ├── jMeter ├── Readme.md ├── jmeter-test-plan.jmx └── large-request.json ├── jitpack.yml ├── publish ├── README.md └── build.gradle ├── pyproject.toml ├── settings.gradle └── spell-ignore-words.txt /.github/ci-upgrade.yaml: -------------------------------------------------------------------------------- 1 | values: 2 | changelogAdditionalArgs: 3 | - --tag-skip=3.23.0 4 | 5 | disabled: 6 | - changelogCreateRelease 7 | -------------------------------------------------------------------------------- /.github/ghci.yaml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://geoservices-int.camptocamp.com/github/schema.json 2 | 3 | changelog: 4 | create-release: false 5 | -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- 1 | ignored: 2 | - DL3008 # pin version: https://github.com/hadolint/hadolint/wiki/DL3008 3 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true 2 | -------------------------------------------------------------------------------- /ci/requirements.txt: -------------------------------------------------------------------------------- 1 | c2cciutils==1.7.3 2 | pre-commit==4.2.0 3 | tag-publish==1.0.1 4 | -------------------------------------------------------------------------------- /core/.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !docker/ 3 | !extraConfigFor/ 4 | -------------------------------------------------------------------------------- /core/docker/usr/local/tomcat/webapps/ROOT/WEB-INF/lib/Cadastra.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/docker/usr/local/tomcat/webapps/ROOT/WEB-INF/lib/Cadastra.jar -------------------------------------------------------------------------------- /core/docker/usr/share/fonts/truetype/font-awesome-5/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/docker/usr/share/fonts/truetype/font-awesome-5/fa-brands-400.ttf -------------------------------------------------------------------------------- /core/docker/usr/share/fonts/truetype/font-awesome-5/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/docker/usr/share/fonts/truetype/font-awesome-5/fa-regular-400.ttf -------------------------------------------------------------------------------- /core/docker/usr/share/fonts/truetype/font-awesome-5/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/docker/usr/share/fonts/truetype/font-awesome-5/fa-solid-900.ttf -------------------------------------------------------------------------------- /core/docker/usr/share/fonts/truetype/font-awesome-6/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/docker/usr/share/fonts/truetype/font-awesome-6/fa-brands-400.ttf -------------------------------------------------------------------------------- /core/docker/usr/share/fonts/truetype/font-awesome-6/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/docker/usr/share/fonts/truetype/font-awesome-6/fa-regular-400.ttf -------------------------------------------------------------------------------- /core/docker/usr/share/fonts/truetype/font-awesome-6/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/docker/usr/share/fonts/truetype/font-awesome-6/fa-solid-900.ttf -------------------------------------------------------------------------------- /core/docker/usr/share/fonts/truetype/font-awesome-6/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/docker/usr/share/fonts/truetype/font-awesome-6/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/attribute/map/package-info.java: -------------------------------------------------------------------------------- 1 | /** Attributes related to map. */ 2 | package org.mapfish.print.attribute.map; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/attribute/package-info.java: -------------------------------------------------------------------------------- 1 | /** Contains the attribute type and implementations. */ 2 | package org.mapfish.print.attribute; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/cli/package-info.java: -------------------------------------------------------------------------------- 1 | /** This package contains classes for the command-line interface. */ 2 | package org.mapfish.print.cli; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/config/access/package-info.java: -------------------------------------------------------------------------------- 1 | /** The access package. */ 2 | package org.mapfish.print.config.access; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/config/package-info.java: -------------------------------------------------------------------------------- 1 | /** Contains classes used for parsing Configuration. */ 2 | package org.mapfish.print.config; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/http/package-info.java: -------------------------------------------------------------------------------- 1 | /** Package contains support classes for making https requests. */ 2 | package org.mapfish.print.http; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/jasperreports/package-info.java: -------------------------------------------------------------------------------- 1 | /** Json wrappers, errors and utilities. */ 2 | package org.mapfish.print.jasperreports; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/geotools/function/package-info.java: -------------------------------------------------------------------------------- 1 | /** Package containing Custom geotools functions for mapfish print. */ 2 | package org.mapfish.print.map.geotools.function; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/geotools/grid/package-info.java: -------------------------------------------------------------------------------- 1 | /** This package contains classes for adding grid layers to maps. */ 2 | package org.mapfish.print.map.geotools.grid; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/geotools/package-info.java: -------------------------------------------------------------------------------- 1 | /** Contains layers that are based on geotools DataStore objects. */ 2 | package org.mapfish.print.map.geotools; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/image/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * This package contains classes related to layers that are based on a single image. This includes 3 | * WMS, raw image + bbox, etc... 4 | */ 5 | package org.mapfish.print.map.image; 6 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/image/wms/package-info.java: -------------------------------------------------------------------------------- 1 | /** WMS layer and supporting classes. */ 2 | package org.mapfish.print.map.image.wms; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/package-info.java: -------------------------------------------------------------------------------- 1 | /** Map rendering code and plugins. */ 2 | package org.mapfish.print.map; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/style/json/package-info.java: -------------------------------------------------------------------------------- 1 | /** Contains the classes required to support the different json based styles. */ 2 | package org.mapfish.print.map.style.json; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/style/package-info.java: -------------------------------------------------------------------------------- 1 | /** Contains parsers for parsing styles for rendering layers. */ 2 | package org.mapfish.print.map.style; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/tiled/osm/package-info.java: -------------------------------------------------------------------------------- 1 | /** Support for OSM map layers. */ 2 | package org.mapfish.print.map.tiled.osm; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/tiled/wms/package-info.java: -------------------------------------------------------------------------------- 1 | /** Support for tiled WMS map layers. */ 2 | package org.mapfish.print.map.tiled.wms; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/tiled/wmts/package-info.java: -------------------------------------------------------------------------------- 1 | /** Classes required to get a raster from a WMTS server. */ 2 | package org.mapfish.print.map.tiled.wmts; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/metrics/package-info.java: -------------------------------------------------------------------------------- 1 | /** Utility classes for adding Metrics instrumentation to servlets or logging etc... */ 2 | package org.mapfish.print.metrics; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/output/package-info.java: -------------------------------------------------------------------------------- 1 | /** Classes responsible for writing the report to one type of format or another. */ 2 | package org.mapfish.print.output; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/package-info.java: -------------------------------------------------------------------------------- 1 | /** The main mapfish print package. */ 2 | package org.mapfish.print; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/parser/package-info.java: -------------------------------------------------------------------------------- 1 | /** Contains code for parsing json into objects. */ 2 | package org.mapfish.print.parser; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/processor/http/matcher/package-info.java: -------------------------------------------------------------------------------- 1 | /** Contains classes for performing matches on urls. */ 2 | package org.mapfish.print.processor.http.matcher; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/processor/http/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * This package contains processors that affect the {@link 3 | * org.mapfish.print.http.MfClientHttpRequestFactory}. 4 | */ 5 | package org.mapfish.print.processor.http; 6 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/processor/jasper/package-info.java: -------------------------------------------------------------------------------- 1 | /** The package for processors depending on jasper and for creating jasper reports. */ 2 | package org.mapfish.print.processor.jasper; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/processor/map/package-info.java: -------------------------------------------------------------------------------- 1 | /** Package containing processors for generating maps. */ 2 | package org.mapfish.print.processor.map; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/processor/map/scalebar/package-info.java: -------------------------------------------------------------------------------- 1 | /** Package containing classes for generating a scalebar. */ 2 | package org.mapfish.print.processor.map.scalebar; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/processor/package-info.java: -------------------------------------------------------------------------------- 1 | /** The parent package for processors. */ 2 | package org.mapfish.print.processor; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/servlet/fileloader/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains extension point and extensions for loading configuration files and resources required 3 | * for printing the reports described in those configuration files. 4 | */ 5 | package org.mapfish.print.servlet.fileloader; 6 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/servlet/job/loader/package-info.java: -------------------------------------------------------------------------------- 1 | /** This package contains classes that can load generated reports from various URLs. */ 2 | package org.mapfish.print.servlet.job.loader; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/servlet/package-info.java: -------------------------------------------------------------------------------- 1 | /** Package containing the servlet code. It is responsible for the API. */ 2 | package org.mapfish.print.servlet; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/servlet/registry/package-info.java: -------------------------------------------------------------------------------- 1 | /** Contains interfaces and implementation of the registry API. */ 2 | package org.mapfish.print.servlet.registry; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/test/util/package-info.java: -------------------------------------------------------------------------------- 1 | /** Test utilities to be shared among dependent projects. */ 2 | package org.mapfish.print.test.util; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/url/data/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Package containing a data uri handler (needs to be nested like this to be picked up by the 3 | * java.protocol.handler.pkgs system property). 4 | */ 5 | package org.mapfish.print.url.data; 6 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/url/package-info.java: -------------------------------------------------------------------------------- 1 | /** Package containing a data uri handler. */ 2 | package org.mapfish.print.url; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/wrapper/json/package-info.java: -------------------------------------------------------------------------------- 1 | /** Json wrappers, errors and utilities. */ 2 | package org.mapfish.print.wrapper.json; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/wrapper/multi/package-info.java: -------------------------------------------------------------------------------- 1 | /** Wrappers from different sources, errors and utilities. */ 2 | package org.mapfish.print.wrapper.multi; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/wrapper/package-info.java: -------------------------------------------------------------------------------- 1 | /** Object (Json/Yaml) wrappers, errors and utilities. */ 2 | package org.mapfish.print.wrapper; 3 | -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/wrapper/yaml/package-info.java: -------------------------------------------------------------------------------- 1 | /** Yaml wrappers, errors and utilities. */ 2 | package org.mapfish.print.wrapper.yaml; 3 | -------------------------------------------------------------------------------- /core/src/main/resources/META-INF/services/org.geotools.api.referencing.crs.CRSAuthorityFactory: -------------------------------------------------------------------------------- 1 | org.mapfish.print.map.CustomEPSGCodes 2 | -------------------------------------------------------------------------------- /core/src/main/resources/META-INF/services/org.geotools.filter.FunctionFactory: -------------------------------------------------------------------------------- 1 | org.mapfish.print.map.geotools.function.FunctionFactory 2 | -------------------------------------------------------------------------------- /core/src/main/resources/default_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/main/resources/default_error.png -------------------------------------------------------------------------------- /core/src/main/resources/epsg.properties: -------------------------------------------------------------------------------- 1 | # This file is used to define EPSG codes that are custom to your project. 2 | -------------------------------------------------------------------------------- /core/src/main/resources/org/mapfish/print/processor/map/License.md: -------------------------------------------------------------------------------- 1 | The north arrow graphic 'NorthArrow_10.svg' was borrowed from QGIS: 2 | https://github.com/qgis/QGIS/tree/d1cdc2085c/images/svg/arrows/ 3 | -------------------------------------------------------------------------------- /core/src/main/resources/org/mapfish/print/version.properties: -------------------------------------------------------------------------------- 1 | info.release=@application.version@ 2 | info.module=MapFishPrint 3 | #info.timestamp=... 4 | -------------------------------------------------------------------------------- /core/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /core/src/main/webapp/mapfish_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/main/webapp/mapfish_transparent.png -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/attribute/FeaturesAttributeTest.java: -------------------------------------------------------------------------------- 1 | package org.mapfish.print.attribute; 2 | 3 | public class FeaturesAttributeTest extends AbstractAttributeTest { 4 | protected FeaturesAttribute createAttribute() { 5 | return new FeaturesAttribute(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/attribute/FloatAttributeTest.java: -------------------------------------------------------------------------------- 1 | package org.mapfish.print.attribute; 2 | 3 | public class FloatAttributeTest extends AbstractAttributeTest { 4 | 5 | @Override 6 | protected FloatAttribute createAttribute() { 7 | return new FloatAttribute(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/attribute/IntegerAttributeTest.java: -------------------------------------------------------------------------------- 1 | package org.mapfish.print.attribute; 2 | 3 | public class IntegerAttributeTest extends AbstractAttributeTest { 4 | 5 | @Override 6 | protected Attribute createAttribute() { 7 | return new IntegerAttribute(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/attribute/LegendAttributeTest.java: -------------------------------------------------------------------------------- 1 | package org.mapfish.print.attribute; 2 | 3 | public class LegendAttributeTest extends AbstractAttributeTest { 4 | 5 | @Override 6 | protected Attribute createAttribute() { 7 | return new LegendAttribute(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/attribute/TableAttributeTest.java: -------------------------------------------------------------------------------- 1 | package org.mapfish.print.attribute; 2 | 3 | public class TableAttributeTest extends AbstractAttributeTest { 4 | 5 | @Override 6 | protected Attribute createAttribute() { 7 | return new TableAttribute(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/config/access/package-info.java: -------------------------------------------------------------------------------- 1 | /** Json wrappers, errors and utilities. */ 2 | package org.mapfish.print.config.access; 3 | -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/config/package-info.java: -------------------------------------------------------------------------------- 1 | /** The parent package for processors. */ 2 | package org.mapfish.print.config; 3 | -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/processor/map/package-info.java: -------------------------------------------------------------------------------- 1 | /** The parent package for processors. */ 2 | package org.mapfish.print.processor.map; 3 | -------------------------------------------------------------------------------- /core/src/test/resources/META-INF/services/javax.mail.Provider: -------------------------------------------------------------------------------- 1 | org.mapfish.print.servlet.SmtpProviderTestUtils 2 | -------------------------------------------------------------------------------- /core/src/test/resources/fonts/ComingSoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/fonts/ComingSoon.ttf -------------------------------------------------------------------------------- /core/src/test/resources/fonts/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The font 'Coming Soon' is licensed under the Apache license, see: 2 | https://github.com/google/fonts/blob/master/apache/comingsoon/LICENSE.txt 3 | -------------------------------------------------------------------------------- /core/src/test/resources/icons/info-crosswalk-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/icons/info-crosswalk-9.png -------------------------------------------------------------------------------- /core/src/test/resources/icons/warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/icons/warn.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/icons/men-at-work.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/icons/men-at-work.jpeg -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/arbres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/legends/arbres.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/legend1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/legends/legend1.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/legend2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/legends/legend2.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/legend3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/legends/legend3.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/legend4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/legends/legend4.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/perturbations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/legends/perturbations.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/points-de-vente.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/legends/points-de-vente.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/stationement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/legends/stationement.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1205x1538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/ny-tiles/1205x1538.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1205x1539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/ny-tiles/1205x1539.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1205x1540.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/ny-tiles/1205x1540.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1206x1538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/ny-tiles/1206x1538.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1206x1539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/ny-tiles/1206x1539.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1206x1540.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/ny-tiles/1206x1540.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1207x1538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/ny-tiles/1207x1538.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1207x1539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/ny-tiles/1207x1539.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1207x1540.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/ny-tiles/1207x1540.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/blank.gif -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/close.gif -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/cloud-popup-relative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/cloud-popup-relative.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/drag-rectangle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/drag-rectangle-on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/east-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/east-mini.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/layer-switcher-maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/layer-switcher-maximize.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/layer-switcher-minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/layer-switcher-minimize.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/marker-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/marker-blue.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/marker-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/marker-gold.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/marker-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/marker-green.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/marker.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/measuring-stick-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/measuring-stick-off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/measuring-stick-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/measuring-stick-on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/north-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/north-mini.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/panning-hand-off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/panning-hand-on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/slider.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/south-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/south-mini.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/west-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/west-mini.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/zoom-minus-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/zoom-minus-mini.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/zoom-plus-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/zoom-plus-mini.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/zoom-world-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/zoom-world-mini.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/zoombar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/img/zoombar.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/framedCloud.css: -------------------------------------------------------------------------------- 1 | .olFramedCloudPopupContent { 2 | padding: 5px; 3 | overflow: auto; 4 | } 5 | -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/add_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/add_point_off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/add_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/add_point_on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/blank.gif -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/close.gif -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/drag-rectangle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/drag-rectangle-on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/draw_line_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/draw_line_off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/draw_line_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/draw_line_on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/draw_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/draw_point_off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/draw_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/draw_point_on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/draw_polygon_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/draw_polygon_off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/draw_polygon_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/draw_polygon_on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/editing_tool_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/editing_tool_bar.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/move_feature_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/move_feature_off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/move_feature_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/move_feature_on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/overview_replacement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/overview_replacement.gif -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/pan_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/pan_off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/pan_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/pan_on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/panning-hand-off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/panning-hand-on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/remove_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/remove_point_off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/remove_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/remove_point_on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/view_next_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/view_next_off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/view_next_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/view_next_on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/view_previous_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/view_previous_off.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/img/view_previous_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/openlayers/theme/default/img/view_previous_on.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm-custom-params/16/33475/23928.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm-custom-params/16/33475/23928.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm-custom-params/16/33475/23929.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm-custom-params/16/33475/23929.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm-custom-params/16/33475/23930.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm-custom-params/16/33475/23930.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm-custom-params/16/33476/23928.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm-custom-params/16/33476/23928.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm-custom-params/16/33476/23929.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm-custom-params/16/33476/23929.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm-custom-params/16/33476/23930.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm-custom-params/16/33476/23930.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm-custom-params/16/33477/23928.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm-custom-params/16/33477/23928.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm-custom-params/16/33477/23929.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm-custom-params/16/33477/23929.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm-custom-params/16/33477/23930.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm-custom-params/16/33477/23930.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/12/1205/1538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/12/1205/1538.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/12/1205/1539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/12/1205/1539.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/12/1206/1538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/12/1206/1538.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/12/1206/1539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/12/1206/1539.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4823/6155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/14/4823/6155.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4823/6156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/14/4823/6156.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4824/6155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/14/4824/6155.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4824/6156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/14/4824/6156.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4825/6155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/14/4825/6155.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4825/6156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/14/4825/6156.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4826/6155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/14/4826/6155.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4826/6156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/14/4826/6156.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9646/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9646/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9646/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9646/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9646/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9646/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9647/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9647/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9647/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9647/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9647/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9647/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9648/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9648/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9648/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9648/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9648/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9648/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9649/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9649/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9649/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9649/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9649/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9649/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9650/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9650/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9650/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9650/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9650/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9650/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9651/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9651/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9651/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9651/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9651/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9651/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9652/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9652/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9652/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9652/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9652/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/osm/15/9652/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/states-native-rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/states-native-rotation.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/tiger-ny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/tiger-ny.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/zoomed-in-ny-tiger.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/map-data/zoomed-in-ny-tiger.tif -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/bool/requestData.json: -------------------------------------------------------------------------------- 1 | { 2 | "layout": "main", 3 | "outputFormat": "pdf", 4 | "attributes": { 5 | "field1": true, 6 | "field2": false 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/jsonDatasource/requestData.json: -------------------------------------------------------------------------------- 1 | { 2 | "layout": "main", 3 | "outputFormat": "pdf", 4 | "attributes": { 5 | "json": { "a": { "b": "s1" } } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/map/map_attributes/config-json-dpi.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | attributes: 4 | map: !map 5 | width: 500 6 | height: 100 7 | maxDpi: 400 8 | dpiSuggestions: [90, 200, 300, 500] 9 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/map/map_attributes/config-json.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | attributes: 4 | map: !map 5 | width: 500 6 | height: 100 7 | maxDpi: 400 8 | dpiSuggestions: [90, 200, 300, 400] 9 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/map/map_attributes/config-zoomTo.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | attributes: 4 | map: !map 5 | width: 500 6 | height: 100 7 | maxDpi: 400 8 | dpiSuggestions: [90, 200, 300, 400] 9 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/map/map_attributes/config-zoomToCenter.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | attributes: 4 | map: !map 5 | width: 500 6 | height: 100 7 | maxDpi: 400 8 | dpiSuggestions: [90, 200, 300, 400] 9 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/map/map_attributes/requestData-yaml.json: -------------------------------------------------------------------------------- 1 | { 2 | "attributes": { 3 | "map": {} 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/map/overviewmap_attributes/requestData-yaml.json: -------------------------------------------------------------------------------- 1 | { 2 | "attributes": { 3 | "map": {} 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/scalebar/requestData.json: -------------------------------------------------------------------------------- 1 | { 2 | "attributes": {} 3 | } 4 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/string/requestData.json: -------------------------------------------------------------------------------- 1 | { 2 | "layout": "main", 3 | "outputFormat": "pdf", 4 | "attributes": { 5 | "field1": "a loooooooooooooooooooong text", 6 | "field2": "a short text" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/string/requestDataError.json: -------------------------------------------------------------------------------- 1 | { 2 | "layout": "main", 3 | "outputFormat": "pdf", 4 | "attributes": { 5 | "field1": "a loooooooooooooooooooong text", 6 | "field2": "a loooooooooooooooooooong text" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/style_attributes/config.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | attributes: 4 | styleDef: !style {} 5 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/cli/expectedV3Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/cli/expectedV3Image.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/config/configRequiringConfigurationInjection.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | attributes: 4 | att: !configInjectionAttribute {} 5 | processors: 6 | - !configInjectionProcessor {} 7 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/config/configRequiringSpringInjection.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | attributes: 4 | att: !springInjectionAttribute {} 5 | processors: 6 | - !springInjectionProcessor {} 7 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/config/configWithAttributeAsProcessor_bad_config.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | processors: 4 | - !springInjectionAttribute {} 5 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/config/configWithProcessorAsAttribute_bad_config.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | attributes: 4 | att: !springInjectionProcessor {} 5 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/http/configuration/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/http/configuration/keystore.jks -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/http/proxy/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/http/proxy/keystore.jks -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/map/geotools/geojson/geojson_org-1.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "Feature", 4 | "geometry": { 5 | "type": "Point", 6 | "coordinates": [125.6, 10.1] 7 | }, 8 | "properties": { 9 | "name": "Dinagat Islands" 10 | } 11 | } 12 | ] 13 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/map/style/json/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/map/style/json/mark.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/output/pdf-config/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/output/pdf-config/logo.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/output/simple_map/config-missing-map.yaml: -------------------------------------------------------------------------------- 1 | throwErrorOnExtraParameters: true 2 | templates: 3 | main: !template 4 | reportTemplate: simple-map.jrxml 5 | processors: 6 | - !reportBuilder 7 | directory: '.' 8 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/output/simple_map/expectedReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/output/simple_map/expectedReport.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/output/simple_map/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/output/simple_map/logo.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/http/add-headers/config-createmap.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | attributes: 4 | map: !map 5 | width: 500 6 | height: 100 7 | processors: 8 | - !addHeaders {} 9 | - !createMap {} 10 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/http/forward-headers/config-createmap.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | attributes: 4 | map: !map 5 | width: 500 6 | height: 100 7 | processors: 8 | - !forwardHeaders {} 9 | - !createMap {} 10 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/http/forward-headers/config-forward-all.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | processors: 4 | - !forwardHeaders 5 | all: true 6 | - !forwardHeadersTestProcessor2 {} 7 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/http/forward-headers/config.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | processors: 4 | - !forwardHeaders 5 | headers: [header1, Header2] 6 | - !forwardHeadersTestProcessor {} 7 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/http/map-uri/NorthArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/http/map-uri/NorthArrow.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/http/map-uri/config-createmap.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | attributes: 4 | map: !map 5 | width: 500 6 | height: 100 7 | processors: 8 | - !mapUri {} 9 | - !createMap {} 10 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/http/map-uri/config.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | processors: 4 | - !mapUri 5 | mapping: 6 | (http)://localhost(.*): '$1://127.0.0.1$2' 7 | - !mapUriTestProcessor {} 8 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/http/use-http-for-https/config-createmap.yaml: -------------------------------------------------------------------------------- 1 | templates: 2 | main: !template 3 | attributes: 4 | map: !map 5 | width: 500 6 | height: 100 7 | processors: 8 | - !useHttpForHttps {} 9 | - !createMap {} 10 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/date-format/requestData.json: -------------------------------------------------------------------------------- 1 | { 2 | "lang": "fr_CH", 3 | "attributes": { 4 | "timezone": "PST" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/legend_dynamic/legend1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/legend_dynamic/legend1.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/legend_dynamic/legend2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/legend_dynamic/legend2.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/legend_dynamic/legend3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/legend_dynamic/legend3.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/table-dynamic-defaults/expectedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/table-dynamic-defaults/expectedImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/table-dynamic-defaults/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/table-dynamic-defaults/logo.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/table-dynamic/expectedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/table-dynamic/expectedImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/table-dynamic/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/table-dynamic/logo.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/table-image-column-resolver/expectedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/table-image-column-resolver/expectedImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/table-image-column-resolver/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/table-image-column-resolver/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/table/expectedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/table/expectedImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/table_converters/expectedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/table_converters/expectedImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/table_converters_dyn/expectedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/table_converters_dyn/expectedImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/table_converters_dyn/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/table_converters_dyn/logo.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/jasper/tablelist/expected-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/jasper/tablelist/expected-page.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/add-background-layers/expectedOverviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/add-background-layers/expectedOverviewImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/add-background-layers/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/add-background-layers/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/add-overlay-layers/expectedOverviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/add-overlay-layers/expectedOverviewImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/add-overlay-layers/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/add-overlay-layers/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/bbox_geojson_fixedscale/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/bbox_geojson_fixedscale/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/bbox_geojson_flexible_scale/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/bbox_geojson_flexible_scale/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/bbox_geojson_label_style/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/bbox_geojson_label_style/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/bbox_geojson_line_style/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/bbox_geojson_line_style/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_geojson_empty_collection/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_geojson_empty_collection/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_geojson_json_style_v1/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_geojson_json_style_v1/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_geojson_zoomTo/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_geojson_zoomTo/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_geojson_zoomToExtent/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_geojson_zoomToExtent/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_geotiff_flexible_scale/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_geotiff_flexible_scale/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_geotiff_flexible_scale/sampleGeoTiff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_geotiff_flexible_scale/sampleGeoTiff.tif -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_gml_flexible_scale/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_gml_flexible_scale/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_osm_fixedscale/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_osm_fixedscale/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_osm_fixedscale_dpi/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_osm_fixedscale_dpi/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_osm_grid_space_fixedscale/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_osm_grid_space_fixedscale/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_osm_rotation_fixedscale/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_osm_rotation_fixedscale/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_tiledwms_flexiblescale/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_tiledwms_flexiblescale/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_wms1_0_0_flexiblescale/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_wms1_0_0_flexiblescale/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_wms_rotation_small_tiles/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_wms_rotation_small_tiles/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_wms_rotation_small_tiles/green_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_wms_rotation_small_tiles/green_square.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_wms_rotation_small_tiles/red_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_wms_rotation_small_tiles/red_square.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_wmts_fixedscale/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_wmts_fixedscale/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/center_wmts_fixedscale_rest/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/center_wmts_fixedscale_rest/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/image_layer_test/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/image_layer_test/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/north_arrow/NorthArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/north_arrow/NorthArrow.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/north_arrow/NorthArrow_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/north_arrow/NorthArrow_10.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow-bg.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow-png-square-45-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow-png-square-45-up.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow-png-square-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow-png-square-down.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow-png-square-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow-png-square-up.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow_10-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow_10-bg.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow_10-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow_10-default.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expected-north-arrow_10.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expectedNorthArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/north_arrow/expectedNorthArrow.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/north_arrow_svg/expectedNorthArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/north_arrow_svg/expectedNorthArrow.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/opacity_center_wmts_fixedscale/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/opacity_center_wmts_fixedscale/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/osm_custom_params/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/osm_custom_params/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/overview_map/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/overview_map/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/overview_map_custom_bounds/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/overview_map_custom_bounds/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/overview_map_custom_layer/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/overview_map_custom_layer/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/overview_map_rotate/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/overview_map_rotate/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/overview_map_style/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/overview_map_style/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/paging_processor_test/expectedSimpleImage-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/paging_processor_test/expectedSimpleImage-default.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/center_osm_fixedscale/expectedScalebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/center_osm_fixedscale/expectedScalebar.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/center_osm_fixedscale/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/center_osm_fixedscale/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-bar-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-bar-bg.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-bar-subs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-bar-subs.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-bar-text-above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-bar-text-above.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-bar-vertical-text-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-bar-vertical-text-left.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-bar-vertical-text-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-bar-vertical-text-right.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-bar.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-barsub-subs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-barsub-subs.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-barsub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-barsub.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-graphic-dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-graphic-dpi.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-graphic-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-graphic-svg.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-graphic.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-line-labels-rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-line-labels-rotated.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-line-subs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-line-subs.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-line.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-middle-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-middle-center.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expected-scalebar-top-right.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/scalebar/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/scalebar/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/setfeaturesprocessor/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/setfeaturesprocessor/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/setparamprocessor/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/setparamprocessor/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/processor/map/wmts_buffer/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/processor/map/wmts_buffer/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/servlet/expectedSimpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/servlet/expectedSimpleImage.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/servlet/fileloader/resourceFile.txt: -------------------------------------------------------------------------------- 1 | some resource file for the configuration 2 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/servlet/sampleGeoTiff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/servlet/sampleGeoTiff.tif -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/test/util/imageSimilarity/with.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/test/util/imageSimilarity/with.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/test/util/imageSimilarity/without.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/core/src/test/resources/org/mapfish/print/test/util/imageSimilarity/without.png -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/src/main/resources/images/adapt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/images/adapt1.png -------------------------------------------------------------------------------- /docs/src/main/resources/images/expression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/images/expression.png -------------------------------------------------------------------------------- /docs/src/main/resources/images/image_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/images/image_table.png -------------------------------------------------------------------------------- /docs/src/main/resources/images/jasperbands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/images/jasperbands.png -------------------------------------------------------------------------------- /docs/src/main/resources/images/jaspersoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/images/jaspersoft.png -------------------------------------------------------------------------------- /docs/src/main/resources/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/images/preview.png -------------------------------------------------------------------------------- /docs/src/main/resources/images/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/docs/src/main/resources/images/prompt.png -------------------------------------------------------------------------------- /docs/src/main/resources/templates/_sub_nav.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /docs/src/main/resources/templates/fileloaders.html: -------------------------------------------------------------------------------- 1 |

Plugins to load config resources.

2 | -------------------------------------------------------------------------------- /docs/src/main/resources/templates/outputformats.html: -------------------------------------------------------------------------------- 1 |

Available output formats.

2 | -------------------------------------------------------------------------------- /docs/src/main/resources/templates/styles.html: -------------------------------------------------------------------------------- 1 |

Styles for vector layers.

2 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/img_sample/Pk50095.tfw: -------------------------------------------------------------------------------- 1 | 42.34136799999990 2 | 0.00000000000000 3 | 0.00000000000000 4 | -42.34136799999990 5 | 347671.10155259108000 6 | 5196940.18217525630000 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/img_sample/Pk50095.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/img_sample/Pk50095.tif -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/img_sample/usa.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/img_sample/usa.jpeg -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/img_sample/usa.meta: -------------------------------------------------------------------------------- 1 | Layer Name = Map Capture 1111440603125 2 | Origin Longitude = -130.85168 3 | Origin Latitude = 20.7052 4 | Corner Longitude = -62.0054 5 | Corner Latitude = 54.1141 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_0.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 6.375141924963005 6 | 38.491372862272705 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_0.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_1.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 9.271843573824427 6 | 38.491372862272705 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_1.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_10.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 6.375141924963005 6 | 42.530970923550704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_10.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_11.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 9.271843573824427 6 | 42.530970923550704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_11.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_12.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 12.168545222685848 6 | 42.530970923550704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_12.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_13.pgw: -------------------------------------------------------------------------------- 1 | 0.0579340329772284 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 15.06524687154727 6 | 42.530970923550704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_13.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_14.pgw: -------------------------------------------------------------------------------- 1 | 0.05793403297722847 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 17.96194852040869 6 | 42.530970923550704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_14.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_15.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 6.375141924963005 6 | 44.550769954189704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_15.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_16.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 9.271843573824427 6 | 44.550769954189704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_16.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_17.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 12.168545222685848 6 | 44.550769954189704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_17.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_18.pgw: -------------------------------------------------------------------------------- 1 | 0.0579340329772284 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 15.06524687154727 6 | 44.550769954189704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_18.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_19.pgw: -------------------------------------------------------------------------------- 1 | 0.05793403297722847 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 17.96194852040869 6 | 44.550769954189704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_19.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_2.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 12.168545222685848 6 | 38.491372862272705 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_2.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_20.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 6.375141924963005 6 | 46.570568984828704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_20.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_21.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 9.271843573824427 6 | 46.570568984828704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_21.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_22.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 12.168545222685848 6 | 46.570568984828704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_22.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_23.pgw: -------------------------------------------------------------------------------- 1 | 0.0579340329772284 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 15.06524687154727 6 | 46.570568984828704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_23.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_24.pgw: -------------------------------------------------------------------------------- 1 | 0.05793403297722847 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 17.96194852040869 6 | 46.570568984828704 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_24.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_3.pgw: -------------------------------------------------------------------------------- 1 | 0.0579340329772284 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 15.06524687154727 6 | 38.491372862272705 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_3.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_4.pgw: -------------------------------------------------------------------------------- 1 | 0.05793403297722847 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 17.96194852040869 6 | 38.491372862272705 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_4.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_5.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 6.375141924963005 6 | 40.511171892911705 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_5.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_6.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 9.271843573824427 6 | 40.511171892911705 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_6.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_7.pgw: -------------------------------------------------------------------------------- 1 | 0.057934032977228433 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 12.168545222685848 6 | 40.511171892911705 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_7.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_8.pgw: -------------------------------------------------------------------------------- 1 | 0.0579340329772284 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 15.06524687154727 6 | 40.511171892911705 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_8.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_9.pgw: -------------------------------------------------------------------------------- 1 | 0.05793403297722847 2 | 0.0 3 | 0.0 4 | -0.04039598061277999 5 | 17.96194852040869 6 | 40.511171892911705 7 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/global_mosaic_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/global_mosaic_9.png -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/mosaic.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/mosaic.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/mosaic.properties: -------------------------------------------------------------------------------- 1 | # 2 | #Thu Aug 17 14:00:58 CEST 2006 3 | Name=mosaic 4 | Levels=0.057934032977228433,0.04039598061277999 5 | LevelsNum=1 6 | Envelope2D=6.34617490847439,36.4917718219401 20.8296831527815,46.5907669751351 7 | NumFiles=25 8 | -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/mosaic.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/mosaic.qix -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/mosaic.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/mosaic.shp -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/mosaic.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/coverages/mosaic_sample/mosaic.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/README.md: -------------------------------------------------------------------------------- 1 | # Project used to run the examples 2 | 3 | Originally the project comes from the example project provided by GeoServer. 4 | -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/giant_polygon.dbf: -------------------------------------------------------------------------------- 1 | _! -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/giant_polygon.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/giant_polygon.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/giant_polygon.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/giant_polygon.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/giant_polygon.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/giant_polygon.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/giant_polygon.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poi.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/poi.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poi.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poi.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/poi.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poi.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/poi.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poi.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/poi.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poly_landmarks.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/poly_landmarks.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poly_landmarks.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poly_landmarks.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/poly_landmarks.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poly_landmarks.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/poly_landmarks.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poly_landmarks.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/poly_landmarks.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/tiger_roads.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/tiger_roads.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/tiger_roads.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/tiger_roads.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/tiger_roads.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/tiger_roads.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/tiger_roads.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/tiger_roads.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/nyc/tiger_roads.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/archsites.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/archsites.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/archsites.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/archsites.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/archsites.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/archsites.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/bugsites.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/bugsites.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/bugsites.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/bugsites.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/bugsites.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/bugsites.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/restricted.dbf: -------------------------------------------------------------------------------- 1 | _A catN 1 2 4 3 -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/restricted.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/restricted.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/restricted.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/restricted.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/restricted.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/restricted.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/roads.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/roads.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/roads.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/roads.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/roads.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/roads.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/sfdem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/sfdem.tif -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/streams.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/streams.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/streams.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/streams.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/streams.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/sf/streams.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/shapefiles/README.md: -------------------------------------------------------------------------------- 1 | # Shapefiles 2 | 3 | `state.shp` contains the US states, simplified with `ogr2ogr examples/geoserver-data/data/shapefiles/states.shp -update -simplify 0.01` 4 | -------------------------------------------------------------------------------- /examples/geoserver-data/data/shapefiles/states.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/shapefiles/states.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/shapefiles/states.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] -------------------------------------------------------------------------------- /examples/geoserver-data/data/shapefiles/states.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/shapefiles/states.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/shapefiles/states.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/shapefiles/states.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/shapefiles/states.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/shapefiles/states.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_cities.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/taz_shapes/tasmania_cities.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_cities.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_cities.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/taz_shapes/tasmania_cities.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_cities.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/taz_shapes/tasmania_cities.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_roads.dbf: -------------------------------------------------------------------------------- 1 | i ATYPEC alley highway lane highway gravel road highway road logging road highway road road road  -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_roads.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_roads.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/taz_shapes/tasmania_roads.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_roads.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/taz_shapes/tasmania_roads.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_roads.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/taz_shapes/tasmania_roads.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_state_boundaries.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/taz_shapes/tasmania_state_boundaries.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_state_boundaries.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_state_boundaries.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/taz_shapes/tasmania_state_boundaries.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_state_boundaries.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/taz_shapes/tasmania_state_boundaries.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.shx -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeature-2.0.url: -------------------------------------------------------------------------------- 1 | wfs?service=WFS&version=2.0.0&request=GetFeature&typenames=sf:bugsites&filter=%3Cfes:Filter%20xmlns:fes=%22http://www.opengis.net/fes/2.0%22%3E%3Cfes:ResourceId%20rid=%22bugsites.3%22/%3E%3C/fes:Filter%3E 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureBBOX.url: -------------------------------------------------------------------------------- 1 | wfs?request=GetFeature&version=1.1.0&typeName=topp:states&propertyName=STATE_NAME,PERSONS&BBOX=-75.102613,40.212597,-72.361859,41.512517,EPSG:4326 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureBetweenCQL.url: -------------------------------------------------------------------------------- 1 | wfs?request=GetFeature&typeName=topp:states&propertyName=STATE_NAME,LAND_KM,the_geom&CQL_FILTER=LAND_KM%20BETWEEN%20100000%20AND%20150000&version=1.0.0 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureFid.url: -------------------------------------------------------------------------------- 1 | wfs?request=GetFeature&version=1.1.0&typeName=topp:states&outputFormat=GML2&FEATUREID=states.3 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureFidFilter.url: -------------------------------------------------------------------------------- 1 | wfs?request=GetFeature&version=1.1.0&typeName=topp:states&outputFormat=GML2&FILTER=%3CFilter%20xmlns=%22http://www.opengis.net/ogc%22%3E%3CFeatureId%20fid=%22states.23%22/%3E%3C/Filter%3E 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_GetLegendGraphic-SLD.url: -------------------------------------------------------------------------------- 1 | wms?REQUEST=GetLegendGraphic&VERSION=1.0.0&FORMAT=image/png&WIDTH=20&HEIGHT=20&LAYER=topp:states&SLD=http://geoserver:8080/geoserver/www/styles/green.sld 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_GetLegendGraphic.url: -------------------------------------------------------------------------------- 1 | wms?REQUEST=GetLegendGraphic&VERSION=1.0.0&FORMAT=image/png&WIDTH=20&HEIGHT=20&LAYER=topp:states 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_describeLayer.url: -------------------------------------------------------------------------------- 1 | wms?request=DescribeLayer&version=1.1.1&layers=topp:states 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_featureInfo.url: -------------------------------------------------------------------------------- 1 | wms?bbox=-130,24,-66,50&styles=population&format=jpeg&info_format=text/plain&request=GetFeatureInfo&layers=topp:states&query_layers=topp:states&width=550&height=250&x=170&y=160 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getCapabilities.url: -------------------------------------------------------------------------------- 1 | wms?request=getCapabilities 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap.url: -------------------------------------------------------------------------------- 1 | wms?bbox=-130,24,-66,50&styles=population&Format=image/png&request=GetMap&layers=topp:states&width=550&height=250&srs=EPSG:4326 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_OpenLayers.url: -------------------------------------------------------------------------------- 1 | wms?bbox=-130,24,-66,50&styles=population&Format=application/openlayers&request=GetMap&layers=topp:states&width=550&height=250&srs=EPSG:4326 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_SVG.url: -------------------------------------------------------------------------------- 1 | wms?bbox=-130,24,-66,50&request=GetMap&layers=topp:states&width=800&height=400&srs=EPSG:4326&styles=population&Format=image/svg+xml 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_SVG_Style.url: -------------------------------------------------------------------------------- 1 | wms?bbox=-130,24,-66,50&styles=burg&Format=image/png&request=GetMap&layers=tiger:poi&width=550&height=250&srs=EPSG:4326 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_fid.url: -------------------------------------------------------------------------------- 1 | wms?bbox=-130,24,-66,50&styles=population&Format=image/png&request=GetMap&layers=topp:states&width=550&height=250&srs=EPSG:4326&featureid=states.1 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_fidfilter.url: -------------------------------------------------------------------------------- 1 | wms?bbox=-130,24,-66,50&styles=population&Format=image/png&request=GetMap&layers=topp:states&width=550&height=250&srs=EPSG:4326&filter=%3CFilter%20xmlns=%22http://www.opengis.net/ogc%22%3E%3CFeatureId%20fid=%22states.1%22/%3E%3C/Filter%3E 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_multilayer.url: -------------------------------------------------------------------------------- 1 | wms?request=GetMap&layers=tiger:poly_landmarks,tiger:tiger_roads&styles=,&bbox=-74.05,40.68,-73.91,40.88&Format=image/png&width=344&height=500&srs=EPSG:4326 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_multilayer_cql.url: -------------------------------------------------------------------------------- 1 | wms?request=GetMap&layers=tiger:poly_landmarks,tiger:tiger_roads&styles=,&bbox=-73.97,40.74,-73.93,40.78&Format=image/png&width=344&height=500&srs=EPSG:4326&cql_Filter=LANAME%20=%20%27East%20River%27;NAME%20=%20%27West%20Rd%27 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/images/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/images/colorpicker.jpg -------------------------------------------------------------------------------- /examples/geoserver-data/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/images/delete.png -------------------------------------------------------------------------------- /examples/geoserver-data/images/deleteRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/images/deleteRed.png -------------------------------------------------------------------------------- /examples/geoserver-data/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/images/down.png -------------------------------------------------------------------------------- /examples/geoserver-data/images/gs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/images/gs.gif -------------------------------------------------------------------------------- /examples/geoserver-data/images/gs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/images/gs.ico -------------------------------------------------------------------------------- /examples/geoserver-data/images/rasterLegend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/images/rasterLegend.png -------------------------------------------------------------------------------- /examples/geoserver-data/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/images/up.png -------------------------------------------------------------------------------- /examples/geoserver-data/logging.xml: -------------------------------------------------------------------------------- 1 | 2 | DEFAULT_LOGGING.properties 3 | logs/geoserver.log 4 | true 5 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/palettes/popshade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/palettes/popshade.png -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/anonymous/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff7 3 | anonymous 4 | org.geoserver.security.filter.GeoServerAnonymousAuthenticationFilter 5 | -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/basic/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ffb 3 | basic 4 | org.geoserver.security.filter.GeoServerBasicAuthenticationFilter 5 | true 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/exception/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff2 3 | exception 4 | org.geoserver.security.filter.GeoServerExceptionTranslationFilter 5 | -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/formLogout/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff3 3 | formLogout 4 | org.geoserver.security.filter.GeoServerLogoutFilter 5 | /web/ 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/rememberme/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7ff6 3 | rememberme 4 | org.geoserver.security.filter.GeoServerRememberMeAuthenticationFilter 5 | -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/sslFilter/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 52857278:13c7ffd66a8:-7fee 3 | sslFilter 4 | org.geoserver.security.filter.GeoServerSSLFilter 5 | 443 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/security/masterpw.xml: -------------------------------------------------------------------------------- 1 | 2 | default 3 | 4 | -------------------------------------------------------------------------------- /examples/geoserver-data/security/masterpw/default/passwd: -------------------------------------------------------------------------------- 1 | 3Gu9U3xKK1DdKLlI3KiqxXsFcetfUA54 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/burg.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/capitals.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/cite_lakes.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/dem.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/generic.xml: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/giant_polygon.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/grass.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/grass_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/styles/grass_fill.png -------------------------------------------------------------------------------- /examples/geoserver-data/styles/green.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/line.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/poi.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/point.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/poly_landmarks.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/polygon.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/pophatch.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/population.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/rain.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/raster.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/restricted.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/simple_roads.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/simple_streams.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/styles/tiger_roads.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/user_projections/epsg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/user_projections/epsg.properties -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/cite/namespace.xml: -------------------------------------------------------------------------------- 1 | 2 | NamespaceInfoImpl--570ae188:124761b8d78:-7ff4 3 | cite 4 | http://www.opengeospatial.net/cite 5 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/cite/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | WorkspaceInfoImpl--570ae188:124761b8d78:-7ff3 3 | cite 4 | 5 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/it.geosolutions/namespace.xml: -------------------------------------------------------------------------------- 1 | 2 | NamespaceInfoImpl--570ae188:124761b8d78:-7ffc 3 | it.geosolutions 4 | http://www.geo-solutions.it 5 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/it.geosolutions/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | WorkspaceInfoImpl--570ae188:124761b8d78:-7ffb 3 | it.geosolutions 4 | 5 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/nurc/namespace.xml: -------------------------------------------------------------------------------- 1 | 2 | NamespaceInfoImpl--570ae188:124761b8d78:-7ff8 3 | nurc 4 | http://www.nurc.nato.int 5 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/nurc/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | WorkspaceInfoImpl--570ae188:124761b8d78:-7ff7 3 | nurc 4 | 5 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sde/namespace.xml: -------------------------------------------------------------------------------- 1 | 2 | NamespaceInfoImpl--570ae188:124761b8d78:-7ffa 3 | sde 4 | http://geoserver.sf.net 5 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sde/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | WorkspaceInfoImpl--570ae188:124761b8d78:-7ff9 3 | sde 4 | 5 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/namespace.xml: -------------------------------------------------------------------------------- 1 | 2 | NamespaceInfoImpl--570ae188:124761b8d78:-8000 3 | sf 4 | http://www.openplans.org/spearfish 5 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | WorkspaceInfoImpl--570ae188:124761b8d78:-7fff 3 | sf 4 | 5 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/tiger/namespace.xml: -------------------------------------------------------------------------------- 1 | 2 | NamespaceInfoImpl--570ae188:124761b8d78:-7ff6 3 | tiger 4 | http://www.census.gov 5 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/tiger/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | WorkspaceInfoImpl--570ae188:124761b8d78:-7ff5 3 | tiger 4 | 5 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/topp/namespace.xml: -------------------------------------------------------------------------------- 1 | 2 | NamespaceInfoImpl--570ae188:124761b8d78:-7ffe 3 | topp 4 | http://www.openplans.org/topp 5 | 6 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/topp/states_shapefile/states/title.ftl: -------------------------------------------------------------------------------- 1 | ${STATE_NAME.value} 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/topp/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | WorkspaceInfoImpl--570ae188:124761b8d78:-7ffd 3 | topp 4 | 5 | -------------------------------------------------------------------------------- /examples/geoserver-data/www/GeoServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/GeoServer.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/2771.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/2771.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/FederalLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/FederalLogo.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/MunicipalityLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/MunicipalityLogo.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/PLRCadastreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/PLRCadastreLogo.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/StaoTyp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/StaoTyp1.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/StaoTyp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/StaoTyp2.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/StaoTyp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/StaoTyp3.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/de.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/logo_canton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/logo_canton.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/logo_confederation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/logo_confederation.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/logo_oereb_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/logo_oereb_de.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/logo_oereb_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/logo_oereb_fr.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/logo_oereb_it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/geoserver-data/www/oereb/logo_oereb_it.png -------------------------------------------------------------------------------- /examples/src/test/resources/data/logging.xml: -------------------------------------------------------------------------------- 1 | 2 | PRODUCTION_LOGGING.properties 3 | logs/geoserver.log 4 | true 5 | 6 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/README.md: -------------------------------------------------------------------------------- 1 | This directory contains all the examples. Each example has its own directory with an Readme.rst file that 2 | describes the example. 3 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/add_overlay_layer/README.md: -------------------------------------------------------------------------------- 1 | This example demonstrates how to use the BackgroundLayerProcessor to declare background layers in the 2 | configuration file that will be added below the layers sent by the client. 3 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/add_overlay_layer/expected_output/requestData-no-data-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/add_overlay_layer/expected_output/requestData-no-data-layer.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/add_overlay_layer/expected_output/requestData-one-data-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/add_overlay_layer/expected_output/requestData-one-data-layer.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/add_overlay_layer/expected_output/requestData-override-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/add_overlay_layer/expected_output/requestData-override-overlay.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/config_aliases_defaults/expected_output/requestData-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/config_aliases_defaults/expected_output/requestData-landscape.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/config_aliases_defaults/expected_output/requestData-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/config_aliases_defaults/expected_output/requestData-portrait.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/customDynamicReport/README.md: -------------------------------------------------------------------------------- 1 | This example shows how custom JasperReports templates can be used for table lists. 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/customDynamicReport/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/customDynamicReport/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/data_uri_json/README.md: -------------------------------------------------------------------------------- 1 | This example demonstrates usage of the V2 JSON styling using data uris. The file of interest is the request 2 | file. 3 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/data_uri_json/expected_output/requestData-json-style-v2-not-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/data_uri_json/expected_output/requestData-json-style-v2-not-svg.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/datasource_dynamic_tables/expected_output/requestData-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/datasource_dynamic_tables/expected_output/requestData-landscape.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/datasource_dynamic_tables/expected_output/requestData-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/datasource_dynamic_tables/expected_output/requestData-portrait.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/datasource_many_dynamictables_legend/expected_output/mask-requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/datasource_many_dynamictables_legend/expected_output/mask-requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/datasource_many_dynamictables_legend/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/datasource_many_dynamictables_legend/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/datasource_multiple_maps/README.md: -------------------------------------------------------------------------------- 1 | This example demonstrates how to include multiple maps in a report using the DataSource processor. 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/datasource_multiple_maps/expected_output/mask-requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/datasource_multiple_maps/expected_output/mask-requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/datasource_multiple_maps/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/datasource_multiple_maps/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/geoext/README.md: -------------------------------------------------------------------------------- 1 | This is a very simple configuration, which is used for the GeoExt examples. 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/geoext/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/geoext/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/http_processors/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/http_processors/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/image_layer_base64/expected_output/requestData-layer-base64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/image_layer_base64/expected_output/requestData-layer-base64.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/image_layer_test/expected_output/requestData-with-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/image_layer_test/expected_output/requestData-with-error.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/image_layer_test/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/image_layer_test/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/json_styling/README.md: -------------------------------------------------------------------------------- 1 | This example demonstrates usage of the V2 JSON styling. The file of interest is the request file. 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/json_styling/expected_output/requestData-json-style-line-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/json_styling/expected_output/requestData-json-style-line-v1.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/json_styling/expected_output/requestData-json-style-line-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/json_styling/expected_output/requestData-json-style-line-v2.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/json_styling/expected_output/requestData-json-style-v2-not-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/json_styling/expected_output/requestData-json-style-v2-not-svg.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/legend/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend_cropped/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/legend_cropped/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend_dpi/expected_output/requestData-noMaxWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/legend_dpi/expected_output/requestData-noMaxWidth.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend_dpi/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/legend_dpi/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend_scaled/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/legend_scaled/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/mapexport/README.md: -------------------------------------------------------------------------------- 1 | This example demonstrates how to use mapExport to generate a map image without template. 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/mapexport/expected_output/requestData-bmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/mapexport/expected_output/requestData-bmp.bmp -------------------------------------------------------------------------------- /examples/src/test/resources/examples/mapexport/expected_output/requestData-jpeg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/mapexport/expected_output/requestData-jpeg.jpeg -------------------------------------------------------------------------------- /examples/src/test/resources/examples/mapexport/expected_output/requestData-pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/mapexport/expected_output/requestData-pdf.pdf -------------------------------------------------------------------------------- /examples/src/test/resources/examples/mapexport/expected_output/requestData-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/mapexport/expected_output/requestData-png.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/mapexport/expected_output/requestData-tiff.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/mapexport/expected_output/requestData-tiff.tiff -------------------------------------------------------------------------------- /examples/src/test/resources/examples/merged_datasource/expected_output/mask-requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/merged_datasource/expected_output/mask-requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/merged_datasource/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/merged_datasource/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/merged_datasource/mapfish-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/merged_datasource/mapfish-icon.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/multiple_maps/README.md: -------------------------------------------------------------------------------- 1 | A simple configuration showing two individually maps with different configurations in one report. Both maps 2 | can be configured separately in the requestData.json and the config.yaml and added in the template. 3 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/multiple_maps/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/multiple_maps/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/native_mix/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/native_mix/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/CantonalLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/oereb/CantonalLogo.jpg -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/expected_output/mask-requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/oereb/expected_output/mask-requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/oereb/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/sRGB_IEC61966-2-1_black_scaled.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/oereb/sRGB_IEC61966-2-1_black_scaled.icc -------------------------------------------------------------------------------- /examples/src/test/resources/examples/paging/README.md: -------------------------------------------------------------------------------- 1 | This example demonstrates how single map can be rendered across many pages in a report. 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/paging/expected_output/requestData-multipoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/paging/expected_output/requestData-multipoint.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/paging/expected_output/requestData-polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/paging/expected_output/requestData-polygon.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/pdf_a_compliant/AdobeRGB1998.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/pdf_a_compliant/AdobeRGB1998.icc -------------------------------------------------------------------------------- /examples/src/test/resources/examples/print_osm_new_york_EPSG_3857/expected_output/requestData-scale-osm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/print_osm_new_york_EPSG_3857/expected_output/requestData-scale-osm.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/print_osm_new_york_nosubreports/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/print_osm_new_york_nosubreports/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/printtiledwms/expected_output/requestData-bbox-auto-tiled-wms1_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/printtiledwms/expected_output/requestData-bbox-auto-tiled-wms1_1_1.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/printtiledwms/expected_output/requestData-bbox-meta-tiled-wms1_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/printtiledwms/expected_output/requestData-bbox-meta-tiled-wms1_1_1.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/printtiledwms/expected_output/requestData-bbox-tiled-wms1_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/printtiledwms/expected_output/requestData-bbox-tiled-wms1_1_1.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/printtiledwms/expected_output/requestData-bbox-wms1_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/printtiledwms/expected_output/requestData-bbox-wms1_1_1.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/printtiledwms/expected_output/requestData-scale-tiled-wms1_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/printtiledwms/expected_output/requestData-scale-tiled-wms1_1_1.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/printtiledwms/expected_output/requestData-scale-wms1_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/printtiledwms/expected_output/requestData-scale-wms1_1_1.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/printwms_background_layer/README.md: -------------------------------------------------------------------------------- 1 | This example demonstrates how to use the BackgroundLayerProcessor to declare background layers in the 2 | configuration file that will be added below the layers sent by the client. 3 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/printwms_background_layer/expected_output/requestData-no-data-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/printwms_background_layer/expected_output/requestData-no-data-layer.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/printwms_background_layer/expected_output/requestData-one-data-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/printwms_background_layer/expected_output/requestData-one-data-layer.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/report/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/report/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/request_rewrite/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/request_rewrite/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/resource_bundle/README.md: -------------------------------------------------------------------------------- 1 | Demonstrates Mapfish print supports multilingual projects: Properties files are opened using UTF-8 encoding. 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/resource_bundle/Report.properties: -------------------------------------------------------------------------------- 1 | title = Default title 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/resource_bundle/Report_fr_CH.properties: -------------------------------------------------------------------------------- 1 | title = Titre en Français suisse 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/resource_bundle/expected_output/requestData-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/resource_bundle/expected_output/requestData-en.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/resource_bundle/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/resource_bundle/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/secured_templates/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/secured_templates/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple/README.md: -------------------------------------------------------------------------------- 1 | A simple configuration showing a GeoJSON layer in a map. 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple/expected_output/requestData-bmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/simple/expected_output/requestData-bmp.bmp -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple/expected_output/requestData-fontawesome-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/simple/expected_output/requestData-fontawesome-5.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple/expected_output/requestData-fontawesome-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/simple/expected_output/requestData-fontawesome-6.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple/expected_output/requestData-jpeg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/simple/expected_output/requestData-jpeg.jpeg -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple/expected_output/requestData-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/simple/expected_output/requestData-png.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple/expected_output/requestData-tiff.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/simple/expected_output/requestData-tiff.tiff -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple_A0/README.md: -------------------------------------------------------------------------------- 1 | A simple A0 configuration showing the result of a WMS error. 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple_A0/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/simple_A0/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/updatePdfMetadata/README.md: -------------------------------------------------------------------------------- 1 | This example demonstrates how to configure the !updatePdfConfig processor 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/updatePdfMetadata/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/updatePdfMetadata/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples/verboseExample/README.md: -------------------------------------------------------------------------------- 1 | This example has very explicit and verbose configuration files and demonstrates most of the features of 2 | mapfish print. 3 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/verboseExample/expected_output/requestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/examples/src/test/resources/examples/verboseExample/expected_output/requestData.png -------------------------------------------------------------------------------- /examples/src/test/resources/examples_to_port/README.md: -------------------------------------------------------------------------------- 1 | This directory contains examples that do not yet work with mapfish-print V3. 2 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | enablePublishing=false 2 | group=org.mapfish.print 3 | version=1.0.0 4 | org.gradle.caching=true 5 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/e652b4b21d9f2f16472806f277a91cd60cb6870a/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradlew-debug: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | export GRADLE_OPTS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=23111" 3 | ./gradlew "$@" 4 | -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: 2 | - openjdk11 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 110 3 | target-version = ["py39"] 4 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include 'core', 'examples', 'docs', 'publish' 2 | -------------------------------------------------------------------------------- /spell-ignore-words.txt: -------------------------------------------------------------------------------- 1 | testin 2 | compiletime 3 | centre 4 | cloneable 5 | nto 6 | thead 7 | lite 8 | --------------------------------------------------------------------------------