interactivePolyStyle: Interactively Create PolyStyle

interactivePolyStyleR Documentation

Interactively Create PolyStyle

Description

This function is usually automatically entered by calling yourkmlobj$styleBuilder(). However it can be called on its own, but you must supply an id.

Usage

interactivePolyStyle(id)

Arguments

id

Mandatory. Define the id for this style. This id can be the same as other non-poly style ids previously created.

Note

id
Do not attempt to define more than one LineStyle for the same id.

Author(s)

Brent Cameron
Department of Fisheries and Oceans Canada
Population Ecology Division

Examples


mykml = RKmlObject()

##ANSWER THE QUESTIONS. For this example the answers are supplied below. Typically the questions
##will be answered on the fly.
## Not run: 
mykml$interactivePolyStyle(id = "mystyle")
red
.5
Y
N
N

## End(Not run)
x = data.frame(cbind(c(1, 1, 1), c(45.9178, 46.3624, 46.807), c(-59.967,-60.114, -60.321)))
names(x) = c("pid", "lat", "lon")
  
mykml$addPolygon(x, name= "poly1", description = "random polygon", styleUrl = "mystyle" )
#mykml$preview()
#Notice the line disapears on close zoom, this is an error in Google Earth. This can be mitigated by adding more #points along the line.  

brent0/kmlbuilder documentation built on Feb. 2, 2024, 2:05 a.m.