Skip to content

Commit

Permalink
feat: add graphicfillpadding on fill symbolizer
Browse files Browse the repository at this point in the history
  • Loading branch information
ger-benjamin committed Nov 12, 2024
1 parent fa5df58 commit 908c13c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<number>, Expression<number>, Expression<number>, Expression<number>];
}

/**
Expand Down Expand Up @@ -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<number>, Expression<number>, Expression<number>, Expression<number>];
/**
* The JoinType for the LineSymbolizer.
*/
Expand Down

0 comments on commit 908c13c

Please sign in to comment.