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().
Type: string
Required
Unique marker identifier. Use this ID to reference the marker when calling removeMarker().
Type: [number, number]
Required
Coordinates [lng, lat] or [easting, northing] depending on the CRS of the map provider.
Type: MarkerOptions
Optional marker appearance options. See MarkerOptions below.
Controls the visual appearance of a marker. All properties are optional — unset values fall back through the resolution order.
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.
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 colours
markers.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 token
markers.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.
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.
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 pin
anchor: [0.5, 0.5] // centre — circle or dotType: 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 bubble
markers.add('id', coords, { label: 'Town Hall' })
// Visible label bubble above the pin
markers.add('id', coords, { label: 'Town Hall', showLabel: true })
// Standalone label — no symbol, arrow points to the coordinate
markers.add('id', coords, { label: 'Town Hall', symbol: null })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: nullcreates a standalone label regardless ofshowLabel— the bubble is always visible in that case.
backgroundColor, foregroundColor, graphic, and any custom tokens are all supported.
See Symbol Config for the full property reference.