Execute a command on a target element
Details
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.
See also
am.init code example and Introduction
Examples
if (interactive()) {
am.init() |>
am.cmd('set', 'InfoWindow', position=c(116.6, 40), content='Beijing')
}