You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/types.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -176,10 +176,10 @@ output at zoom 11.1: "mercator"
176
176
177
177
#### Animate between different projections based on zoom level**
178
178
179
-
Use a [`camera expression`](./expressions.md#camera-expressions), to animate between projections based on zoom, using [`interpolate-projection`](./expressions.md#interpolate-projection) function. The example below will yield an adaptive globe that interpolates from `vertical-perspective` to `mercator` between zoom 10 and 12.
179
+
Use a [`camera expression`](./expressions.md#camera-expressions), to animate between projections based on zoom, using [`interpolate`](./expressions.md#interpolate) function. The example below will yield an adaptive globe that interpolates from `vertical-perspective` to `mercator` between zoom 10 and 12.
returncontext.error('Input/output pairs for "interpolate" expressions must be arranged with input values in strictly ascending order.',labelKey)asnull;
Copy file name to clipboardExpand all lines: src/reference/v8.json
+8-20Lines changed: 8 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -130,7 +130,7 @@
130
130
"doc": "The projection configuration",
131
131
"example": {
132
132
"type": [
133
-
"interpolate-projection",
133
+
"interpolate",
134
134
["linear"],
135
135
["zoom"],
136
136
10, "globe",
@@ -3063,24 +3063,6 @@
3063
3063
}
3064
3064
}
3065
3065
},
3066
-
"interpolate-projection": {
3067
-
"doc": "Produces continuous, smooth results by interpolating between pairs of input and output values (\"stops\"). Works like `interpolate`, but the output type must be a [`projection`](./types.md#projection).",
0 commit comments