---
title: "MapboxGradientBuilding"
description: "Gradient 3D buildings colored by height interpolation over the official composite/building source."
canonical_url: "https://mapbox.mhaibaraai.cn/en/docs/effects/gradient-building"
---
# MapboxGradientBuilding

> Gradient 3D buildings colored by height interpolation over the official composite/building source.

## Introduction

`MapboxGradientBuilding` renders 3D buildings based on the official `composite/building` source, interpolating colors between `stops` breakpoints by height; `opacity` / `minzoom` control transparency and the starting zoom level. Requires a tilted view and zoom ≥ `minzoom` (default 15).

## Usage

View buildings color-graded by height in a tilted view:

```vue [GradientBuildingExample.vue]
<template>
  <div class="h-115 w-full overflow-hidden rounded-(--ui-radius) border border-default">
    <MapboxMap
      :options="{ style: 'mapbox://styles/mapbox/light-v11', center: [116.461, 39.909], zoom: 15.5, pitch: 60, bearing: -20 }"
    >
      <MapboxGradientBuilding
        :stops="[[0, '#1e3a8a'], [80, '#0ea5e9'], [200, '#f59e0b'], [400, '#f43f5e']]"
        :opacity="0.9"
      />
    </MapboxMap>
  </div>
</template>
```

## API

### Props

```ts
/**
 * Props for the MapboxGradientBuilding component
 */
interface MapboxGradientBuildingProps {
  /**
   * 图层 id；省略时自动生成
   */
  layerId?: string | undefined;
  /**
   * 高度-颜色断点
   */
  stops?: [number, string][] | undefined;
  /**
   * 整体透明度
   */
  opacity?: number | undefined;
  /**
   * 最小缩放级别
   * @default "15"
   */
  minzoom?: number | undefined;
  /**
   * 插入到该图层之前
   */
  beforeId?: string | undefined;
}
```

## Changelog

See commit history for [src/runtime/components/effects/GradientBuilding.vue](https://github.com/mhaibaraai/movk-mapbox/commits/main/src/runtime/components/effects/GradientBuilding.vue).


## Sitemap

See the full [sitemap](https://mapbox.mhaibaraai.cn/sitemap.md) for all pages.
