I am trying to set up an api map v3 on my company's webpage but i
can't get it to come up on our ipad.
Is it true that you no longer need a key on the v3?
This is just the base map that i want to build from, adding markers
and info windows with pictures. I left out the rest of the page.
Am I writing the code wrong? I am a novice. Please, any feedback
will help.
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" /
>
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0px; padding: 0px }
#map_canvas { height: 75% }
.auto-style4 {
font-family: Arial, Helvetica, sans-serif;
font-size: xx-large;
}
</style>
<script type="text/javascript"
src="
http://maps.google.com/maps/api/js?v=3.3&sensor=false">
</script>
<script type="text/javascript">
function initialize() {
var latlng = new google.maps.LatLng(28.1785, -98.2617);
var myOptions = {
zoom: 7,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new
google.maps.Map(document.getElementById("map_canvas"),
myOptions);
}
</script>
</head>
<body onload="initialize()">
<div id="map_canvas" style="width:100%; height:75%"></div>