NAME

Faker::Plugin::AddressLatitude - Address Latitude

ABSTRACT

Address Latitude for Faker

VERSION

1.15

SYNOPSIS

package main;

use Faker::Plugin::AddressLatitude;

my $plugin = Faker::Plugin::AddressLatitude->new;

# bless(..., "Faker::Plugin::AddressLatitude")

DESCRIPTION

This package provides methods for generating fake data for address latitude.

INHERITS

This package inherits behaviors from:

Faker::Plugin

METHODS

This package provides the following methods:

execute

execute(HashRef $data) (Str)

The execute method returns a returns a random fake address latitude.

Since 1.10

execute example 1
package main;

use Faker::Plugin::AddressLatitude;

my $plugin = Faker::Plugin::AddressLatitude->new;

# bless(..., "Faker::Plugin::AddressLatitude")

# my $result = $plugin->execute;

# 30.843133;

# my $result = $plugin->execute;

# 77.079663;

# my $result = $plugin->execute;

# -41.660985;

new

new(HashRef $data) (Plugin)

The new method returns a new instance of the class.

Since 1.10

new example 1
package main;

use Faker::Plugin::AddressLatitude;

my $plugin = Faker::Plugin::AddressLatitude->new;

# bless(..., "Faker::Plugin::AddressLatitude")