The webfeed library will be located in the root of the Sensoreal assets subdomain for your project. Typically
https://assets.<PROJECT>.sensoreal.com.au/webconnect.js, orhttps://assets.<PROJECT>.sensoreal.app/webconnect.jsdepending on your specific project instance.
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.
selector String
The CSS selector of the HTML element to hook into. Example, #webfeedoptions Object
mode String
Available values: masterplan or feed
Determines wether the webfeed should load in masterplan mode or listing mode.type String
Available values: land , dwellings , packages
Determines wether the webfeed should display land, house designs or house and land packages, respectivelly.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>