I have an PhoneGap iOS app and have this HTML that won’t show the map in the app. I see the map perfectly in Safari or FF but not in the app. How can I get this to work?
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var initialLocation = new google.maps.LatLng(37.654,-77.980);
var myOptions = {
zoom: 12,
center: initialLocation,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
});
</script>
</head>
<body>
<div data-role="content">
<!--images go here -->
<div class="img_shadow" style="padding:4px;">
<div id="map_canvas" style="height:130px;"></div>
</div>
</div>
</div><!-- /page -->
</body>
PhoneGap has a whitelist system for external URLs/Hosts.
From the wiki:
Your code snippet above has a few external hosts in it:
Perhaps try adding “*” to ExternalHosts to start with to make sure that isn’t the problem, then add more specific hosts once it’s working.