Charts Maps List Resource
- Resource URL
-
1/eclair/maps - Formats
- JSON
- Available Version
- 38.0
- HTTP Methods
- GET POST
- Request parameters for GET
-
Parameter Name Type Description Required or Optional Available Version page Int The page number you want to view. Optional 38.0 pageSize Int The number of items to be returned in a single page. Minimum is 1, maximum is 200, and default is 25. Optional 38.0 - Response body for GET
- Map Collection
- Request parameters for POST
-
Parameter Name Type Description Required or Optional Available Version geoMapObject MapInput All the relevant information about the map, such as {"label": "My Map"}. Required 39.0 - Response body for POST
- Map
-
The following JSON shows how to create a map resource from a GeoJson file with the optional bounding box.
1{ 2 "boundingBox": { 3 "bottom": 40.5534, 4 "left": -80.251, 5 "right": -79.8211 6 "top": 40.3287 7 }, 8 "geoData": { 9 "id": "<id_of_geodata_resource>" 10 }, 11 "name":"developer_name_for_map", 12 "label": "display_label_for_map", 13 "projection" : "equirectangular" 14}