map polygon not support hole,Map rendering does not reflect the existence of holes
- Dominant language
- TypeScript
- Stars
- 67.3k
- Forks
- 19.8k
- Avg merge
- 11d 14h
- Merged PRs (30d)
- 8
Description
### What problem does this feature solve?
data(geojson) contains holes.
It is hoped that the polygon can be hollowed out.
render result

expected result

example https://codepen.io/deyihu/pen/JzOmPw
### What does the proposed API look like?
```js
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[
....
],
[
.... hole
],
...holes
]
},
"properties": {
"name": "未命名",
"center": [
120.56578933022251,
31.291266809854267
]
}
}
]
}
```
Contributor guide
Assessment
This issue has not been assessed yet.