Other Constants
The following constants are available globally.
-
Event triggered when layers are about to be added or removed.
Declaration
Objective-C
extern NSString *const _Nonnull AWFMapURLLayersWillChangeSwift
let AWFMapURLLayersWillChange: String -
Event triggered when layers are added or removed.
Declaration
Objective-C
extern NSString *const _Nonnull AWFMapURLLayersDidChangeSwift
let AWFMapURLLayersDidChange: String -
Event triggered when the URL’s date is about to change.
Declaration
Objective-C
extern NSString *const _Nonnull AWFMapURLDateWillChangeSwift
let AWFMapURLDateWillChange: String -
Event triggered when the URL’s date changes.
Declaration
Objective-C
extern NSString *const _Nonnull AWFMapURLDateDidChangeSwift
let AWFMapURLDateDidChange: String -
An alpha blend method that will simply return the source image, ignoring the destination image.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeSourceSwift
static let source: AWFRasterBlendMode -
An alpha blend method that will simply return the destination image, ignoring the source image.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeDestSwift
static let dest: AWFRasterBlendMode -
An alpha blend method that will layer the source image on top of the destination image. This is the same as using no blend.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeSourceOverSwift
static let sourceOver: AWFRasterBlendMode -
An alpha blend method that will layer the destination image on top of the source image.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeDestOverSwift
static let destOver: AWFRasterBlendMode -
An alpha blend method that will only include portions of the source image if they intersect with parts of the destination image. The colors of the destination image will not be drawn.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeSourceInSwift
static let sourceIn: AWFRasterBlendMode -
An alpha blend method that will only include portions of the destination image if they intersect with parts of the source image. The colors of the source image will not be drawn.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeDestInSwift
static let destIn: AWFRasterBlendMode -
An alpha blend method that will only include portions of the source image if they do not intersect with parts of the destination image. The colors of the destination image will not be drawn.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeSourceOutSwift
static let sourceOut: AWFRasterBlendMode -
An alpha blend method that will only include portions of the destination image if they do not intersect with parts of the source image. The colors of the source image will not be drawn.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeDestOutSwift
static let destOut: AWFRasterBlendMode -
An alpha blend method that will only include portions of the source image that intersect the destination image. These portions will be layered on top of the destination image.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeSourceAtopSwift
static let sourceAtop: AWFRasterBlendMode -
An alpha blend method that will only include portions of the destination image that intersect the source image. These portions will be layered on top of the source image.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeDestAtopSwift
static let destAtop: AWFRasterBlendMode -
A blend method that adds the source color to the destination, tinting the destination towards the source. The lighter the source, the lighter the result.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModePlusSwift
static let plus: AWFRasterBlendMode -
A blend method that subtracts the source color from the destination, tinting the destination opposite of the source. The lighter the source, the lighter the result.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeMinusSwift
static let minus: AWFRasterBlendMode -
A blend method that multiplies colors from the source image with the colors of the destination. The result tends to be a darker image that highlights the source.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeMultiplySwift
static let multiply: AWFRasterBlendMode -
A blend method that multiplies the inverse of the source and destination colors, resulting in a lighter color. Screening with black produces no change, while screening with white produces white.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeScreenSwift
static let screen: AWFRasterBlendMode -
A blend method that combines colors from the source image with the brightness and darkness of the destination. The overlay blend is useful for showing terrain texture within the source mage and works best with lighter destination layers.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeOverlaySwift
static let overlay: AWFRasterBlendMode -
A blend method that looks at the color information in each channel and selects the destination or source color, whichever is darker, as the result.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeDarkenSwift
static let darken: AWFRasterBlendMode -
A blend method that looks at the color information in each channel and selects the destination or source color, whichever is lighter, as the result.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeLightenSwift
static let lighten: AWFRasterBlendMode -
A blend method that looks at the color information in each channel and brightens the destination to reflect the source by decreasing the contrast between the two. Blending with black produces no change.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeColorDodgeSwift
static let colorDodge: AWFRasterBlendMode -
A blend method that looks at the color information in each channel and darkens the destination to reflect the source by increasing the contrast between the two. Blending with white produces no change.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeColorBurnSwift
static let colorBurn: AWFRasterBlendMode -
A blend method that multiplies or screens the colors depending on the source. The effect is similar to shining a harsh spotlight on the image. If the source is lighter than 50% gray, the result is lightened. Otherwise, the result is darkened.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeHardLightSwift
static let hardLight: AWFRasterBlendMode -
A blend method that darkens or lightens the colors depending on the source. The effect is similar to shining a diffused spotlight on the image. If the source is lighter than 50% gray, the result is lightened. Otherwise, the result is darkened.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeSoftLightSwift
static let softLight: AWFRasterBlendMode -
A blend method that looks at the color information in each channel and subtracts either the source from the destination or the destination from the source depending on which has the greater brightness value. Blending with white inverts the base color values, while blending with black produces no change.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeDifferenceSwift
static let difference: AWFRasterBlendMode -
A blend method that creates an effect similar to but lower in contrast than the difference blend mode. Blending with white inverts the base color values, while blending with black produces no change.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeExclusionSwift
static let exclusion: AWFRasterBlendMode -
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeContrastSwift
static let contrast: AWFRasterBlendMode -
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeInvertSwift
static let invert: AWFRasterBlendMode -
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeInvertRGBSwift
static let invertRGB: AWFRasterBlendMode -
A blend method that is useful with showing terrain texture within the source image and works well with both light and dark destination layers.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeGrainMergeSwift
static let grainMerge: AWFRasterBlendMode -
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeGrainExtractSwift
static let grainExtract: AWFRasterBlendMode -
A blend method that creates a result with the luminance and saturation of the destination and the hue of the source.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeHueSwift
static let hue: AWFRasterBlendMode -
A blend method that creates a result with the luminance and hue of the destination and the saturation of the source. This method preserves the grey levels in the image and is useful for coloring monochrome images or tinting color images.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeSaturationSwift
static let saturation: AWFRasterBlendMode -
A blend method that looks at the color information in each channel and brightens the source color to reflect the destination color by increasing the brightness. Blending with black produces no change.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeLinearDodgeSwift
static let linearDodge: AWFRasterBlendMode -
A blend method that looks at the color information in each channel and darkens the source color to reflect the destination color by decreasing the brightness. Blending with white produces no change.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeLinearBurnSwift
static let linearBurn: AWFRasterBlendMode -
A blend method that looks at the color information in each channel and divides the destination color from the source color.
Declaration
Objective-C
extern const AWFRasterBlendMode _Nonnull AWFRasterBlendModeDivideSwift
static let divide: AWFRasterBlendMode
-
Satellite-derived global radar
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerRadarDerivedSwift
static let radarDerived: AWFMapLayer
-
Forecast ice accumulation.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerFutureIceSwift
static let futureIce: AWFMapLayer -
Forecast snowfall accumulation.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerFutureSnowSwift
static let futureSnow: AWFMapLayer -
Forecast snowfall accumulation using the 10:1 method.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerFutureSnow10To1Swift
static let futureSnow10To1: AWFMapLayer -
Forecast snowfall at 1-hour intervals.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerFutureSnow1HourSwift
static let futureSnow1Hour: AWFMapLayer -
Forecast snowfall at 1-hour intervals using the 10:1 method.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerFutureSnow1Hour10To1Swift
static let futureSnow1Hour10To1: AWFMapLayer -
Forecast snowfall at 1-hour intervals using the Kuchera method.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerFutureSnow1HourKucheraSwift
static let futureSnow1HourKuchera: AWFMapLayer -
Forecast snowfall accumulation using the Kuchera method.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerFutureSnowKucheraSwift
static let futureSnowKuchera: AWFMapLayer -
Forecast frontal and high/low pressure positions.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerFutureSurfaceAnalysisSwift
static let futureSurfaceAnalysis: AWFMapLayer -
Forecast frontal positions.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerFutureSurfaceAnalysisFrontsSwift
static let futureSurfaceAnalysisFronts: AWFMapLayer -
Forecast high/low pressure positions.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerFutureSurfaceAnalysisPressureSwift
static let futureSurfaceAnalysisPressure: AWFMapLayer
-
Active tropical invests, which are tropical disturbances under investigation for potential development.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerTropicalCyclonesInvestsSwift
static let tropicalCyclonesInvests: AWFMapLayer -
Active tropical invest names
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerTropicalCyclonesInvestsNamesSwift
static let tropicalCyclonesInvestsNames: AWFMapLayer -
Active tropical invest positions as icons
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerTropicalCyclonesInvestsPositionIconsSwift
static let tropicalCyclonesInvestsPositionIcons: AWFMapLayer -
Active tropical invest positions as points
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerTropicalCyclonesInvestsPositionsSwift
static let tropicalCyclonesInvestsPositions: AWFMapLayer
-
Active wildfires as icons.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerFiresObsIconsSwift
static let firesObsIcons: AWFMapLayer -
Active wildfires as points.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerFiresObsPointsSwift
static let firesObsPoints: AWFMapLayer
-
Aggregated cloud-to-ground and intracloud lightning flashes in the last 15 minutes.
Alias for
AWFMapLayerLightningAll15Minute.Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerLightningAllSwift
static let lightningAll: AWFMapLayer -
Aggregated cloud-to-ground and intracloud lightning flashes in the last 15 minutes.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerLightningAll15MinuteSwift
static let lightningAll15Minute: AWFMapLayer -
Aggregated cloud-to-ground and intracloud lightning flashes in the last 5 minutes.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerLightningAll5MinuteSwift
static let lightningAll5Minute: AWFMapLayer -
Aggregated cloud-to-ground and intracloud lightning flashes in the last 5 minutes.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerLightningFlashSwift
static let lightningFlash: AWFMapLayer -
Aggregated cloud-to-ground and intracloud lightning flashes in the last 5 minutes.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerLightningFlash5MinuteIconsSwift
static let lightningFlash5MinuteIcons: AWFMapLayer
-
Air Quality Index.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAirQualityIndexSwift
static let airQualityIndex: AWFMapLayer -
Air Quality Index Categories.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAirQualityIndexCategoriesSwift
static let airQualityIndexCategories: AWFMapLayer -
Particulate Matter < 2.5um
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAirQualityPM2p5Swift
static let airQualityPM2p5: AWFMapLayer -
Particulate Matter < 10um
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAirQualityPM10Swift
static let airQualityPM10: AWFMapLayer -
Carbon Monoxide
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAirQualityCOSwift
static let airQualityCO: AWFMapLayer -
Nitrogen Monoxide
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAirQualityNOSwift
static let airQualityNO: AWFMapLayer -
Nitrogen Dioxide
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAirQualityNO2Swift
static let airQualityNO2: AWFMapLayer -
Sulfer Dioxide
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAirQualitySO2Swift
static let airQualitySO2: AWFMapLayer -
Ozone
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAirQualityO3Swift
static let airQualityO3: AWFMapLayer
-
Sea Surface Temperatures
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeSSTSwift
static let maritimeSST: AWFMapLayer -
Ocean Currents
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeCurrentsSwift
static let maritimeCurrents: AWFMapLayer -
Primary Wave Heights
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeWaveHeightsSwift
static let maritimeWaveHeights: AWFMapLayer -
Primary Wave Periods
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeWavePeriodsSwift
static let maritimeWavePeriods: AWFMapLayer -
Primary Wind Wave Heights
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeWindWaveHeightsSwift
static let maritimeWindWaveHeights: AWFMapLayer -
Primary Wind Wave Periods
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeWindWavePeriodsSwift
static let maritimeWindWavePeriods: AWFMapLayer -
Primary Swell Heights
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeSwellHeightsSwift
static let maritimeSwellHeights: AWFMapLayer -
Primary Swell Periods
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeSwellPeriodsSwift
static let maritimeSwellPeriods: AWFMapLayer -
Secondary Swell Heights
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeSwell2HeightsSwift
static let maritimeSwell2Heights: AWFMapLayer -
Secondary Swell Periods
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeSwell2PeriodsSwift
static let maritimeSwell2Periods: AWFMapLayer -
Tertiary Swell Heights
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeSwell3HeightsSwift
static let maritimeSwell3Heights: AWFMapLayer -
Tertiary Swell Periods
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeSwell3PeriodsSwift
static let maritimeSwell3Periods: AWFMapLayer -
Storm Surge Height
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeSurgesSwift
static let maritimeSurges: AWFMapLayer -
Tide Height
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerMaritimeTidesSwift
static let maritimeTides: AWFMapLayer
-
Observed surface frontal and high/low pressure positions.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerSurfaceAnalysisSwift
static let surfaceAnalysis: AWFMapLayer -
Observed surface frontal positions.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerSurfaceAnalysisFrontsSwift
static let surfaceAnalysisFronts: AWFMapLayer -
Observed surface high/low pressure positions.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerSurfaceAnalysisPressureSwift
static let surfaceAnalysisPressure: AWFMapLayer
-
Index used to determine state of roads: wet, snowy, or icy.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerRoadConditionsIndexSwift
static let roadConditionsIndex: AWFMapLayer
-
Current and future convective outlooks using the raster AMP layer.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAmpConvectiveOutlookSwift
static let ampConvectiveOutlook: AWFMapLayer -
Current and past drought index using the raster AMP layer.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAmpDroughtIndexSwift
static let ampDroughtIndex: AWFMapLayer -
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAmpFireOutlookSwift
static let ampFireOutlook: AWFMapLayer -
Deprecated
Use
AWFMapLayerLightningStrikesinstead.Deprecated. Use
AWFMapLayerLightningStrikesinstead.Alias for
AWFMapLayerLightningStrikes.Declaration
Objective-C
extern DEPRECATED_MSG_ATTRIBUTE("Use `AWFMapLayerLightningStrikes` instead.") const AWFMapLayer AWFMapLayerAmpLightningStrikesSwift
static let ampLightningStrikes: AWFMapLayer -
Displays storm cells on a weather map using the raster AMP layer. Using this layer instead of
AWFMapLayerStormCellsdoes not allow interacting with the points as you would when selecting an annotation associated with the point layer.Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAmpStormCellsSwift
static let ampStormCells: AWFMapLayer -
Displays storm reports on a weather map using the raster AMP layer. Using this layer instead of
AWFMapLayerStormCellsdoes not allow interacting with the points as you would when selecting an annotation associated with the point layer.Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAmpStormReportsSwift
static let ampStormReports: AWFMapLayer -
Current severe weather warnings using the raster AMP layer.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerAmpWarningsSwift
static let ampWarnings: AWFMapLayer -
Prefix used for all future data layers.
Declaration
Objective-C
extern NSString *const _Nonnull AWFFutureLayerPrefixSwift
let AWFFutureLayerPrefix: String -
Event triggered when a property on the map layer is about to change.
Declaration
Objective-C
extern NSString *const _Nonnull AWFRasterMapLayerWillChangeSwift
let AWFRasterMapLayerWillChange: String -
Event triggered when a property on the map layer has changed.
Declaration
Objective-C
extern NSString *const _Nonnull AWFRasterMapLayerDidChangeSwift
let AWFRasterMapLayerDidChange: String -
Removes data over land regions by overlaying a land raster image using the flat map style.
Declaration
Objective-C
extern const AWFRasterMask _Nonnull AWFRasterMaskLandFlatSwift
static let landFlat: AWFRasterMask -
Removes data over land regions by overlaying a land raster image using the Blue Marble map style.
Declaration
Objective-C
extern const AWFRasterMask _Nonnull AWFRasterMaskLandBlueMarbleSwift
static let landBlueMarble: AWFRasterMask -
Removes data over land regions by overlaying a land raster image using the terrain map style.
Declaration
Objective-C
extern const AWFRasterMask _Nonnull AWFRasterMaskLandTerrainSwift
static let landTerrain: AWFRasterMask -
Removes data over water regions by overlaying a water raster image using the flat map style.
Declaration
Objective-C
extern const AWFRasterMask _Nonnull AWFRasterMaskWaterFlatSwift
static let waterFlat: AWFRasterMask -
Removes data over water regions by overlaying a water raster image using the water depth style.
Declaration
Objective-C
extern const AWFRasterMask _Nonnull AWFRasterMaskWaterDepthSwift
static let waterDepth: AWFRasterMask -
Removes data over the Continental US by overlaying a land raster image using the flat map style.
Declaration
Objective-C
extern const AWFRasterMask _Nonnull AWFRasterMaskLandUSFlatSwift
static let landUSFlat: AWFRasterMask -
Removes all data except for the Continental US by overlaying a land and water raster image using the flat map style.
Declaration
Objective-C
extern const AWFRasterMask _Nonnull AWFRasterMaskClipUSFlatSwift
static let clipUSFlat: AWFRasterMask -
Removes all data except for the Continental US by overlaying a land and water raster image using the Blue Marble map style.
Declaration
Objective-C
extern const AWFRasterMask _Nonnull AWFRasterMaskClipUSBlueMarbleSwift
static let clipUSBlueMarble: AWFRasterMask -
Removes all data except for the Continental US by overlaying a land and water raster image using the terrain map style.
Declaration
Objective-C
extern const AWFRasterMask _Nonnull AWFRasterMaskClipUSTerrainSwift
static let clipUSTerrain: AWFRasterMask -
Removes all data over water regions by using an alpha blend method to clip data from the layer not over land. The resulting image will retain its transparency.
Declaration
Objective-C
extern const AWFRasterMask _Nonnull AWFRasterMaskRemoveWaterSwift
static let removeWater: AWFRasterMask -
Removes all data over land regions by using an alpha blend method to clip data from the layer not over water. The resulting image will retain its transparency.
Declaration
Objective-C
extern const AWFRasterMask _Nonnull AWFRasterMaskRemoveLandSwift
static let removeLand: AWFRasterMask -
Removes all data not within the Continental US by using an alpha blend method to clip data from the layer outside of the Continental US. The resulting image will retain its transprency.
Declaration
Objective-C
extern const AWFRasterMask _Nonnull AWFRasterMaskRemoveLandNonUSSwift
static let removeLandNonUS: AWFRasterMask -
Active tropical watch/warning breakpoints.
Declaration
Objective-C
extern const AWFMapLayer _Nonnull AWFMapLayerTropicalBreakpointsSwift
static let tropicalBreakpoints: AWFMapLayer -
Event triggered when a tile associated with the tile source failed loading.
Declaration
Objective-C
extern NSString *const _Nonnull AWFTileDidFailLoadingSwift
let AWFTileDidFailLoading: String -
The raster data layer group.
Declaration
Objective-C
extern const AWFLayerGroup _Nonnull AWFLayerGroupRasterSwift
let AWFLayerGroupRaster: String -
The point data layer group.
Declaration
Objective-C
extern const AWFLayerGroup _Nonnull AWFLayerGroupPointSwift
let AWFLayerGroupPoint: String -
The shape/polygon data layer group.
Declaration
Objective-C
extern const AWFLayerGroup _Nonnull AWFLayerGroupShapeSwift
let AWFLayerGroupShape: String -
The future data layer group.
Declaration
Objective-C
extern const AWFLayerGroup _Nonnull AWFLayerGroupFutureSwift
let AWFLayerGroupFuture: String -
The text data layer group.
Declaration
Objective-C
extern const AWFLayerGroup _Nonnull AWFLayerGroupTextSwift
let AWFLayerGroupText: String -
The base map layer group.
Declaration
Objective-C
extern const AWFLayerGroup _Nonnull AWFLayerGroupBaseSwift
let AWFLayerGroupBase: String -
The map overlay layer group.
Declaration
Objective-C
extern const AWFLayerGroup _Nonnull AWFLayerGroupOverlaySwift
let AWFLayerGroupOverlay: String -
The layer mask group.
Declaration
Objective-C
extern const AWFLayerGroup _Nonnull AWFLayerGroupMaskSwift
let AWFLayerGroupMask: String
View on GitHub
Other Constants Reference