CFMAP - Generate an earth type google map in ColdFusion

CFmap - earth type Google map

cfmaptypeearth.cfm


<!DOCTYPE html">
<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 earth type google map in coldfusion</title>
</head>

<body style="margin:5px 5px 5px 15px;">
<h2 style="color:IndianRed; font-style:italic">
 cfmap tag - how to generate earth
    <br /> type google map in coldfusion
</h2>  
<hr width="525" align="left" color="Pink" />  
<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'}#">

<cfmap 
    centeraddress="Nebraska"
    height="425"    
    width="650"
    hideborder="no"
    title="earth type google map (Nebraska)"
    zoomlevel="6"
    zoomcontrol="large3d"
    typecontrol="none"
    type="earth"
    >
</cfmap>

</body>
</html>








More ColdFusion tutorials