Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
A collection of developer tools for quick Google map creation from Drupal code. Uses Google map API version 3.
This is utility module - you need this module only if some other module requires it.
Main goal of this module is to offer developers very light and easy PHP implementation of Google Map API version 3 for Drupal.
News
2013-Apr-13 - new features: map geolocation, relative marker coordinates and draggable markers with dragging event that updates custom lat/lng value input form fields.
How to use it
Check example page (you need to enable module to load examples) for couple of short examples
http://your-site/gmap3_tools/example
. Note that you do not need to enable module to use it API calls, you just need to include gmap3_tools.inc file in your code.
Basically you need to do 3 things to get working gmap:
Call gmap3_tools_add_map() function from API file with appropriate map configuration array
<?php
// Map example with some custom options and 2 markers.
gmap3_tools_add_map(array(
'mapId' => 'gmap-canvas',
'mapOptions' => array(
'zoom' => 8,
),
'markers' => array(
Perfect for blog or recipe websites where you need to display an online grocery or ingredients list. Enter your list in the specified text format, and this module will turn it into checkboxes that your viewers can use to select and print a shopping list.
Details:
Provides a flexible text format that can be attached to any kind of content
Lists are entered using very simple formatting text
Uses javascript and IFRAMEs to handle the user interface
Example formatting that will be turned into the shopping list:
[selectandprint]
@Meat
Foster Farms Split Chicken Breasts $.99lb
Pork Spareribs Buy 1 Get One Free=$3.49lb
Rotisserie Chicken 32oz. $4.98 when you buy 2 or more
Rib Eye Steak $8.99lb
Pork Center Cut Loin or Rib Chops $3.49lb
@Household Items
Clorox Bleach $1.67 each
Paper Towels 3 Big Rolls $2.99
@Personal Care
Opti-Free Mulit Purpose Solution $8.99
Depend 14-18 ct. $11.99
Poise 36-72 ct. $11.99-Print $1 off Poise Coupon=$10.99
Excedrin 20-50ct $2.99-Use $.75 off Excedrin 7/10 SS=$2.24 each
[/selectandprint]