43 lines
1.1 KiB
R
43 lines
1.1 KiB
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/symbolizers.R
|
|
\name{pmShieldSymbolizer}
|
|
\alias{pmShieldSymbolizer}
|
|
\title{Create a Shield Symbolizer}
|
|
\usage{
|
|
pmShieldSymbolizer(
|
|
font = "10px sans-serif",
|
|
fill = "#000000",
|
|
background = "#ffffff",
|
|
stroke = "#000000",
|
|
padding = 2,
|
|
labelProps = NULL,
|
|
...
|
|
)
|
|
}
|
|
\arguments{
|
|
\item{font}{Character. Font specification for shield text.}
|
|
|
|
\item{fill}{Character. Text fill color. Default is "#000000".}
|
|
|
|
\item{background}{Character. Shield background color. Default is "#ffffff".}
|
|
|
|
\item{stroke}{Character. Shield border color. Default is "#000000".}
|
|
|
|
\item{padding}{Numeric. Padding inside the shield in pixels. Default is 2.}
|
|
|
|
\item{labelProps}{List. Properties to use for shield text.}
|
|
|
|
\item{...}{Additional symbolizer options.}
|
|
}
|
|
\value{
|
|
A list representing the symbolizer configuration.
|
|
}
|
|
\description{
|
|
Creates a shield symbolizer for rendering labeled badges or shields
|
|
(e.g., highway route markers).
|
|
}
|
|
\examples{
|
|
pmShieldSymbolizer(font = "10px Arial", fill = "black",
|
|
background = "white", stroke = "black")
|
|
|
|
}
|