Skip to content

Instantly share code, notes, and snippets.

@claustres
Created September 2, 2024 13:49
Show Gist options
  • Save claustres/bfc68ede74fd6c339fb725f13c84329c to your computer and use it in GitHub Desktop.
Save claustres/bfc68ede74fd6c339fb725f13c84329c to your computer and use it in GitHub Desktop.
Capture Service Request Body
Display the source blob
Display the rendered blob
Raw
{
"layers": ["Layers.IMAGERY"],
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [3, 42.5]
},
"properties": { "fill-color": "#AAAAAA" }
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [ [3, 42], [4, 43], [5,42], [6, 43]]
},
"properties": { "fill-color": "#AAAAAA" }
},
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [ [ [0, 42], [1, 42], [1, 43], [0, 43], [0, 42] ] ]
},
"properties": { "fill-color": "#AAAAAA" }
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment