HighAccuracy Property



 
The HighAccuracy property lets you set the accuracy of the geolocation feature to high.


Syntax

    SiteKiosk.GeoLocation.HighAccuracy [=bool]
Possible Values
    Boolean that determines the accuracy.

    The property is read/write.
Remarks
    By default HighAccuracy is set to false.
Examples
    The following example shows the whether the accuracy is currently set to high in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.GeoLocation.HighAccuracy);
    </SCRIPT>
    

Applies to
    SiteKiosk v9.0 (and later versions).

Back to top