TMap

(TMap.SetFullScreenButtonVisibility Method)

Sets the visibility of download panel on the map.
SetFullScreenButtonVisibility(visible):Void

Parameters

  • visible : Boolean - Set the full screen button visible if visible equals true.
  • Returns

  • Void
  • Example

    The following example set the visibility of the download panel.
    <div id="mapContainer"  style="width: 640px; height: 400px;"></div>
    <script type="text/javascript">
        var map0 = new TMap(mapContainer, 25.7590256665386, -80.3738769902151, 15, showFullScreenButton, 1, true, "", "hybrid");
       
        function showFullScreenButton() {
            map0.SetFullScreenButtonVisibility(true);
        }
    </script>