FillLayer

interface FillLayer : Layer

지도 FillLayer MapLibre-Style Spec

Parameters

source

Source 아이디

sourceLayer

source-layer

Properties

Link copied to clipboard
abstract var filter: String?

Source에 대해 filter를 처리하기 위한 MapLibre-Style Spec를 jsonString 반환한다.

Link copied to clipboard
abstract val id: String

아이디

Link copied to clipboard
abstract val layout: FillStyleLayouts

layout 속성 반환

Link copied to clipboard
abstract val maxZoom: Float?

표출될 최소 줌 레벨

Link copied to clipboard
abstract val minZoom: Float?

표출될 최소 줌 레벨

Link copied to clipboard
abstract val paint: FillStylePaints

paint 속성 반환

Link copied to clipboard
abstract val source: String?

Layer 데이터 소스 아이디

Link copied to clipboard
abstract val sourceLayer: String?

Layer 데이터 소스내 Layer 아이디

Link copied to clipboard
abstract val type: Layer.Type

랜더링 타입

Link copied to clipboard
abstract var visibility: Visibility

레이어 표출 여부

Functions

Link copied to clipboard
abstract fun filter(jsonString: String?): Layer

Source에 대해 filter를 처리하기 위한 MapLibre-Style Spec를 jsonString으로 설정한다. 해당 기능은 실험적으로 제공하고 있음

Link copied to clipboard
abstract fun layout(layouts: FillStyleLayouts): FillLayer

layout 전체 속성 설정

abstract override fun layout(visibility: Visibility): FillLayer

레이어 표출 여부 설정

abstract fun layout(vararg layouts: FillStyleLayout<*>): FillLayer

layout 단일 속성 설정

Link copied to clipboard
abstract fun maxZoom(value: Float): Layer
Link copied to clipboard
abstract fun minZoom(value: Float): Layer

표출될 최소 줌레벨 설정

Link copied to clipboard
abstract fun paint(values: FillStylePaints): FillLayer

paint 전체 속성 설정

abstract fun paint(vararg values: FillStylePaint<*>): FillLayer

paint 속성 설정

Link copied to clipboard
abstract fun queryRenderedFeatures(point: PointF): List<Feature>?

화면 좌표에 위치한 모든 Feature를 반환 한다.

abstract fun queryRenderedFeatures(bounds: RectF): List<Feature>?

화면 bounds에 위치한 모든 Feature를 반환 한다.