NAME

HTML::GoogleMaps::V3 - a simple wrapper around the Google Maps API

<a href='https://travis-ci.org/G3S/html-googlemaps-v3?branch=master'><img src='https://travis-ci.org/G3S/html-googlemaps-v3.svg?branch=master' alt='Build Status' /></a>
<a href='https://coveralls.io/r/G3S/html-googlemaps-v3?branch=master'><img src='https://coveralls.io/repos/G3S/html-googlemaps-v3/badge.png?branch=master' alt='Coverage Status' /></a>

VERSION

0.02

SYNOPSIS

 use HTML::GoogleMaps::V3

 $map = HTML::GoogleMaps::V3->new;
 $map->center("1810 Melrose St, Madison, WI");
 $map->add_marker(point => "1210 W Dayton St, Madison, WI");
 $map->add_marker(point => [ 51, 0 ] );   # Greenwich

 my ($head, $map_div) = $map->onload_render;

NOTE

This module is forked from HTML::GoogleMaps, it is an almost drop in replacement requiring minimal changes to your code other than adding the ::V3 namespace. If you are using the deprecated ->render method you should change this to ->onload_render as this version of the module removes ->render

Note that V3 of the API does not require an API key so any key passed to this module will be ignored

DESCRIPTION

HTML::GoogleMaps::V3 provides a simple wrapper around the Google Maps API. It allows you to easily create maps with markers, polylines and information windows. Thanks to Geo::Coder::Google you can now look up locations around the world without having to install a local database.

CONSTRUCTOR

METHODS

SEE ALSO

http://www.google.com/apis/maps http://geocoder.us

BUGS

Address bug reports and comments to: https://github.com/G3S/html-googlemaps-v3/issues

AUTHORS

Nate Mueller nate@cs.wisc.edu - Original Author

Lee Johnson leejo@cpan.org - Maintainer of this fork