Is there a correct way of including links to images within geoJSON?
This is the FeatureCollection I have for an object on my site:
{
"type": "FeatureCollection",
"features": [
{
"id": 1234,
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-0.322825,
51.065361
]
},
"properties": {
"popupContent": "In loving memory of\r\nGordon Wiseman\r\n15.4.30 ~ 11.8.06\r\nWho spent many happy hours\r\nin this park"
}
}
]
}
I also want to include the links to multiple images. Is it OK to add another property? For example:
"properties": {
"popupContent": "In loving memory of\r\nGordon Wiseman\r\n15.4.30 ~ 11.8.06\r\nWho spent many happy hours\r\nin this park",
"media": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg"
]
}
Or is there a better / more standard way of doing it?