VisualIDX Kiosk
See the VisualIDX Kiosk page for the features and information on this product.
JavaScript Quick Start
1 2 3 4 5 6 7 | <script type="text/javascript" src="http://cdn.visualidx.com/js/kiosk.js"></script> <script type="text/javascript"> var myKioskOptions = { officeID : 123 }; var myKiosk = new wsm.visualidx.kiosk('myKiosk',myKioskOptions); </script> |
Then wherever you want the Visual IDX Kiosk to appear (typically fills the entire screen)
either…
1 | <div id="myKiosk"></div> |
or something like…
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | <div id="myKiosk"> <div style="width: 635px; margin-right: 35px; text-align: left; float: left; display: inline-block; vertical-align: top;"> <div style="width: 635px; display: block;"></div> <div style="width: 635px; display: block;"> <div style="width: 335px; float: left; display: inline-block; ;text-align: left; vertical-align: top;"> <div id="mlsdiv">MLS #: <span id="propertyMls"></span></div> <div></div> </div> <div style="width: 300px; float: left; display: inline-block; text-align: right; vertical-align: top;"></div> </div> <div id="imageBox"> <img id="propertyImage" /> <div id="noPhoto">No Photo Available</div> </div> </div> <div style="width: 560px; float: left; display: inline-block; vertical-align: top;"> <h3>Come inside for more information!</h3> <h3>Office Hours:</h3> Monday - Friday : 8am - 6pm Saturday : 9am - 5pm Sunday : 10am - 4pm <h3>Or contact one of our qualified brokers...</h3> <strong>Phone:</strong> 800-555-1212 <strong>Email :</strong> info@amazingrealty.com <strong>Website :</strong> http://amazingrealty.com <strong>Amazing Realty 101 Main Avenue Perfection, CO 12345</strong> <div id="qrcodediv"><img id="qrcode" class="mlsreplace" alt="QR Code" align="left" /> For more information on this property after hours, use the QR Reader on your phone to scan this code.</div> </div> <div> <div id="disclaimer" class="disclaimer"> <style type="text/css"> <!-- .disclaimerBody { text-align: left; width: 100%; font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #666; } .disclaimerBody img { margin-right: 10px; margin-top: 10px; } --><br /> </style> <div class="disclaimerBody"> <img class="alignnone" src="https://cdn.visualidx.com/media/images/CREN-logo-big.png" alt="CREN logo" width="110" height="77" align="left" /> The data relating to real estate for sale on this web site comes in part from the Internet Data Exchange (IDX) program of Colorado Real Estate Network, Inc. (CREN), © Copyright 2018. All rights reserved. All data deemed reliable but not guaranteed and should be independently verified. This database record is provided subject to "limited license" rights. Duplication or reproduction is prohibited. <a href="http://cdn.visualidx.com/docs/fullCRENDisclaimer.php">FULL CREN Disclaimer.</a> Real Estate listings held by companies other than THE OWNER OF THIS WEBSITE contain that company's name. <a href="http://cdn.visualidx.com/docs/fairHousingDisclaimer.php">Click here to read the Fair Housing Disclaimer.</a> This data was last updated: <span id="timestamp"></span> VisualIDX and other IDX/MLS real estate solutions provided by <a href="https://webservicesmanagement.com" target="_blank" rel="noopener noreferrer">Web Services Management</a>. </div> </div> </div> </div> <!-- /#kiosk --> |
Display a random listing from entire MLS
1 2 3 4 | var myKioskOptions = { // See Notes tab for available options }; var k1 = new wsm.visualidx.kiosk('myKiosk',myKioskOptions); |
…and then this in the BODY of your page.
1 | <div id="myKiosk"></div> |
Display a random listing from a single Office.
1 2 3 4 5 6 | <script> var myKioskOptions = { officeID : '123' }; var k1 = new wsm.visualidx.featuredListing('myKiosk',myKioskOptions); </script> |
…and then this in the BODY of your page.
1 | <div id="myKiosk"></div> |
Possible options are…
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | Possible options are... options = { agentID : '', city : '', county : '', fields : 'mls,address,area,price,acres,bedrooms,bathrooms,listingOffice', officeID : '', pmin : '', pmax : '', propertyclass : '', refresh : '15000', subdivision : '', target : '', transition : 'fade', url : 'http://dispatch.visualidx.com', zipcode : '' }; |
* NOTE
All options can be called as query parameters rather than being specified in an options object.
I.E.
1 2 3 | options = { mls = '123456' } |
…is equivalent to…
1 | http://yourrealtywebsite.com/myKiosk.php?mls=123456 |