H.map.Overlay.Options
Type Definition Summary
Options used to initialize an overlay.
[ For full details, see the Type Definition Details ]
Property Summary
Properties |
---|
The minimum zoom level at which the object is visible, the default is |
The maximum zoom level at which the object is visible, the default is |
The opacity of the object in range from 0 (transparent) to 1 (opaque), the default is |
Indicates whether the map object is visible, the default is |
The z-index value of the map object, the default is |
The provider of this overlay. This property is needed only if a customized implementation of |
Optional arbitrary data to be stored with the map overlay. The data can be retrieved by calling |
Specifies whether to use anonymous Cross-Origin Resource Sharing (CORS) when fetching an image to prevent the resulting canvas from tainting, the default is |
Type Definition Description
Options used to initialize an overlay.
Property Details
min: {number=} [optional]
The minimum zoom level at which the object is visible, the default is -Infinity
max: {number=} [optional]
The maximum zoom level at which the object is visible, the default is Infinity
opacity: {number=} [optional]
The opacity of the object in range from 0 (transparent) to 1 (opaque), the default is 1
.
visibility: {boolean=} [optional]
Indicates whether the map object is visible, the default is true
.
zIndex: {number=} [optional]
The z-index value of the map object, the default is 0
provider: {(H.map.provider.Provider | null)=} [optional]
The provider of this overlay. This property is needed only if a customized implementation of ObjectProvider
wants to instantiate the overlay.
data: {*}
Optional arbitrary data to be stored with the map overlay. The data can be retrieved by calling getData()
.
crossOrigin: {boolean=} [optional]
Specifies whether to use anonymous Cross-Origin Resource Sharing (CORS) when fetching an image to prevent the resulting canvas from tainting, the default is false
. The option is ignored by IE9-10.