MapMesh
Renders a TopoJSON mesh as an SVG <path>.
Use it to draw shared borders/edges (for example country boundaries) on top of feature fills.
ℹ️ Works only with TopoJSON data
Props
| Parameter | Type | Default | Description |
|---|---|---|---|
styles? | MapObject['styles'] | — | See styling guide |
Use native SVG presentation attrs like stroke/fill directly on MapMesh.
Usage
vue
<template>
<MapBase :data="mapData">
<MapFeatures fill="#fff" />
<MapMesh stroke="#000"/>
</MapBase>
</template>