Created
September 2, 2024 13:49
-
-
Save claustres/bfc68ede74fd6c339fb725f13c84329c to your computer and use it in GitHub Desktop.
Capture Service Request Body
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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