Creating (signed) viewer url's

You can share visualizations of your data by sharing a link to the Ellipsis Drive viewer.

In case you wish to share a specific layer with a certain id, you can simply create a link in the following way

https://app.ellipsis-drive.com/view?pathId={id of your layer}

In case you wish to share a view containing multiple layers, you can first create a bookmark containing all your layers. Using this API call or this Python function.

Once you created the bookmark the API will return the id of the bookmark. Now simply use this bookmark id to construct the url.

https://app.ellipsis-drive.com/view?pathId={id of the bookmark}

In case your data is not set to link sharing the user will need to login. To avoid this we can 'sign' the url with an access token. You can create such a token using this API endpoint or this Python function.

Using this token we can construct the url as follows:

https://app.ellipsis-drive.com/view?pathId={id of the bookmark}&token={your created token}}

Last updated