CFMAP to disable panning in Google?
Hello,
I have a Google Map embedded in my website using cfmap. I would like to "lock" the map location, or disable panning so the user can not move where the map is centered. Is this possible using cfmap? I have tried to use the disableDragging() javascript function with no luck...any suggestions?
<cfoutput>
<cfmap centeraddress="#lat#, #long#" width="400" height="400" zoomLevel="18" type="hybrid" scrollwheelzoom="false" showCenterMarker="false" overview = "false" >
<cfloop query="mrs2">
<cfmapitem latitude="#lat#"
longitude="#long#"
tip="#POINT_NAME#">
</cfloop>
</cfmap>
</cfoutput>
Thanks!
