File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -1045,7 +1045,10 @@ Map.include(/** @lends Map.prototype */{
1045
1045
1046
1046
//@internal
1047
1047
queryPrjCoordAtContainerPoint ( p ) {
1048
- let queryCoord = this . _query3DTilesInfo ( p )
1048
+ let queryCoord ;
1049
+ if ( this . options [ 'query3DTilesOnDragging' ] ) {
1050
+ queryCoord = this . _query3DTilesInfo ( p )
1051
+ }
1049
1052
if ( ! queryCoord ) {
1050
1053
queryCoord = this . _queryTerrainInfo ( p ) ;
1051
1054
}
Original file line number Diff line number Diff line change @@ -290,7 +290,8 @@ Map.mergeOptions({
290
290
'dragPan' : true ,
291
291
'dragRotatePitch' : true ,
292
292
'dragRotate' : true ,
293
- 'dragPitch' : true
293
+ 'dragPitch' : true ,
294
+ 'query3DTilesOnDragging' : false
294
295
} ) ;
295
296
296
297
Map . addOnLoadHook ( 'addHandler' , 'draggable' , MapDragHandler ) ;
You can’t perform that action at this time.
0 commit comments