Library Location

The webfeed library will be located in the root of the Sensoreal assets subdomain for your project. Typically

depending on your specific project instance.

Library Initialisation

The library declares a function on the global window object named initPropertyWebfeed which is used to initialise the property webfeed.

The function requires a HTML element, typically a div to attach to and inject the webfeed content.

window.initPropertyWebfeed(<selector>, <options>)

Usage Example

The snippet below initialises a Land Masterplan webfeed in a Div.

      <div id="webfeed"></div>
      <script src="https://assets.<PROJECT>.sensoreal.app/webconnect.js"
      defer onload="window.initPropertyWebfeed('#webfeed',{ mode:'masterplan', type: 'land' })"
      ></script>