JimuMapView

Class

JimuMapView is the view for developers to develop the map-related functions. For example, developers can use the view property of the JimuMapView instance to get the original<a href="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html" target="_blank">ArcGIS Maps SDK for JavaScript View </a>, then use the original view to develop the map-related functions. At the same time, JimuMapView also provides properties such as isActive and status to indicate the current status in the map widget.

JimuMapView is a wrapper class for the ArcGIS Maps SDK for JavaScript View . It is created by a map widget using a map DataSource .

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { JimuMapView } from 'jimu-arcgis';

// Add the State interface
interface State {
extent: __esri.Extent
}

// On an active view change, set the extent State property
onActiveViewChange = (jimuMapView: JimuMapView) => {
if(!this.extentWatch){
 this.extentWatch = jimuMapView.view.watch('extent', extent => {
   this.setState({
     extent
   })
 });
}
}

// Use the `JimuMapView` instance from the map widget through the `JimuMapViewComponent` React component
<JimuMapViewComponent useMapWidgetId={this.props.useMapWidgetIds[0]} onActiveViewChange={this.onActiveViewChange}></JimuMapViewComponent>

Properties

PropertyTypeNotes
string

The id of the DataSource selected to create the map.

string

The id of the JimuMapView instance.

boolean

The isActive property indicates whether the map in the map widget is accessible. For example, for a single-source map, there is a single JimuMapView instance, therefore, the isActive is always true. With a multi-source map, there are two JimuMapView instances. In the multi-source map, the property isActive is true for the top JimuMapView instance, and false for the one beneath. Upon clicking the switch map tool, the isActive properties will switch.

JimuLayerViews

The union for all JimuLayerView instances and the layer view object wrapper. the JimuLayerView instance in this object may not been loaded. Please call whenJimuLayerViewLoaded() to wait for it's loaded.

The created map tools (ArcGIS JavaScript API widgets) for this view.

string

The id of the widget creating the JimuMapView instance.

The status of the JimuMapView instance. JimuMapViewStatus enumeration members include "LOADING" , "LOADED" and "FAILED" .

MapView | SceneView

The view is the ArcGIS Maps SDK for JavaScript View , including a MapView or a SceneView . In the ArcGIS Maps SDK for JavaScript, the MapView and SceneView are part of the __esri namespace types. Thus, their types are __esri.MapView and __esri.SceneView .

dataSourceId

Class Property
dataSourceId: string

The id of the DataSource selected to create the map.

id

Class Property
id: string

The id of the JimuMapView instance.

isActive

optional
Class Property
isActive: boolean

The isActive property indicates whether the map in the map widget is accessible. For example, for a single-source map, there is a single JimuMapView instance, therefore, the isActive is always true. With a multi-source map, there are two JimuMapView instances. In the multi-source map, the property isActive is true for the top JimuMapView instance, and false for the one beneath. Upon clicking the switch map tool, the isActive properties will switch.

jimuLayerViews

optional
Class Property
jimuLayerViews: JimuLayerViews

The union for all JimuLayerView instances and the layer view object wrapper. the JimuLayerView instance in this object may not been loaded. Please call whenJimuLayerViewLoaded() to wait for it's loaded.

jimuMapTools

Class Property
jimuMapTools: JimuMapTool[]

The created map tools (ArcGIS JavaScript API widgets) for this view.

mapWidgetId

Class Property
mapWidgetId: string

The id of the widget creating the JimuMapView instance.

status

Class Property
status: JimuMapViewStatus

The status of the JimuMapView instance. JimuMapViewStatus enumeration members include "LOADING" , "LOADED" and "FAILED" .

view

Class Property
view: MapView | SceneView

The view is the ArcGIS Maps SDK for JavaScript View , including a MapView or a SceneView . In the ArcGIS Maps SDK for JavaScript, the MapView and SceneView are part of the __esri namespace types. Thus, their types are __esri.MapView and __esri.SceneView .

Methods

MethodReturnsNotes
addOrRemoveDataOnMap(newAddToMapDatas)
void

add layers according to the corresponding types of data source

void

Clear the selected features.

createJimuLayerView(layerOrSubLayer, parentJimuLayerId, index, runtimeAddedDataSource?, fromRuntime?)
Promise<JimuLayerView>

Create the JimuLayerView and add it into the jimuLayerViews object. Resolve the promise when it is ready.

void

Destroy the JimuMapView instance and the ArcGIS Maps SDK for JavaScript View at the same time.

drawDataOnMap(newShowOnMapDatas)
void

Draw data on the map, using a dedicated GraphicsLayer for every data entry. This will clear the layers drawn previously.

drawDataRecordSet(dataSet, targetLayerId, title?, symbolOption?)
Promise<Graphic[]>

Draw the features in a GraphicsLayer .

getAllChildJimuLayerViews(jimuLayerViewId)

Return all child JimuLayerViews.

Return all JimuLayerViews.

getChildJimuLayerViewIds(jimuLayerViewId)
string[]

Return the direct child JimuLayerViews

Get JimuLayerView by JS API layer or sublayer.

getParentJimuLayerViews(jimuLayerViewId)

Return all parent JimuLayerViews.

boolean

Indicates if the JimuMapView is destroyed or not. Returns true if the view is not created or if the view is destroyed, otherwise returns false.

selectFeaturesByGraphic(graphic, spatialRelationship, selectionMode, outputAllFields)
Promise<any>

Select features in all layers in the map by a graphic.

updateDrawnDataRecordSet(dataSet, targetLayerId, title?, symbolOption?)
Promise<Graphic[]>

Update the drawn GraphicsLayer .

Promise<JimuLayerViews>

return the loaded JimuLayerViews only

whenJimuLayerViewLoaded(jimuLayerViewId)
Promise<JimuLayerView>

Return the JimuLayerView when it's loaded.

Promise<JimuLayerView>
Promise<JimuMapView>

Resolve the JimuMapView when it is loaded.

addOrRemoveDataOnMap

Class Method
addOrRemoveDataOnMap(newAddToMapDatasAddToMapDatas): void

add layers according to the corresponding types of data source

Parameters
ParameterType
newAddToMapDatas
AddToMapDatas
Returns 
void

clearSelectedFeatures

Class Method
clearSelectedFeatures(): void

Clear the selected features.

Returns 
void

createJimuLayerView

Class Method
createJimuLayerView(layerOrSubLayerLayer | ArcGISSubLayer, parentJimuLayerIdstring, indexnumber, runtimeAddedDataSource?DataSource, fromRuntime?boolean): Promise<JimuLayerView>

Create the JimuLayerView and add it into the jimuLayerViews object. Resolve the promise when it is ready.

Parameters
ParameterTypeNotes
layerOrSubLayer
Layer | ArcGISSubLayer

the layer can be a Layer or a SubLayer

parentJimuLayerId
string

the layer's parent JimuLayerView ID

index
number

layer index

runtimeAddedDataSource
DataSource

Optional, the layer data source added at runtime.

fromRuntime
boolean

Optional, true means the JimuLayerView is created from runtime. e.g. The JimuLayerView is created by AddData widget at runtime. false means the layer is a builtin layer of WebMap or WebScene.

Returns 
Promise<JimuLayerView>

destroy

Class Method
destroy(): void

Destroy the JimuMapView instance and the ArcGIS Maps SDK for JavaScript View at the same time.

Returns 
void

drawDataOnMap

Class Method
drawDataOnMap(newShowOnMapDatasShowOnMapDatas): void

Draw data on the map, using a dedicated GraphicsLayer for every data entry. This will clear the layers drawn previously.

Parameters
ParameterType
newShowOnMapDatas
ShowOnMapDatas
Returns 
void

drawDataRecordSet

Class Method
drawDataRecordSet(dataSetDataRecordSet, targetLayerIdstring, title?string, symbolOption?SymbolOption): Promise<Graphic[]>

Draw the features in a GraphicsLayer .

Parameters
ParameterType
dataSet
DataRecordSet
targetLayerId
string
title
string
symbolOption
SymbolOption
Returns 
Promise<Graphic[]>

getAllChildJimuLayerViews

Class Method
getAllChildJimuLayerViews(jimuLayerViewIdany): JimuLayerView[]

Return all child JimuLayerViews.

Parameters
ParameterType
jimuLayerViewId
any
Returns 
JimuLayerView[]

getAllJimuLayerViews

Class Method
getAllJimuLayerViews(): JimuLayerView[]

Return all JimuLayerViews.

Returns 
JimuLayerView[]

getChildJimuLayerViewIds

Class Method
getChildJimuLayerViewIds(jimuLayerViewIdany): string[]

Return the direct child JimuLayerViews

Parameters
ParameterType
jimuLayerViewId
any
Returns 
string[]

getJimuLayerViewByAPILayer

Class Method
getJimuLayerViewByAPILayer(layerOrSubLayerLayer | ArcGISSubLayer): JimuLayerView

Get JimuLayerView by JS API layer or sublayer.

Parameters
ParameterTypeNotes
layerOrSubLayer
Layer | ArcGISSubLayer

JS API layer or sublayer.

Returns 
JimuLayerView

getParentJimuLayerViews

Class Method
getParentJimuLayerViews(jimuLayerViewIdstring): JimuLayerView[]

Return all parent JimuLayerViews.

Parameters
ParameterType
jimuLayerViewId
string
Returns 
JimuLayerView[]

isDestroyed

Class Method
isDestroyed(): boolean

Indicates if the JimuMapView is destroyed or not. Returns true if the view is not created or if the view is destroyed, otherwise returns false.

Returns 
boolean

selectFeaturesByGraphic

Class Method
selectFeaturesByGraphic(graphicGraphic, spatialRelationshipstring, selectionModeDataSourceSelectionMode, outputAllFieldsboolean): Promise<any>

Select features in all layers in the map by a graphic.

Parameters
ParameterTypeDefaultNotes
graphic
Graphic

This is the ArcGIS Maps SDK for JavaScript Graphic .

spatialRelationship
string

This parameter defines the spatial relationship to query features in the layer, see details here.

selectionMode
DataSourceSelectionMode

This parameter is to indicate how the new select operation affects the original selection. It can only be the following enumeration values: New , AddToCurrent , RemoveFromCurrent , or SelectFromCurrent .

outputAllFields
boolean
false
Returns 
Promise<any>

updateDrawnDataRecordSet

Class Method
updateDrawnDataRecordSet(dataSetDataRecordSet, targetLayerIdstring, title?string, symbolOption?SymbolOption): Promise<Graphic[]>

Update the drawn GraphicsLayer .

Parameters
ParameterType
dataSet
DataRecordSet
targetLayerId
string
title
string
symbolOption
SymbolOption
Returns 
Promise<Graphic[]>

whenAllJimuLayerViewLoaded

Class Method
whenAllJimuLayerViewLoaded(): Promise<JimuLayerViews>

return the loaded JimuLayerViews only

Returns 
Promise<JimuLayerViews>

whenJimuLayerViewLoaded

Class Method
whenJimuLayerViewLoaded(jimuLayerViewIdstring): Promise<JimuLayerView>

Return the JimuLayerView when it's loaded.

For a JimuLayerView id, the instance may not have been craeted, but we can make sure the first level JimuLayerView are created. So, for a JimuLayerView id, we'll make sure its parent JimuLayerView get created and ready, and the JimuLayerView will create its children JimuLayerViews in the ready().

Parameters
ParameterType
jimuLayerViewId
string
Returns 
Promise<JimuLayerView>

whenJimuLayerViewLoadedByDataSource

Class Method
whenJimuLayerViewLoadedByDataSource(dsDataSource): Promise<JimuLayerView>
Parameters
ParameterType
ds
DataSource
Returns 
Promise<JimuLayerView>

whenJimuMapViewLoaded

Class Method
whenJimuMapViewLoaded(): Promise<JimuMapView>

Resolve the JimuMapView when it is loaded.

Returns 
Promise<JimuMapView>

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.