cfmap - generate google map with specific latitude and longitude as map center address
cfmaplatitudelongitude.cfm
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>How to generate google map with specific latitude and longitude as map center address</title>
</head>
<body style="margin:5px 5px 5px 15px;">
<h2 style="color:DarkBlue; font-style:italic">
How to generate google map with specific
<br /> latitude and longitude as map center address
</h2>
<hr width="525" align="left" color="DarkBlue" />
<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
centerlatitude="23.7230556"
centerlongitude="90.4086111"
height="350"
width="600"
hideborder="no"
title="Map center latitude:23.7230556 and longitude:90.4086111 [Dhaka City]"
>
</cfmap>
</body>
</html>
- CFMAP - Generate an earth type google map in ColdFusion
- CFMAP - How to change google map marker color in ColdFusion
- CFAJAXIMPORT to specify Google map API Key in ColdFusion
- ColdFusion CFscript - Invoke a component in script
- ColdFusion variables typeless feature
- ColdFusion number and date format mask
- ColdFusion dynamic variables
- How to get coldfusion DataSource list programmatically
- How to dump and get output server variables in coldfusion
- How to create Microsoft Word document in ColdFusion