├── CONTRIBUTING.md ├── README.md ├── basic_add_data ├── README.md ├── index.html └── thumbnail.png ├── basic_simple_map ├── README.md ├── index.html └── thumbnail.png ├── basic_use_renderer ├── README.md ├── index.html └── thumbnail.png ├── color_classed ├── README.md ├── index.html └── thumbnail.png ├── color_focus ├── README.md ├── index.html └── thumbnail.png ├── color_simple ├── README.md ├── index.html └── thumbnail.png ├── color_stops ├── README.md ├── index.html └── thumbnail.png ├── enhance_click ├── index.html ├── readme.md └── thumbnail.png ├── enhance_infotemplate ├── index.html ├── readme.md └── thumbnail.png ├── enhance_infotemplate_function ├── index.html ├── readme.md └── thumbnail.png ├── enhance_legend ├── index.html ├── readme.md └── thumbnail.png ├── license.txt ├── size_line ├── readme.md └── thumbnail.png ├── size_real ├── readme.md └── thumbnail.png ├── size_simple ├── index.html ├── readme.md └── thumbnail.png ├── size_uniquevalue ├── index.html ├── readme.md └── thumbnail.png ├── thumbnail.png ├── unique_conversion ├── index.html ├── readme.md └── thumbnail.png ├── unique_simple ├── index.html ├── readme.md └── thumbnail.png └── unique_simple_with_legend ├── index.html ├── readme.md └── thumbnail.png /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](https://github.com/esri/contributing). 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # visualization-js 2 | 3 | A collection of samples showing how to use the ArcGIS API for JavaScript to create various visualizations. 4 | 5 | To explore these samples, you can: 6 | * Click any thumbnail below to see a live sample 7 | * Click the title under a thumbnail to view code 8 | 9 | ## Samples 10 | 11 | ### Basic 12 | 13 | |[![](basic_simple_map/thumbnail.png)](https://esri.github.io/visualization-js/basic_simple_map)|[![](basic_add_data/thumbnail.png)](https://esri.github.io/visualization-js/basic_add_data)|[![](basic_use_renderer/thumbnail.png)](https://esri.github.io/visualization-js/basic_use_renderer)| 14 | |:-:|:-:|:-:| 15 | |[Simple map](basic_simple_map)|[Add data](basic_add_data)|[Use renderer (simple)](basic_use_renderer)| 16 | 17 | ### Show Unique Values 18 | 19 | |[![](unique_simple/thumbnail.png)](https://esri.github.io/visualization-js/unique_simple)|[![](unique_simple_with_legend/thumbnail.png)](https://esri.github.io/visualization-js/unique_simple_with_legend)|[![](unique_conversion/thumbnail.png)](https://esri.github.io/visualization-js/unique_conversion)| 20 | |:-:|:-:|:-:| 21 | |[Unique value renderer](unique_simple)|[With legend](unique_simple_with_legend)|[With function conversion](unique_conversion)| 22 | 23 | ### Enhancement Options 24 | 25 | |[![](enhance_infotemplate/thumbnail.png)](https://esri.github.io/visualization-js/enhance_infotemplate)|[![](enhance_infotemplate_function/thumbnail.png)](https://esri.github.io/visualization-js/enhance_infotemplate_function)|[![](enhance_legend/thumbnail.png)](https://esri.github.io/visualization-js/enhance_legend)| 26 | |:-:|:-:|:-:| 27 | |[InfoTemplate (Pop-up)](enhance_infotemplate)|[InfoTemplate (Pop-up) with custom function](enhance_infotemplate_function)|[Legend](enhance_legend)| 28 | |[![](enhance_click/thumbnail.png)](https://esri.github.io/visualization-js/enhance_click)||| 29 | |[Trigger actions on click](enhance_click)||| 30 | 31 | ### Show Data by Color 32 | 33 | |[![](color_simple/thumbnail.png)](https://esri.github.io/visualization-js/color_simple)|[![](color_focus/thumbnail.png)](https://esri.github.io/visualization-js/color_focus)|[![](color_stops/thumbnail.png)](https://esri.github.io/visualization-js/color_stops)| 34 | |:-:|:-:|:-:| 35 | |[Show data values by color](color_simple)|[Focus on a narrower range](color_focus)|[Use stops](color_stops)| 36 | |[![](color_classed/thumbnail.png)](https://esri.github.io/visualization-js/color_classed)||| 37 | |[Classify data](color_classed)||| 38 | 39 | ### Show Data by Size 40 | 41 | |[![](size_simple/thumbnail.png)](https://esri.github.io/visualization-js/size_simple)|[![](size_real/thumbnail.png)](https://developers.arcgis.com/javascript/samples/renderer_proportional_points/)|[![](size_line/thumbnail.png)](https://developers.arcgis.com/javascript/samples/renderer_proportional_lines/)| 42 | |:-:|:-:|:-:| 43 | |[Show data values by size](size_simple)|[Show data values in real-world unit](size_real)|[Show line data by size](size_line)| 44 | |[![](size_uniquevalue/thumbnail.png)](https://esri.github.io/visualization-js/size_uniquevalue)||| 45 | |[Show data values by size amd unique value](size_uniquevalue)||| 46 | 47 | ## Resources 48 | 49 | * [ArcGIS API for JavaScript](https://developers.arcgis.com/javascript/) 50 | * [ArcGIS Blog](http://blogs.esri.com/esri/arcgis/) 51 | * [twitter@esri](http://twitter.com/esri) 52 | 53 | ## Issues 54 | 55 | Find a bug or want to request a new feature? Please let us know by submitting an issue. 56 | 57 | ## Contributing 58 | 59 | Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](https://github.com/esri/contributing). 60 | 61 | ## Licensing 62 | Copyright 2014 Esri 63 | 64 | Licensed under the Apache License, Version 2.0 (the "License"); 65 | you may not use this file except in compliance with the License. 66 | You may obtain a copy of the License at 67 | 68 | http://www.apache.org/licenses/LICENSE-2.0 69 | 70 | Unless required by applicable law or agreed to in writing, software 71 | distributed under the License is distributed on an "AS IS" BASIS, 72 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 73 | See the License for the specific language governing permissions and 74 | limitations under the License. 75 | 76 | A copy of the license is available in the repository's [license.txt](license.txt) file. 77 | 78 | [](Esri Language: JavaScript)​ 79 | -------------------------------------------------------------------------------- /basic_add_data/README.md: -------------------------------------------------------------------------------- 1 | # basic_add_data 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/basic_add_data) 4 | 5 | Adding a feature layer to a map. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/basic_add_data) 8 | -------------------------------------------------------------------------------- /basic_add_data/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Data Visualization - Add Data 7 | 8 | 14 | 15 | 27 | 28 | 29 |
30 | 31 | 32 | -------------------------------------------------------------------------------- /basic_add_data/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/basic_add_data/thumbnail.png -------------------------------------------------------------------------------- /basic_simple_map/README.md: -------------------------------------------------------------------------------- 1 | # basic_simple_map 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/basic_simple_map) 4 | 5 | Creating a simple map centered at a specific location. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/basic_simple_map) 8 | -------------------------------------------------------------------------------- /basic_simple_map/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Data Visualization - Simple Map 7 | 8 | 14 | 15 | 24 | 25 | 26 |
27 | 28 | 29 | -------------------------------------------------------------------------------- /basic_simple_map/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/basic_simple_map/thumbnail.png -------------------------------------------------------------------------------- /basic_use_renderer/README.md: -------------------------------------------------------------------------------- 1 | # basic_use_renderer 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/basic_use_renderer) 4 | 5 | Applying a simple renderer on a feature layer. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/basic_use_renderer) 8 | -------------------------------------------------------------------------------- /basic_use_renderer/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Data Visualization - Use Renderer 7 | 8 | 14 | 15 | 40 | 41 | 42 |
43 | 44 | 45 | -------------------------------------------------------------------------------- /basic_use_renderer/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/basic_use_renderer/thumbnail.png -------------------------------------------------------------------------------- /color_classed/README.md: -------------------------------------------------------------------------------- 1 | # color_classed 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/color_classed) 4 | 5 | Show data values by color with classification. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/color_classed) 8 | -------------------------------------------------------------------------------- /color_classed/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Color - Classed 7 | 8 | 22 | 23 | 79 | 80 | 81 |
82 |
83 |
84 |
85 | 86 | -------------------------------------------------------------------------------- /color_classed/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/color_classed/thumbnail.png -------------------------------------------------------------------------------- /color_focus/README.md: -------------------------------------------------------------------------------- 1 | # color_focus 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/color_focus) 4 | 5 | Show data values by color with a focused range. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/color_focus) 8 | -------------------------------------------------------------------------------- /color_focus/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Color - Focus 7 | 8 | 22 | 23 | 68 | 69 | 70 |
71 |
72 |
73 |
74 | 75 | -------------------------------------------------------------------------------- /color_focus/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/color_focus/thumbnail.png -------------------------------------------------------------------------------- /color_simple/README.md: -------------------------------------------------------------------------------- 1 | # color_simple 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/color_simple) 4 | 5 | Show data values by color - starter sample. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/color_simple) 8 | -------------------------------------------------------------------------------- /color_simple/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Color - Simple 7 | 8 | 22 | 23 | 68 | 69 | 70 |
71 |
72 |
73 |
74 | 75 | -------------------------------------------------------------------------------- /color_simple/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/color_simple/thumbnail.png -------------------------------------------------------------------------------- /color_stops/README.md: -------------------------------------------------------------------------------- 1 | # color_stops 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/color_stops) 4 | 5 | Show data values by color with stops. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/color_stops) 8 | -------------------------------------------------------------------------------- /color_stops/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Color - Stops 7 | 8 | 22 | 23 | 75 | 76 | 77 |
78 |
79 |
80 |
81 | 82 | -------------------------------------------------------------------------------- /color_stops/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/color_stops/thumbnail.png -------------------------------------------------------------------------------- /enhance_click/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Data Visualization - Enhancement: Click Graphic 7 | 8 | 23 | 24 | 82 | 83 | 84 |
85 |
Click an NPS site on map to view nearby sites within 200 miles
86 | 87 | -------------------------------------------------------------------------------- /enhance_click/readme.md: -------------------------------------------------------------------------------- 1 | # enhance_click 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/enhance_click) 4 | 5 | Trigger event by clicking and update renderer. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/enhance_click) 8 | -------------------------------------------------------------------------------- /enhance_click/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/enhance_click/thumbnail.png -------------------------------------------------------------------------------- /enhance_infotemplate/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Data Visualization - Enhancement: InfoTemplate 7 | 8 | 14 | 15 | 52 | 53 | 54 |
55 | 56 | 57 | -------------------------------------------------------------------------------- /enhance_infotemplate/readme.md: -------------------------------------------------------------------------------- 1 | # enhance_infotemplate 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/enhance_infotemplate) 4 | 5 | Use InfoTemplate to display pop-up. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/enhance_infotemplate) 8 | -------------------------------------------------------------------------------- /enhance_infotemplate/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/enhance_infotemplate/thumbnail.png -------------------------------------------------------------------------------- /enhance_infotemplate_function/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Data Visualization - Enhancement: InfoTemplate with Function 7 | 8 | 14 | 15 | 56 | 57 | 58 |
59 | 60 | 61 | -------------------------------------------------------------------------------- /enhance_infotemplate_function/readme.md: -------------------------------------------------------------------------------- 1 | # enhance_infotemplate_function 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/enhance_infotemplate_function) 4 | 5 | Use InfoTemplate to display pop-up with custom content. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/enhance_infotemplate_function) 8 | -------------------------------------------------------------------------------- /enhance_infotemplate_function/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/enhance_infotemplate_function/thumbnail.png -------------------------------------------------------------------------------- /enhance_legend/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Data Visualization - Enhancement: Legend 7 | 8 | 21 | 22 | 64 | 65 | 66 |
67 |
68 |
69 |
70 | 71 | 72 | -------------------------------------------------------------------------------- /enhance_legend/readme.md: -------------------------------------------------------------------------------- 1 | # enhance_legend 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/enhance_legend) 4 | 5 | Add legend to map and use custom layer title. 6 | 7 | [![](thumbnail.png)]((https://esri.github.io/visualization-js/enhance_click)) 8 | -------------------------------------------------------------------------------- /enhance_legend/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/enhance_legend/thumbnail.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | Apache License - 2.0 2 | 3 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 4 | 5 | 1. Definitions. 6 | 7 | "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. 8 | 9 | "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. 10 | 11 | "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control 12 | with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management 13 | of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial 14 | ownership of such entity. 15 | 16 | "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. 17 | 18 | "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, 19 | and configuration files. 20 | 21 | "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to 22 | compiled object code, generated documentation, and conversions to other media types. 23 | 24 | "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice 25 | that is included in or attached to the work (an example is provided in the Appendix below). 26 | 27 | "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the 28 | editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes 29 | of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, 30 | the Work and Derivative Works thereof. 31 | 32 | "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work 33 | or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual 34 | or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of 35 | electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on 36 | electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for 37 | the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing 38 | by the copyright owner as "Not a Contribution." 39 | 40 | "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and 41 | subsequently incorporated within the Work. 42 | 43 | 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, 44 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, 45 | publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 46 | 47 | 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, 48 | non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, 49 | sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are 50 | necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was 51 | submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work 52 | or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You 53 | under this License for that Work shall terminate as of the date such litigation is filed. 54 | 55 | 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, 56 | and in Source or Object form, provided that You meet the following conditions: 57 | 58 | 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and 59 | 60 | 2. You must cause any modified files to carry prominent notices stating that You changed the files; and 61 | 62 | 3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices 63 | from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and 64 | 65 | 4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a 66 | readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the 67 | Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the 68 | Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever 69 | such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. 70 | You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, 71 | provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to 72 | Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your 73 | modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with 74 | the conditions stated in this License. 75 | 76 | 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You 77 | to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, 78 | nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 79 | 80 | 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except 81 | as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 82 | 83 | 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides 84 | its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, 85 | any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for 86 | determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under 87 | this License. 88 | 89 | 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required 90 | by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, 91 | including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the 92 | use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or 93 | any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 94 | 95 | 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a 96 | fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting 97 | such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree 98 | to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your 99 | accepting any such warranty or additional liability. 100 | 101 | END OF TERMS AND CONDITIONS 102 | -------------------------------------------------------------------------------- /size_line/readme.md: -------------------------------------------------------------------------------- 1 | # size_line 2 | 3 | [View Code](https://developers.arcgis.com/javascript/jssamples/renderer_proportional_lines.html) | [Live Sample](http://developers.arcgis.com/javascript/samples/renderer_proportional_lines/) 4 | 5 | Mapping line features with different sizes. 6 | 7 | [![](thumbnail.png)]((http://developers.arcgis.com/javascript/samples/renderer_proportional_lines/)) 8 | -------------------------------------------------------------------------------- /size_line/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/size_line/thumbnail.png -------------------------------------------------------------------------------- /size_real/readme.md: -------------------------------------------------------------------------------- 1 | # size_real 2 | 3 | [View Code](https://developers.arcgis.com/javascript/jssamples/renderer_proportional_points.html) | [Live Sample](https://developers.arcgis.com/javascript/samples/renderer_proportional_points/) 4 | 5 | Mapping data in real-world unit with their actual sizes on map. 6 | 7 | [![](thumbnail.png)]((https://developers.arcgis.com/javascript/samples/renderer_proportional_points/)) 8 | -------------------------------------------------------------------------------- /size_real/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/size_real/thumbnail.png -------------------------------------------------------------------------------- /size_simple/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Data Visualization - Use Renderer 7 | 8 | 22 | 23 | 71 | 72 | 73 |
74 |
75 |
76 |
77 | 78 | -------------------------------------------------------------------------------- /size_simple/readme.md: -------------------------------------------------------------------------------- 1 | # size_simple 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/size_simple) 4 | 5 | Mapping data by size. Showing number of visitors at each national park service site in 2013. 6 | 7 | [![](thumbnail.png)]((https://esri.github.io/visualization-js/size_simple)) 8 | -------------------------------------------------------------------------------- /size_simple/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/size_simple/thumbnail.png -------------------------------------------------------------------------------- /size_uniquevalue/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Data Visualization - Use Renderer 7 | 8 | 22 | 23 | 78 | 79 | 80 |
81 |
82 |
83 |
84 | 85 | -------------------------------------------------------------------------------- /size_uniquevalue/readme.md: -------------------------------------------------------------------------------- 1 | # size_uniquevalue 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/size_uniquevalue) 4 | 5 | Mapping data by both size and unique value. Showing number of visitors at each national park service site in 2013, with national parks and national monuments in different colors. 6 | 7 | [![](thumbnail.png)]((https://esri.github.io/visualization-js/size_uniquevalue)) 8 | -------------------------------------------------------------------------------- /size_uniquevalue/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/size_uniquevalue/thumbnail.png -------------------------------------------------------------------------------- /thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/thumbnail.png -------------------------------------------------------------------------------- /unique_conversion/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Data Visualization - Unique Value Renderer with Function Conversion 7 | 8 | 21 | 22 | 73 | 74 | 75 |
76 |
77 |
78 |
79 | 80 | 81 | -------------------------------------------------------------------------------- /unique_conversion/readme.md: -------------------------------------------------------------------------------- 1 | # unique_conversion 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/unique_conversion) 4 | 5 | Style data with unique value renderer and field function conversion. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/unique_conversion) 8 | -------------------------------------------------------------------------------- /unique_conversion/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/unique_conversion/thumbnail.png -------------------------------------------------------------------------------- /unique_simple/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Data Visualization - Unique Value Renderer 7 | 8 | 14 | 15 | 49 | 50 | 51 |
52 | 53 | 54 | -------------------------------------------------------------------------------- /unique_simple/readme.md: -------------------------------------------------------------------------------- 1 | # unique_simple 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/unique_simple) 4 | 5 | Style data with unique value renderer. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/unique_simple) 8 | -------------------------------------------------------------------------------- /unique_simple/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/unique_simple/thumbnail.png -------------------------------------------------------------------------------- /unique_simple_with_legend/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Data Visualization - Unique Value Renderer with Legend 7 | 8 | 21 | 22 | 65 | 66 | 67 |
68 |
69 |
70 |
71 | 72 | 73 | -------------------------------------------------------------------------------- /unique_simple_with_legend/readme.md: -------------------------------------------------------------------------------- 1 | # unique_simple_with_legend 2 | 3 | [View Code](index.html) | [Live Sample](https://esri.github.io/visualization-js/unique_simple_with_legend) 4 | 5 | Style data with unique value renderer and add legend to the map. 6 | 7 | [![](thumbnail.png)](https://esri.github.io/visualization-js/unique_simple_with_legend) 8 | -------------------------------------------------------------------------------- /unique_simple_with_legend/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/visualization-js/65f6462a33fc0a0b3542f84626ba1d6bc46c5b90/unique_simple_with_legend/thumbnail.png --------------------------------------------------------------------------------