Enum Class ImageTiledLayer.NoDataTileBehavior
- All Implemented Interfaces:
Serializable
,Comparable<ImageTiledLayer.NoDataTileBehavior>
,Constable
- Enclosing class:
ImageTiledLayer
Zooming in can result in tile requests with no tiles at the requested level of detail. In this case, there are options that control what to display where the tile should be.
- Since:
- 100.1.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe 'NoData' pixels will show the raster picture as being blank (or disappearing).Shows the tiles with 'No Data' stamped over them once you pass the lowest level-of-detail scale.This will show the raster picture with the text 'No Data' stamped over it once you pass the lowest level-of-detail scale.Upsample the pixels from a lower level of detail tile. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ImageTiledLayer.NoDataTileBehavior[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UPSAMPLE
Upsample the pixels from a lower level of detail tile. This can result in pixelation or blurriness. This is the default behavior for operational layers. If specified for reference layers, will have no effect, since the reference layers are set up to prevent resampling.Note: Sometimes, to see the effect on the map when setting the NoDataTileBehavior, the
Layer.getMaxScale()
value must also be explicitly set. The max scale value may need to be smaller than the level-of-detail setting that was used to create the tiled images in ArcGIS Pro or ArcGIS Desktop. For example, consider an operational image tile layer showing forest cover that was created with the level-of-detail assumption that it was to be viewed above a scale of 5000 (meaning you will not see 'NoData' until you zoom closer to the Earth than a 5000 scale). However, you want to be able to zoom in closer to the Earth surface, say down to 3000 or 300. By usingLayer.setMaxScale(double)
to set the max scale to a number smaller than 5000, you will be able to zoom in closer to the Earth and see the effects of changing the `NoDataTileBehavior` enumerations.- Since:
- 100.1.0
-
BLANK
The 'NoData' pixels will show the raster picture as being blank (or disappearing). This is the default behavior for basemap reference layers.- Since:
- 100.1.0
-
SHOW
Shows the tiles with 'No Data' stamped over them once you pass the lowest level-of-detail scale.- Since:
- 100.1.0
-
UNKNOWN
This will show the raster picture with the text 'No Data' stamped over it once you pass the lowest level-of-detail scale.- Since:
- 100.1.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-