The Google api map does not display the zoom bar and the image is full, but simply displays plus or minus buttons for zooming in and out to select a map type. Url http://booking.smanager.net/design/index.php?lv=2 , see the Location tab. I am using firefox 3.6.10. What could be the reason?
var myLatlng = new google.maps.LatLng(-34.397, 150.644);
var myOptions = {
zoom: 8,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
<div id="map_canvas"></div>
I also want to insert a placemarker on several lat / long pairs. I have a name and description of several places that I want to display inside the place mark. Can anyone tell how to do this?
source
share