GD::Map 1.00 review

Download
by rbytes.net on

License: Perl Artistic License
File size: 6K
Developer: Chris Sutton
0 stars award from rbytes.net

GD::Map is Perl extension for creating geographic map files with GD.

SYNOPSIS

use GD::Map;
my $m = GD::Map:new(
basemap_path => "[required]",
output_path => "[required]",
verbose => 1,
);
$m->set_basemap("northamerica");
$m->add_object(id => "route", type => "line", color => "255,0,0");
$m->add_data(
id => "route",
start_long => 123.1,
end_long => 124.7,
start_lat => 49.3,
end_lat => 37.5,
);
$m->draw();

my $filename = "$m->{filename}.png";
my $w = $m->{map_width};
my $h = $m->{map_height};

ABSTRACT

Perl extension for creating geographic map files with GD

Requirements:
Perl

GD::Map 1.00 search tags