GreenNet, Development House, 56-64 Leonard Street, London EC2A 4LT.
Tel (UK): 0845 055 4011 Tel (int'l): +44 (0)20 7065 0935 Fax: +44 (0)20 7065 0936. Email: info@gn.apc.org
Contact GreenNet
Please note that the opinions of our user community do not necessarily reflect the opinions of the GreenNet Collective.
Google Map with Drupal
there are modules to be used for Google map with in your web design with drupal as CMS but for that you need Google Map API key, map.
There is also another module to be used with the contact form. This might work by putting this code into the main template php file
function theme_contact_mail_page($form){
$output = check_markup(variable_get('contact_form_information',
t('You can leave a message using the contact form below.')));
unset($form['contact_information']);
$output .= drupal_render($form);
return $output;
}