Documentation
¶
Overview ¶
Package leaflet provides a (currently minimal) wrapper around leaflet.js for use with gopherjs. The bindings are currently for leaflet version 1.5.1.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var L js.Value
L is the primary leaflet javascript object.
Functions ¶
Types ¶
type GridLayer ¶
type GridLayer struct {
Layer
}
GridLayer is a leaflet GridLayer: http://leafletjs.com/reference-1.5.0.html#gridlayer.
type Layer ¶
Layer is a leaflet layer object: http://leafletjs.com/reference-1.5.0.html#layer.
type Map ¶
Map is a leaflet map object: http://leafletjs.com/reference-1.5.1.html#map
func NewMap ¶
NewMap creates a new map in the specified div with the specified options. Possible options are listed at: https://leafletjs.com/reference-1.5.0.html#map-factory.
func (*Map) CreatePane ¶
CreatePane creates a new Pane with the given name: http://leafletjs.com/reference-1.5.0.html#map-createpane
type Path ¶
type Path struct {
Layer
}
Path is a leaflet path object: http://leafletjs.com/reference-1.5.0.html#path.
func (*Path) SetStyle ¶
SetStyle sets the style of the receiver: http://leafletjs.com/reference-1.5.0.html#path-setstyle.
type Polygon ¶
type Polygon struct {
Polyline
}
Polygon is a leaflet polygon object: http://leafletjs.com/reference-1.5.0.html#polygon.
type Polyline ¶
type Polyline struct {
Path
}
Polyline is a leaflet polyline object: http://leafletjs.com/reference-1.5.0.html#polyline.
type TileLayer ¶
type TileLayer struct {
Layer
}
TileLayer is a leaflet TileLayer object: http://leafletjs.com/reference-1.5.0.html#tilelayer
func NewTileLayer ¶
NewTileLayer creates a new TileLayer with the specified URL template and options.