<link rel="stylesheet" type="text/css" href="maps.css" /> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript"> //Initialize map// var map; //takes either derived Coordinates or Coordinates entered in the admin interface //as determined by the above logic in the format of latitude,longitude. latlngval //in this format. var latlng = new google.maps.LatLng(39.291835,-85.194386); var myOptions = { zoom: 8, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP } map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); var marker = new google.maps.Marker({ map: map, position: latlng}); </script> <div id="map_canvas"></div>
--
You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group.
To post to this group, send email to google-map...@googlegroups.com.
To unsubscribe from this group, send email to google-maps-js-a...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
--
Eric
--