This is actually not difficult to do. You should learn and understand how to do it. If you want someone do it for you then it would become a job offer.
Summary:
To create [ items ] you use list ( or array )
To create { items } you use map
Dim data As Map = CreateMap("type": "Feature", _
"geometry": _
CreateMap("type": "Point", "coordinates": Array(-77.03, 38.909)))
Dim s As String = data.As(JSON).ToString
Log(s)
Add a reference to the json library.
The order might be different but it doesn't matter.
Dim data As Map = CreateMap("type": "Feature", _
"geometry": _
CreateMap("type": "Point", "coordinates": Array(-77.03, 38.909)))
Dim s As String = data.As(JSON).ToString
Log(s)
Add a reference to the json library.
The order might be different but it doesn't matter.
This is actually not difficult to do. You should learn and understand how to do it. If you want someone do it for you then it would become a job offer.
Summary:
To create [ items ] you use list ( or array )
To create { items } you use map