TBrowserIsCompatible

This function decides whether the maps API can be used in the current browser.
public TBrowserIsCompatible():Boolean

Parameters

  • void
  • Returns

  • Boolean -Returns whether the maps API can be used in the current browser.
  • Example

    The following example shows how to check whether the browser is compatible for displying the map.
    <div id="mapContainer"  style="width: 640px; height: 400px;"></div>
    <script type="text/javascript">
        var compatible=new Boolean();
        compatible=TBrowserIsCompatible();
        
    </script>