JSIcon
An icon object used as a texture. It is registered and used with the [JSSymbol](./jssymbol.md) class object, and each icon is set with a name upon registration. Icon names cannot be registered more th
var symbol = Module.getSymbol();
symbol.insertIcon(/*..parameter*/);
var icon = symbol.getIcon("ID");Function
getId() → string
var strKey = object.getId();getReferenceCount() → number
var icon = Module.getSymbol().getIcon("mapIcon");
var refCount = icon.getReferenceCount();Last updated