I think you need to add any new map types to the map type control.
This enables the developer to decide exactly which map types are
available to the user, and what order they appear.  So after defining
the 'hiphop' map type, set new options on the map:

map.setOptions({
  mapTypeControlOptions: {
    mapTypeIds: [
      'hiphop',
      google.maps.MapTypeId.ROADMAP,
      google.maps.MapTypeId.TERRAIN,
      google.maps.MapTypeId.SATELLITE,
      google.maps.MapTypeId.HYBRID
    ]
  }
});

-- 
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 [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to