Here's the link to the map:
http://www.ottolawyers.com Then click
on the Address tab
You can see that the map is not rendering fully.
Here's my script code:
<script type="text/javascript" src="
http://maps.google.com/maps/api/js?
sensor=false"></script>
<script type="text/javascript">
function initialize() {
var latlng = new google.maps.LatLng(41.7070, -93.063);
var myOptions = {
zoom: 15,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new
google.maps.Map(document.getElementById("mapCanvas"), myOptions);
var markerLatLong = new google.maps.LatLng(41.6984,
-93.0571); //41.6989, -93.0695)
var marker = new google.maps.Marker({
position: markerLatLong,
map: map,
title: "Otto Law Office"
});
}
</script>
I'm using the document ready jQuery function to call the initialize
function.
Not sure what to do. It was working in Visual Studio when I was
running it on my localhost. After I deployed to the hosting company,
all hell went loose with the map.
Thanks