23
2D Visualization with the ArcGIS API for JavaScript Kristian Ekenes Praveen Ponnusamy

2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

  • Upload
    vuduong

  • View
    232

  • Download
    0

Embed Size (px)

Citation preview

Page 1: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

2D Visualization with the ArcGIS API for JavaScriptKristian Ekenes

Praveen Ponnusamy

Page 2: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Renderers, symbols, etc…

API Overview

Page 3: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

What can we

visualize?

• Where?

• What?

• How much?

• When?

• Combinations of the above

Page 4: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

MapImageLayerFeatureLayer

CSVLayer StreamLayer

Page 5: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Symbols

Page 6: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Symbols

SimpleMarkerSymbol

based on geometry type

SimpleLineSymbolSimpleFillSymbol

Points Lines Polygons

PictureMarkerSymbol PictureFillSymbol

Page 7: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Symbols

Page 8: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Data-driven visualization

• Field value(s)TOTAL_POP

• Arcade expressionRound( ($feature.BACHELOR + $feature.MASTER) / $feature.POP_25UP) );

• JavaScript functionfunction (graphic){

return graphic.attributes.POP_DENSITY;

}

Page 9: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Renderers

Page 10: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Renderers

SimpleRenderer

UniqueValueRenderer

ClassBreaksRenderer

Page 11: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

RenderersSimpleRenderer

UniqueValueRenderer

ClassBreaksRenderer

Page 12: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

RenderersVisual Variables• Color

• Size

• Opacity

• Rotation

• A property of the

renderer

• For numeric data-

driven continuous

visualizations

Page 13: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

RenderersVisual Variables

Page 14: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Renderers (3.x only)

BlendRenderer

HeatmapRenderer

DotDensityRenderer

Page 15: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Examples

Page 16: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Visual variables

Page 17: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Multivariate visualizations

Page 18: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Predominance using Arcade

Page 19: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Smart mapping in custom apps

Data exploration

Page 20: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Coming in a future release

Clustering

Page 22: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol

Please Take Our Survey on the Esri Events App!

Select the session you attended

Scroll down to find the survey

Complete Answersand Select “Submit”

Download the Esri Events app and find

your event

Page 23: 2D Visualization with the ArcGIS API for JavaScriptproceedings.esri.com/library/userconf/proc17/tech-workshops/tw_539... · Points Lines Polygons PictureMarkerSymbol PictureFillSymbol