am.cmd | R Documentation |
Execute a command on a target element
am.cmd(id, cmd = NULL, trgt = NULL, ...)
id |
A map widget from am.init or a proxy from am.proxy |
cmd |
A command name string, like 'setFitView' |
trgt |
A target's name string, or 'map' for the map itself. |
... |
command attributes |
am.cmd provides interaction with the map.
Commands are sent to the map itself, or to objects inside or outside it.
AMap built-in objects have predefined set of commands listed in the API.
Commands can modify an object (setZoom), but also get data from it (getCenter).
amapro introduces its own commands like set, addTo or code, described in the Introduction.
A map or a map proxy
am.init code example and Introduction
if (interactive()) {
am.init() |>
am.cmd('set', 'InfoWindow', position=c(116.6, 40), content='Beijing')
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.