I would like to display a google map in a cfwindow. I created a cfwindow and set the source to the url which contains my google map. The html form beneath my map displays, but the actual map doesn't display. Why is this happening and what can I do to correct it?
see code:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script type="text/javascript"
src="http://maps.google.com/maps/api/js?sensor=false">
</head>
<body>
<cfwindow name="w1" title="Location" initShow=true x=10 y=10 width="700" height="450" source="url to map">
</cfwindow>
</body>