MSFCompositeSourceType
Objective-C
enum MSFCompositeSourceType : NSInteger {}
Swift
enum MSFCompositeSourceType : Int, @unchecked Sendable
The kind of an external data source added to a CompositeVectorTileLayer.
-
A raster tile source, drawn as a RasterTileLayer at its style slot.
Declaration
Objective-C
MSF_COMPOSITE_SOURCE_TYPE_RASTERSwift
case COMPOSITE_SOURCE_TYPE_RASTER = 0 -
An RGB-encoded elevation source, drawn as a HillshadeRasterTileLayer at its style slot.
Declaration
Objective-C
MSF_COMPOSITE_SOURCE_TYPE_HILLSHADESwift
case COMPOSITE_SOURCE_TYPE_HILLSHADE = 1 -
Another MBVT/protobuf source (including ContourTileDataSource), drawn at its style slot as its own child VectorTileLayer using the master decoder, filtered to its own layer name. Kept separate (not merged) so it overzooms independently via its own MaxOverzoomLevel and does not need the DEM at the target zoom.
Declaration
Objective-C
MSF_COMPOSITE_SOURCE_TYPE_VECTORSwift
case COMPOSITE_SOURCE_TYPE_VECTOR = 2