Path

NAME

Map::Leaflet::Path - Base class for all path objects

SYNOPSIS

use Map::Leaflet;
use Map::Leaflet::Path;

my $map = Map::Leaflet.new;
my $circle = Map::Leaflet::Circle.new(
  latlng => [51.505, -0.09],
  radius => 500
);
$map.add($circle);

DESCRIPTION

This is the base class for Path objects.

https://leafletjs.com/reference.html#path

It is not intended to be used directly, but to be subclassed by other classes.

SUBCLASSES

Map::Leaflet v0.0.12

Generate Leaflet maps

Authors

  • Brian Duggan

License

MIT

Dependencies

JSON::Fast

Test Dependencies

Provides

  • Map::Leaflet
  • Map::Leaflet::Circle
  • Map::Leaflet::DivIcon
  • Map::Leaflet::Icon
  • Map::Leaflet::InteractiveLayer
  • Map::Leaflet::LatLng
  • Map::Leaflet::Layer
  • Map::Leaflet::Marker
  • Map::Leaflet::Path
  • Map::Leaflet::Utils

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.