cfmap tag - how to generate terrain type google map in coldfusion
cfmaptypeterrain.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 terrain type google map in coldfusion</title>
</head>
<body style="margin:5px 5px 5px 15px;">
<h2 style="color:DarkOrchid; font-style:italic">
cfmap tag - how to generate terrain
<br /> type google map in coldfusion
</h2>
<hr width="525" align="left" color="Orchid" />
<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="Mississippi"
height="425"
width="650"
hideborder="no"
title="terrain type google map (Mississippi)"
zoomlevel="6"
zoomcontrol="large3d"
typecontrol="none"
type="terrain"
>
</cfmap>
</body>
</html>