-
It looks like github support geojson, I wonder if material is also supporting this {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 1,
"properties": {
"ID": 0
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-90,35],
[-90,30],
[-85,30],
[-85,35],
[-90,35]
]
]
}
}
]
}
|
Beta Was this translation helpful? Give feedback.
Answered by
squidfunk
Mar 8, 2023
Replies: 1 comment 1 reply
-
There's currently no support for GeoJSON and it's also not planned. However, it should be possible to add this yourself via additional JavaScript and a custom fence, similar to how we implemented support for Mermaid.js. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
xihajun
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's currently no support for GeoJSON and it's also not planned. However, it should be possible to add this yourself via additional JavaScript and a custom fence, similar to how we implemented support for Mermaid.js.