Skip to main content
This topic has been closed for replies.

1 reply

May 13, 2009

Figured it out

<!--- Set the query path --->
<cfset qmap=http://maps.google.com/maps/geo?q=40.714224,-73.961452&output=js&oe=utf8&sensor=false&key=123>
<!--- Use cfhttp to get the info from google maps --->
<cfhttp method="get"
url="#qmap#"
resolveurl="no">
</cfhttp>

<cfset string=#cfhttp.filecontent#>

<cfdump var="#string#">