Skip to content

Commit 95bbf92

Browse files
committed
fix(demo): zIndex must be a number
1 parent 7a83409 commit 95bbf92

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/componentsguide/layers/heatmaplayer/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Example below shows how you can use ol-heatmap-layer and ol-source-vector to ren
3939
:blur="20"
4040
:radius="20"
4141
:weight="heatmapWeight"
42-
zIndex="1"
42+
:zIndex="1"
4343
>
4444
<ol-source-vector
4545
ref="earthquakes"

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
:radius="20"
3636
:weight="heatmapWeight"
3737
:gradient="['purple', '#89CFF0', '#93C572', '#FFBF00', 'pink']"
38-
zIndex="1"
38+
:zIndex="1"
3939
>
4040
<ol-source-vector
4141
ref="earthquakes"

src/demos/HeatmapLayerDemo.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
:blur="20"
2323
:radius="20"
2424
:weight="heatmapWeight"
25-
zIndex="1"
25+
:zIndex="1"
2626
>
2727
<ol-source-vector
2828
ref="earthquakes"

0 commit comments

Comments
 (0)