cfmap tag - how to generate google map without zoom control in coldfusion

cfmap tag - how to generate google map without zoom control in coldfusion
cfmapzoomcontrol.cfm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>cfmap tag - how to generate google map without zoom control in coldfusion</title>
</head>

<body style="margin:5px 5px 5px 15px;">
<h2 style="color:DarkBlue; font-style:italic">
 cfmap tag - how to generate google map
    <br /> without zoom control in coldfusion
</h2>  
<hr width="550" align="left" color="SaddleBrown" />  
<br />

<!--- 
Generate a Google map api key for this domain
http://localhost:8500/
----------------
Use your own google map api key to test this example
 --->

<cfajaximport params="#{googlemapkey='please use your own google map api key here'}#">

<table cellpadding="10" style="border:1px solid Maroon; background-color:Magenta;">
 <tr valign="top">
     <td>
            <cfmap 
                centeraddress="Wisconsin"
                height="350"    
                width="350"
                hideborder="no"
                title="Map with zoom control"
                zoomlevel="5"
                >
            </cfmap>
        </td>
     <td>
            <cfmap 
                centeraddress="Wisconsin"
                height="350"    
                width="350"
                hideborder="no"
                title="Map without zoom control"
                zoomcontrol="none"
                zoomlevel="5"
                >
            </cfmap>
        </td>
    </tr>
</table>

</body>
</html>