1. Home >
  2. Documentation >
  3. Map >
  4. map
 

map

This function displays a Google.maps.Map.

Usage

Parameters

Note

Example

  
$("#test").gmap3({
    map:{
      address:"POURRIERES, FRANCE",
      options:{
        zoom:4,
        mapTypeId: google.maps.MapTypeId.SATELLITE,
        mapTypeControl: true,
        mapTypeControlOptions: {
          style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
        },
        navigationControl: true,
        scrollwheel: true,
        streetViewControl: true
      }
    }
  });
Close