Package com.kakao.vectormap
Interface MapAuthenticator.OnResponseListener
-
- Enclosing class:
- MapAuthenticator
public static interface MapAuthenticator.OnResponseListener
지도 인증의 성공여부 이벤트를 수신하는 리스너
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onMapAuthFailure(MapAuthException error)
지도 인증이 실패하면 호출된다.void
onMapAuthSucceed(MapAuthToken token)
지도 인증이 성공하면 호출된다.
-
-
-
Method Detail
-
onMapAuthSucceed
void onMapAuthSucceed(MapAuthToken token)
지도 인증이 성공하면 호출된다.- Parameters:
token
- 인증 성공 시 결과 값.MapView.start(MapAuthToken, MapLifeCycleCallback, MapReadyCallback...)
에 파라미터로 이용
-
onMapAuthFailure
void onMapAuthFailure(MapAuthException error)
지도 인증이 실패하면 호출된다.- Parameters:
error
- 지도 인증 실패 에러
-
-