Package com.inavi.mapsdk.style.shapes
Interface InvShapeOptions
- All Known Subinterfaces:
InvMarkerOptions
- All Known Implementing Classes:
InvCircle,InvInfoWindow,InvMarker,InvMultiLine,InvPolygon,InvPolyline,InvRoute,InvShape
public interface InvShapeOptions
셰이프의 옵션에 대한 인터페이스.
-
Method Summary
Modifier and TypeMethodDescriptionint셰이프의 전역 Z 인덱스를 반환합니다.getTag()셰이프에 설정된 태그를 반환합니다.float셰이프가 표출되기 위한 최대 줌 레벨을 반환합니다.float셰이프가 표출되기 위한 최소 줌 레벨을 반환합니다.int셰이프의 Z 인덱스를 반환합니다.voidsetGlobalZIndex(int globalZIndex) 셰이프의 전역 Z 인덱스를 설정합니다.void셰이프에 태그를 설정합니다.voidsetVisibleMaxZoom(float zoomLevel) 셰이프가 표출되기 위한 최대 줌 레벨을 설정합니다.voidsetVisibleMinZoom(float zoomLevel) 셰이프가 표출되기 위한 최소 줌 레벨을 설정합니다.voidsetZIndex(int zIndex) 셰이프의 Z 인덱스를 설정합니다.
-
Method Details
-
getTag
Object getTag()셰이프에 설정된 태그를 반환합니다.- Returns:
- 설정된 Tag 객체.
-
setTag
셰이프에 태그를 설정합니다.- Parameters:
tag- 설정할 Tag 객체.
-
getGlobalZIndex
int getGlobalZIndex()셰이프의 전역 Z 인덱스를 반환합니다.- Returns:
- 전역 Z 인덱스
-
setGlobalZIndex
void setGlobalZIndex(int globalZIndex) 셰이프의 전역 Z 인덱스를 설정합니다.- Parameters:
globalZIndex- 전역 Z 인덱스
-
getZIndex
int getZIndex()셰이프의 Z 인덱스를 반환합니다.
높은 값일 수록 앞에 표출됩니다.- Returns:
- Z 인덱스
-
setZIndex
void setZIndex(int zIndex) 셰이프의 Z 인덱스를 설정합니다.
높은 값일 수록 앞에 표출됩니다.- Parameters:
zIndex- Z 인덱스
-
getVisibleMinZoom
float getVisibleMinZoom()셰이프가 표출되기 위한 최소 줌 레벨을 반환합니다.
기본값은1입니다.- Returns:
- 셰이프가 표출되기 위한 최소 줌 레벨.
-
setVisibleMinZoom
void setVisibleMinZoom(float zoomLevel) 셰이프가 표출되기 위한 최소 줌 레벨을 설정합니다.
기본값은1입니다.- Parameters:
zoomLevel- 셰이프가 표출되기 위한 최소 줌 레벨.
-
getVisibleMaxZoom
float getVisibleMaxZoom()셰이프가 표출되기 위한 최대 줌 레벨을 반환합니다.
기본값은20입니다.- Returns:
- 셰이프가 표출되기 위한 최대 줌 레벨
-
setVisibleMaxZoom
void setVisibleMaxZoom(float zoomLevel) 셰이프가 표출되기 위한 최대 줌 레벨을 설정합니다.
기본값은20입니다.- Parameters:
zoomLevel- 셰이프가 표출되기 위한 최대 줌 레벨
-