ReadyEvent
Since version 4.0.0
컴포넌트 초기화시 발생하는 이벤트
이 이벤트는 init()가 호출된 이후 단 1회만 호출됩니다.
interface ReadyEvent
Properties
target
>=4.0.0
target
이벤트를 발생시킨 컴포넌트의 인스턴스.
Example
viewer.on("ready", evt => {
console.log(evt.target); // = viewer
});
type
>=4.0.0
typestring
이벤트 타입.
이벤트 이름과 값이 같습니다.
Example
viewer.on("ready", evt => {
console.log(evt.type); // "ready"
});