The Viewer Configuration Service (VCS) is a part of the GEO.ca project that allows for viewer configuration management in GeoView.
- Handles GET and POST requests for retrieving and submitting configurations.
https://geocore.api.geo.ca/vcs?
Retrieve viewer configuration data:
GET /vcs?id=XYZ&lang=XYZ&metadata=false
curl -X GET "https://geocore.api.geo.ca/vcs?lang=en&id=21b821cf-0f1c-40ee-8925-eab12d357668&metadata=true"
Submit a viewer configuration:
POST /vcs
{
"method": "POST",
"body": {
"id": "XYZ",
"gcs": [{
"en" : {},
"fr" : {}
}]
}
}
When you submit a POST request to the /vcs
endpoint, the server will respond with a JSON similar to below. A successful response will look like this:
{
"headers": {
"Content-type": "application/json"
},
"method": "POST",
"statusCode": 201,
"body": {
"message": "Inserted supplied data for id: XYZ"
}
}
curl --location 'https://geocore.api.geo.ca/vcs' \
--header 'Content-Type: application/json' \
--data '{
"method": "POST",
"body": {
"id": "21b821cf-0f1c-40ee-8925-eab12d357668",
"gcs": [{
"en": {
"packages": {
"geochart": {
"layers": {
"layerId": "rcs.21b821cf-0f1c-40ee-8925-eab12d357668.en/0/1",
"propertyValue": "OBJECTID",
"propertyDisplay": "Location_Emplacement"
},
"chart": "line",
"query": {
"type": "esriRegular",
"url": "https://maps-cartes.services.geo.ca/server_serveur/rest/services/HC/airborne_radioactivity_en/MapServer/3",
"queryOptions": {
"whereClauses": [{
"field": "Location_Emplacement",
"prefix": "'\''",
"valueFrom": "Location_Emplacement",
"suffix": "'\''"
}],
"orderByField": "CollectionStart_DebutPrelevement"
}
},
"geochart": {
"xAxis": {
"type": "time",
"property": "CollectionStart_DebutPrelevement",
"label": "Collected date"
},
"yAxis": {
"type": "linear",
"property": "Activity_Activite_mBqm3",
"label": "Activity (mBqm3)",
"tooltipSuffix": "mBqm3"
},
"borderWidth": 1
},
"category": {
"property": "Radionuclide_Radionucleide",
"usePalette": false
},
"ui": {
"xSlider": {
"display": true
},
"ySlider": {
"display": true
},
"stepsSwitcher": true,
"resetStates": true,
"description": "This is a description text",
"download": true
}
}
}
},
"fr": {
"packages": {
"geochart": {
"layers": {
"layerId": "rcs.21b821cf-0f1c-40ee-8925-eab12d357668.en/0/1",
"propertyValue": "OBJECTID",
"propertyDisplay": "Location_Emplacement"
},
"chart": "line",
"query": {
"type": "esriRegular",
"url": "https://maps-cartes.services.geo.ca/server_serveur/rest/services/HC/airborne_radioactivity_en/MapServer/3",
"queryOptions": {
"whereClauses": [{
"field": "Location_Emplacement",
"prefix": "'\''",
"valueFrom": "Location_Emplacement",
"suffix": "'\''"
}],
"orderByField": "CollectionStart_DebutPrelevement"
}
},
"geochart": {
"xAxis": {
"type": "time",
"property": "CollectionStart_DebutPrelevement",
"label": "Collected date"
},
"yAxis": {
"type": "linear",
"property": "Activity_Activite_mBqm3",
"label": "Activity (mBqm3)",
"tooltipSuffix": "mBqm3"
},
"borderWidth": 1
},
"category": {
"property": "Radionuclide_Radionucleide",
"usePalette": false
},
"ui": {
"xSlider": {
"display": true
},
"ySlider": {
"display": true
},
"stepsSwitcher": true,
"resetStates": true,
"description": "This is a description text",
"download": true
}
}
}
}
}]
}
}