Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

geo::googleearth::pluggable::networklink(3pm) [debian man page]

Geo::GoogleEarth::Pluggable::NetworkLink(3pm)		User Contributed Perl Documentation	     Geo::GoogleEarth::Pluggable::NetworkLink(3pm)

NAME
Geo::GoogleEarth::Pluggable::NetworkLink - Geo::GoogleEarth::Pluggable::NetworkLink SYNOPSIS
use Geo::GoogleEarth::Pluggable; my $document=Geo::GoogleEarth::Pluggable->new; $document->NetworkLink(url=>"./anotherdocument.cgi"); DESCRIPTION
Geo::GoogleEarth::Pluggable::NetworkLink is a Geo::GoogleEarth::Pluggable::Base with a few other methods. USAGE
my $networklink=$document->NetworkLink(name=>"My NetworkLink", url=>"./anotherdocument.cgi"); type Returns the object type. my $type=$networklink->type; node url Sets or returns the Uniform Resource Locator (URL) for the NetworkLink my $url=$networklink->url; $networklink->url("./newdoc.cgi"); BUGS
Please log on RT and send to the geo-perl email list. SUPPORT
DavisNetworks.com supports all Perl applications including this package. AUTHOR
Michael R. Davis (mrdvt92) CPAN ID: MRDVT COPYRIGHT
This program is free software licensed under the... The BSD License The full text of the license can be found in the LICENSE file included with this module. SEE ALSO
Geo::GoogleEarth::Pluggable creates a GoogleEarth Document. perl v5.14.2 2011-06-25 Geo::GoogleEarth::Pluggable::NetworkLink(3pm)

Check Out this Related Man Page

Geo::GoogleEarth::Pluggable::StyleMap(3pm)		User Contributed Perl Documentation		Geo::GoogleEarth::Pluggable::StyleMap(3pm)

NAME
Geo::GoogleEarth::Pluggable::StyleMap - Geo::GoogleEarth::Pluggable StyleMap Object SYNOPSIS
use Geo::GoogleEarth::Pluggable; my $document=Geo::GoogleEarth::Pluggable->new; my $style=$document->StyleMap(%data); print $document->render; DESCRIPTION
Geo::GoogleEarth::Pluggable::StyleMap is a Geo::GoogleEarth::Pluggable::Base with a few other methods. USAGE
my $style=$document->StyleMap( normal => $style1, highlight => $style2, ); CONSTRUCTOR
new my $style=$document->StyleMap; METHODS
type Returns the object type. my $type=$style->type; node Generates XML that looks like this. <StyleMap id="StyleMap-perl-69"> <Pair> <key>normal</key> <styleUrl>#Style-perl-19</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#Style-perl-11</styleUrl> </Pair> </StyleMap> BUGS
Please log on RT and send to the geo-perl email list. SUPPORT
Try geo-perl email list. AUTHOR
Michael R. Davis (mrdvt92) CPAN ID: MRDVT COPYRIGHT
This program is free software licensed under the... The BSD License The full text of the license can be found in the LICENSE file included with this module. SEE ALSO
Geo::GoogleEarth::Pluggable, XML::LibXML::LazyBuilder, Scalar::Util perl v5.14.2 2010-01-22 Geo::GoogleEarth::Pluggable::StyleMap(3pm)
Man Page

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

parsing url string

Hi, I have a url like this:- http://resource.ibab.ac.in/cgi-bin/pubmed_abstract/y.cgi?pmid=+1.10529272+&pmid=+3.8379586 I want to parse the url string.I want to get the values 1.10529272 3.8379586 How do i do that? (5 Replies)
Discussion started by: vanitham
5 Replies

2. UNIX for Dummies Questions & Answers

Simple or maybe not..

Hello, I need to be able to get these to functions together: my $location=url_param("get"); my $url="script.cgi?run="; Something like this: my $new="script.cgi?run=";+url_param("get"); ...but of course something that works Then I want to use: print get $new Hopefully it is... (1 Reply)
Discussion started by: marringi
1 Replies