Maps
Create a new map
Several aspects can be customized when creating a new map, including:
Title
Initial location (latitude, longitude and zoom level)
Sharing permissions (defaults to viewing and commenting for users with the map URL)
An array of URLs to import on map creation
/api/v2/maps
The basemap to use for the new map. Defaults to "default". Valid values are "default", "light", "dark", "satellite", a valid raster tile URL with {x}, {y}, and {z} parameters, or a hex color string like #ff0000.
A description to display in the map legend
If no data has been uploaded to the map, the initial latitude to center the map display on.
If no data has been uploaded to the map, the initial longitude to center the map display on.
The title to be used for the map. Defaults to "Untitled Map"
The workspace to create the map in. Defaults to the latest used workspace
If no data has been uploaded to the map, the initial zoom level for the map to display.
The level of access to grant to the map. Defaults to "view_only".
private
, view_only
, view_and_comment
, view_comment_and_edit
An array of urls to use to create layers in the map. Only tile URLs for raster layers are supported at the moment.
Delete an existing map
/api/v2/maps/{map_id}
The ID of the map to delete
Get details of a map
Returns details including title, URL, thumbnail URL, creation and visited timestamps.
/api/v2/maps/{map_id}
Update a map's details
Update the title, description and access permissions of a map.
/api/v2/maps/{map_id}/update
The ID of the map to update
A description to display in the map legend
The new title for the map
The level of access to grant to the map. Defaults to "view_only".
private
, view_only
, view_and_comment
, view_comment_and_edit
Move a map
Move a map to a different project or folder. Project IDs and Folder IDs can be found inside map settings.
/api/v2/maps/{map_id}/move
Last updated
Was this helpful?