File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -224,6 +224,15 @@ export default defineComponent({
224
224
type: String as PropType <IControlPosition >,
225
225
required: false ,
226
226
},
227
+ cameraControl: {
228
+ type: Boolean ,
229
+ required: false ,
230
+ default: undefined ,
231
+ },
232
+ cameraControlPosition: {
233
+ type: String as PropType <IControlPosition >,
234
+ required: false ,
235
+ },
227
236
nonce: {
228
237
type: String ,
229
238
default: " " ,
@@ -265,6 +274,7 @@ export default defineComponent({
265
274
rotateControlOptions: createControlOptionsWithPosition (props .rotateControlPosition ),
266
275
streetViewControlOptions: createControlOptionsWithPosition (props .streetViewControlPosition ),
267
276
fullscreenControlOptions: createControlOptionsWithPosition (props .fullscreenControlPosition ),
277
+ cameraControlOptions: createControlOptionsWithPosition (props .cameraControlPosition ),
268
278
disableDefaultUI: props .disableDefaultUi ,
269
279
};
270
280
You can’t perform that action at this time.
0 commit comments