Classes
Methods
# findAois(location) → {Array.<AOILayer>}
Find projects available for a location
Parameters:
Name | Type | Description |
---|---|---|
location |
Location
|
object with geographic coordinates [Lat,Lng] |
List of child AOILayers that contains this location
Array.<AOILayer>
# findAoisByExtent(extent) → {Array.<AOILayer>}
Find projects available for a extent
Parameters:
Name | Type | Description |
---|---|---|
extent |
Array.<number>
|
[minLong, minLay, maxLong, maxLat] |
List of child AOILayer that intersects with this extent
Array.<AOILayer>
# getAois() → {Array.<AOILayer>}
Return list of child layers
List of project XYZ Layers
Array.<AOILayer>
# getAttributions() → {string}
Gets the attributions of the layer.
Attributions of the layer.
string
# getMaxZoom() → {number}
Return the maximum zoom level of the layer.
The maximum zoom level of the layer.
number
# getMinZoom() → {number}
Return the minimum zoom level of the layer.
The minimum zoom level of the layer.
number
# getOpacity() → {number}
Return the opacity of the layer (between 0 and 1).
The opacity of the layer.
number
# getVisible() → {boolean}
Return the visibility of the layer (true
or false
).
The visibility of the layer.
boolean
# setMaxZoom(maxZoom)
Set the maximum zoom (exclusive) at which the layer is visible. Note that the zoom levels for layer visibility are based on the view zoom level, which may be different from a tile source zoom level.
Parameters:
Name | Type | Description |
---|---|---|
maxZoom |
number
|
The maximum zoom of the layer. |
# setMinZoom(minZoom)
Set the minimum zoom (inclusive) at which the layer is visible. Note that the zoom levels for layer visibility are based on the view zoom level, which may be different from a tile source zoom level.
Parameters:
Name | Type | Description |
---|---|---|
minZoom |
number
|
The minimum zoom of the layer. |
# setOpacity(opacity)
Set the opacity of the layer, allowed values range from 0 to 1.
Parameters:
Name | Type | Description |
---|---|---|
opacity |
number
|
The opacity of the layer. |
# setVisible(visible)
Set the visibility of the layer (true
or false
).
Parameters:
Name | Type | Description |
---|---|---|
visible |
boolean
|
The visibility of the layer. |