From 711b71ba31e822bf8e72b733d2aad1fcef3f7d95 Mon Sep 17 00:00:00 2001 From: Benjamin Gerber Date: Tue, 12 Nov 2024 16:31:11 +0100 Subject: [PATCH] feat: add graphicfillpadding on fill symbolizer --- style.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/style.ts b/style.ts index 580723f11..c4f911d21 100644 --- a/style.ts +++ b/style.ts @@ -550,6 +550,10 @@ export interface FillSymbolizer extends BaseSymbolizer { * Renders the fill of the polygon with a repeated pattern of PointSymbolizer. */ graphicFill?: PointSymbolizer; + /** + * Size of the additional area around the repeated graphic fill symbolizer. + */ + graphicFillPadding?: [Expression, Expression, Expression, Expression]; } /** @@ -614,6 +618,10 @@ export interface LineSymbolizer extends BaseSymbolizer { * Renders the pixels of the line with a repeated pattern. */ graphicFill?: PointSymbolizer; + /** + * Size of the additional area around the repeated graphic fill symbolizer. + */ + graphicFillPadding?: [Expression, Expression]; /** * The JoinType for the LineSymbolizer. */