Whatever message this page gives is out now! Go check it out!

ColdFusion.Map.show

Last update:
May 18, 2026

Description

Shows the map if it is hidden.

Function syntax

ColdFusion.Map.show(Id)

Parameters

  • Id: Name of the map.

Example

<script> 
 function showMap(mapId) 
 { 
 ColdFusion.Map.show(mapId); 
 } 
 
 function hideMap(mapId) 
 { 
 ColdFusion.Map.hide(mapId); 
 } 

</script> 

<a href="##" id="a1" onclick="return showMap('mainMap')">Show Map</a> | <a href="##" id="a1" onclick="return hideMap('mainMap')">Hide Map</a> 

<cfmap 
 zoomlevel = "12" 
 name = "mainMap" 
 showcentermarker= "true" 
 centeraddress = "The Key Learning centre, Oxford, UK" 
 title="Venue Address" 
 hideborder=false 
 collapsible=true 
 initShow=false/>

Share this page

Was this page helpful?
We're glad. Tell us how this page helped.
We're sorry. Can you tell us what didn't work for you?
Thank you for your feedback. Your response will help improve this page.

On this page