Skip to content

Commit

Permalink
Merge pull request #651 from ger-benjamin/add-graphicfillpadding
Browse files Browse the repository at this point in the history
feat: add graphicfillpadding on fill symbolizer
  • Loading branch information
jansule authored Nov 26, 2024
2 parents fa5df58 + 711b71b commit f904f28
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>];
/**
* The JoinType for the LineSymbolizer.
*/
Expand Down

0 comments on commit f904f28

Please sign in to comment.