Creating and validating a feature stateset
A feature stateset represents the dynamics properties and values on features of the units in an indoor map. It allows, for example, to change the color of such a unit based on a value. For that, we need to use the Stateset
API. We need to create a POST
URL for creating a feature stateset. The URL definition is shown here:
https://eu.atlas.microsoft.com/featurestatesets? api-version=2.0& datasetId={datasetId}& subscription-key={authenticationId}
Our {authenticationId}
value is ce84cef4-95de-4cab-8499-a72430e965df
and the {datasetId}
value is bd187289-0b1e-6b4e-6738-0e64f3b4cf9e
, which is the result from one of the previous calls. The URL becomes this:
https://eu.atlas.microsoft.com/featurestatesets?api-version=2.0&datasetId=bd187289-0b1e-6b4e-6738-0e64f3b4cf9e&subscription-key=5u4nik9mH69uvmR6AYuHJq-l2SmNbwfSP1mZGxLfAkQ
Execute the following steps:
- Select the
DigitalTwinsBook
environment. - Add a new request...