The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WWW::Sitemap::XML::Google::Image - XML Sitemap Google extension image entry

VERSION

version 2.02

SYNOPSIS

    my $image = WWW::Sitemap::XML::Google::Image->new(
        {
            loc => 'http://mywebsite.com/image1.jpg',
            caption => 'Caption 1',
            title => 'Title 1',
            license => 'http://www.mozilla.org/MPL/2.0/',
            geo_location => 'Town, Region',
        },
    );

XML output:

    <?xml version="1.0" encoding="UTF-8"?>
    <image:image>
      <image:loc>http://mywebsite.com/image1.jpg</image:loc>
      <image:caption>Caption 1</image:caption>
      <image:title>Title 1</image:title>
      <image:license>http://www.mozilla.org/MPL/2.0/</image:license>
      <image:geo_location>Town, Region</image:geo_location>
    </image:image>

DESCRIPTION

WWW::Sitemap::XML::Google::Image represents single image entry in sitemap file.

Class implements WWW::Sitemap::XML::Google::Image::Interface.

ATTRIBUTES

loc

The URL of the image.

isa: "Location" in WWW::Sitemap::XML::Types

Required.

caption

The caption of the image.

isa: Str

Optional.

title

The title of the image.

isa: Str

Optional.

geo_location

The geographic location of the image.

isa: Str

Optional.

license

A URL to the license of the image.

isa: "Location" in WWW::Sitemap::XML::Types

Optional.

METHODS

as_xml

Returns XML::LibXML::Element object representing the <image:image> entry in the sitemap.

SEE ALSO

https://support.google.com/webmasters/answer/183668

AUTHOR

Alex J. G. Burzyński <ajgb@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Alex J. G. Burzyński <ajgb@cpan.org>.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.