File tree 3 files changed +3
-5
lines changed
3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 44
44
45
45
for ( var i = 0 ; i < 10 ; i ++ ) {
46
46
rectangles . push ( viewer . entities . add ( {
47
- name : 'EPSG 2093 bounds' ,
48
47
rectangle : {
49
48
coordinates : coffeeBeltRectangle ,
50
49
material : Cesium . Color . WHITE . withAlpha ( 0.0 ) ,
65
64
} ) ;
66
65
67
66
var limited = true ;
68
- Sandcastle . addToolbarButton ( 'enable/disable limiter ' , function ( ) {
67
+ Sandcastle . addToolbarButton ( 'Enable/Disable Limiter ' , function ( ) {
69
68
if ( limited ) {
70
69
viewer . scene . globe . geographicLimitRectangle = Cesium . Rectangle . MAX_VALUE ;
71
70
limited = false ;
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ define([
86
86
87
87
var geographicLimitRectangleFlag = 0 ;
88
88
var geographicLimitRectangleDefine = '' ;
89
- if ( clippedByBoundaries ) { //} && frameState.mode !== SceneMode.SCENE3D) {
89
+ if ( clippedByBoundaries ) {
90
90
geographicLimitRectangleFlag = 1 ;
91
91
geographicLimitRectangleDefine = 'TILE_LIMIT_RECTANGLE' ;
92
92
}
Original file line number Diff line number Diff line change @@ -172,8 +172,7 @@ define([
172
172
this . _clippingPlanes = undefined ;
173
173
174
174
/**
175
- * A property specifying a {@link Rectangle} used to selectively prevent tiles outside a region from loading.
176
- * For limiting terrain in scenes that use custom projections or Proj4JS projections that cause overlapping tiles.
175
+ * A property specifying a {@link Rectangle} used to selectively limit terrain and imagery rendering.
177
176
* @type {Rectangle }
178
177
*/
179
178
this . geographicLimitRectangle = Rectangle . clone ( Rectangle . MAX_VALUE ) ;
You can’t perform that action at this time.
0 commit comments