views:

49

answers:

1

this is my pic :

alt text

this is my code:

var myOptions = {
          zoom: 13,
          center: latlng,
          mapTypeControlOptions: { style: google.maps.MapTypeControlStyle.DROPDOWN_MENU,position:google.maps.ControlPosition.TOP_LEFT},
          mapTypeId: google.maps.MapTypeId.ROADMAP
        };
        var map = new google.maps.Map(document.getElementById("map_canvas"),myOptions);

i see the doc, but i can't find the 'hidden' Property

so what can i do ?

thanks

A: 

Add

disableDefaultUI: true

to your mapOptions.

Marcelo
cool ~~~................
zjm1126