Package com.naver.maps.map
Interface NaverMap.OnMapRenderedListener
- Enclosing class:
- NaverMap
public static interface NaverMap.OnMapRenderedListener
지도 렌더링에 대한 이벤트 리스너 인터페이스.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onMapRendered
(boolean fully, boolean stable) 지도가 렌더링되면 호출되는 콜백 메서드.
-
Method Details
-
onMapRendered
@UiThread void onMapRendered(boolean fully, boolean stable) 지도가 렌더링되면 호출되는 콜백 메서드.- Parameters:
fully
- 모든 데이터가 렌더링되었으면true
, 그렇지 않을 경우false
.stable
- 추가 렌더링이 필요하지 않다면true
, 그렇지 않을 경우false
.
-