In the GMAP array example, it states that an acceptable value for maptype is "Terrain", which does not work. Search through the module I found:

$map['Google']['Physical'] = array(
        'title' => t('Terrain: Physical feature map.'),
        'default' => FALSE,
        'help' => t('Map with physical data (terrain, vegetation.) Internal name: G_PHYSICAL_MAP'),
      );

The correct option is "Physical" not "Terrain".

Comments

koppie’s picture

Version: 6.x-1.1 » 7.x-2.x-dev
Status: Active » Reviewed & tested by the community

Oh my goodness yes - I was tearing my hair out over this one. I can confirm that this is true for the Drupal 7 version too. Clearly a grievous oversight on Google's part, but it would be nice to get this into the documentation.

So the four map types are:

  • Map
  • Satellite
  • Hybrid
  • Physical
podarok’s picture

Status: Reviewed & tested by the community » Needs work

can You provide a patch against 7.x-2.x branch?