MarkerConfig
A marker is a pin or symbol placed at a specific coordinate on the map, used to highlight a location. The properties below are used in the markers option to define initial markers. The MarkerOptions properties also apply to markers added at runtime via addMarker().
Properties
id
- Type:
string(required)
Unique marker identifier. Use this ID to reference the marker when calling removeMarker().
coords
- Type:
[number, number](required)
Coordinates [lng, lat] or [easting, northing] depending on the CRS of the map provider.
options
- Type:
MarkerOptions
Optional marker appearance options. See MarkerOptions below.
MarkerOptions
Controls the visual appearance of a marker. All properties are optional — unset values fall back through the resolution order.
symbol
- Type:
string- Default:
'pin'
Symbol to use for this marker. Built-in symbols: 'pin', 'circle', 'square'. For a custom one-off symbol, use symbolSvgContent instead.
symbolSvgContent
- Type:
string
Inner SVG path content (no <svg> wrapper) to render instead of a registered symbol. Use {{token}} placeholders for colours. When set, symbol is ignored.
// Using built-in tokens with per-style coloursmarkers.add('id', coords, { symbolSvgContent: ` <path d="..." fill="{{selectedColor}}" stroke="{{activeColor}}" stroke-width="6" paint-order="stroke fill"/> <path d="..." fill="{{backgroundColor}}" stroke="{{haloColor}}" stroke-width="2" paint-order="stroke fill"/> <path d="..." fill="{{foregroundColor}}"/> `, viewBox: '0 0 44 44', anchor: [0.5, 1], backgroundColor: { outdoor: '#d4351c', dark: '#ff6b6b' }})
// Using a custom tokenmarkers.add('id', coords, { symbolSvgContent: ` <path d="..." fill="{{customColor}}"/> `, viewBox: '0 0 38 38', anchor: [0.5, 0.5], customColor: { outdoor: '#1d70b8', dark: '#4c9ed9' }}){{selectedColor}} and {{activeColor}} are required to render the selection and focus rings.
NOTE
selectedColor and activeColor cannot be set per marker — they are controlled by MapStyleConfig.
viewBox
- Type:
string- Default:
- registered symbol's viewBox, or
'0 0 44 44'
SVG viewBox attribute for the symbol. Use alongside symbolSvgContent when your paths use a different coordinate space.
anchor
- Type:
[number, number]- Default:
- registered symbol's anchor, or
[0.5, 0.5]
Normalised [x, y] anchor point where [0, 0] is top-left and [1, 1] is bottom-right. Determines which point on the symbol aligns with the geographic coordinate.
anchor: [0.5, 1] // bottom-centre — tip of a pinanchor: [0.5, 0.5] // centre — circle or dotlabel
- Type:
string
Plain-text label for this marker. Serves two purposes:
- Accessible name — always used as the
aria-labelon the marker SVG, even when no bubble is visible. - Visible bubble — rendered as a tooltip-style label above the symbol when
showLabelistrue, or as a standalone label with a down-arrow whensymbolisnull.
// Accessible name only — no visible bubblemarkers.add('id', coords, { label: 'Town Hall' })
// Visible label bubble above the pinmarkers.add('id', coords, { label: 'Town Hall', showLabel: true })
// Standalone label — no symbol, arrow points to the coordinatemarkers.add('id', coords, { label: 'Town Hall', symbol: null })showLabel
- Type:
boolean- Default:
false
Whether to render a visible label bubble above the marker symbol. When false, label is still used as the accessible name of the marker.
Setting symbol: null creates a standalone label regardless of showLabel — the bubble is always visible in that case.
Colour and graphic properties
backgroundColor, foregroundColor, graphic, and any custom tokens are all supported.
See Symbol Config for the full property reference.