├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── THIS_IS_NO_LONGER_MAINTAINED.md ├── documentation ├── ArcGISSolutionSymbolResources.docx ├── EMSymbolAttribution.docx └── SIGACTAttribution.docx ├── license.txt ├── symbology ├── desktop │ ├── style │ │ ├── ArcGISSolutionsDesktop.style │ │ ├── ArcGISforLocalGovernmentDesktop.style │ │ ├── CampusBasemap │ │ │ ├── CampusBasemap_140.style │ │ │ ├── CampusBasemap_1K.style │ │ │ ├── CampusBasemap_280.style │ │ │ ├── CampusBasemap_2K.style │ │ │ ├── CampusBasemap_4K.style │ │ │ ├── CampusBasemap_560.style │ │ │ ├── CampusBasemap_70.style │ │ │ └── CampusBasemap_9K.style │ │ ├── LawEnforcementDesktop.style │ │ ├── LtGreyCampusBasemap │ │ │ ├── LtGreyCampusBasemap_140.style │ │ │ ├── LtGreyCampusBasemap_1K.style │ │ │ ├── LtGreyCampusBasemap_280.style │ │ │ ├── LtGreyCampusBasemap_2K.style │ │ │ ├── LtGreyCampusBasemap_4K.style │ │ │ ├── LtGreyCampusBasemap_560.style │ │ │ ├── LtGreyCampusBasemap_70.style │ │ │ └── LtGreyCampusBasemap_9K.style │ │ └── PublicWorksDesktop.style │ └── stylx │ │ ├── ArcGISSolutionsDesktop.stylx │ │ ├── ArcGISforLocalGovernmentDesktop.stylx │ │ └── LawEnforcementDesktop.stylx ├── mobile │ ├── style │ │ ├── ArcGISSolutionsMobile.style │ │ ├── ArcGISforElectricUtilitiesMobile.style │ │ ├── ArcGISforEmergencyManagementMobile.style │ │ ├── ArcGISforGasUtilitiesMobile.style │ │ ├── ArcGISforLocalGovernmentMobile.style │ │ ├── ArcGISforStateGovernmentMobile.style │ │ ├── ArcGISforTelecommunicationsMobile.style │ │ ├── ArcGISforUtilitiesMobile.style │ │ ├── ArcGISforWaterUtilitiesMobile.style │ │ ├── FireServiceMobile.style │ │ ├── LandRecordsMobile.style │ │ ├── LawEnforcementMobile.style │ │ ├── PlanningandDevelopmentMobile.style │ │ ├── PublicWorksMobile.style │ │ └── TransportationMobile.style │ └── stylx │ │ ├── ArcGISSolutionsMobile.stylx │ │ ├── ArcGISforElectricMobile.stylx │ │ ├── ArcGISforEmergencyManagementMobile.stylx │ │ ├── ArcGISforGasMobile.stylx │ │ ├── ArcGISforLocalGovernmentMobile.stylx │ │ ├── ArcGISforStateGovernmentMobile.stylx │ │ ├── ArcGISforTelecommunicationsMobile.stylx │ │ ├── ArcGISforUtilitiesMobile.stylx │ │ ├── ArcGISforWaterUtilitiesMobile.stylx │ │ ├── FireServiceMobile.stylx │ │ ├── LandRecordsMobile.stylx │ │ ├── LawEnforcementMobile.stylx │ │ ├── PlanningandDevelopmentMobile.stylx │ │ ├── PublicWorksMobile.stylx │ │ └── TransportationMobile.stylx └── web │ ├── mature-support-symbols │ ├── emf │ │ ├── emergency-management-symbols │ │ │ ├── AirIncident.emf │ │ │ ├── Avalanche.emf │ │ │ ├── Bomb.emf │ │ │ ├── CivilDisturbance.emf │ │ │ ├── CriminalActivity.emf │ │ │ ├── Drought.emf │ │ │ ├── Earthquake.emf │ │ │ ├── Fire.emf │ │ │ ├── Flood.emf │ │ │ ├── Hail.emf │ │ │ ├── Hazmat.emf │ │ │ ├── Infestation.emf │ │ │ ├── Landslide.emf │ │ │ ├── MarineIncident.emf │ │ │ ├── RadioactiveMaterial.emf │ │ │ ├── RailIncident.emf │ │ │ ├── Snow.emf │ │ │ ├── Subsidence.emf │ │ │ ├── Tornado.emf │ │ │ ├── Tsunami.emf │ │ │ ├── VehicleIncident.emf │ │ │ ├── Volcano.emf │ │ │ └── ZombieAttack.emf │ │ └── incident-symbols │ │ │ ├── Arrest.emf │ │ │ ├── Arson.emf │ │ │ ├── Assassination.emf │ │ │ ├── Attack.emf │ │ │ ├── Demonstration.emf │ │ │ ├── Detain.emf │ │ │ ├── DirectFire.emf │ │ │ ├── IED.emf │ │ │ ├── IndirectFire.emf │ │ │ ├── MedEvac.emf │ │ │ ├── MineFoundCleared.emf │ │ │ ├── MineStrike.emf │ │ │ ├── Murder.emf │ │ │ ├── OtherDefensive.emf │ │ │ ├── OtherOffensive.emf │ │ │ ├── Propaganda.emf │ │ │ ├── SmallArmsFire.emf │ │ │ ├── Surveillance.emf │ │ │ ├── UnexplodedOrdnance.emf │ │ │ └── UnknownExplosion.emf │ ├── png │ │ ├── emergency-management-symbols │ │ │ ├── AirIncident.png │ │ │ ├── Avalanche.png │ │ │ ├── Bomb.png │ │ │ ├── CivilDisturbance.png │ │ │ ├── CriminalActivity.png │ │ │ ├── Drought.png │ │ │ ├── Earthquake.png │ │ │ ├── Fire.png │ │ │ ├── Flood.png │ │ │ ├── Hail.png │ │ │ ├── Hazmat.png │ │ │ ├── Infestation.png │ │ │ ├── Landslide.png │ │ │ ├── MarineIncident.png │ │ │ ├── RadioactiveMaterial.png │ │ │ ├── RailIncident.png │ │ │ ├── Snow.png │ │ │ ├── Subsidence.png │ │ │ ├── Tornado.png │ │ │ ├── TropicalCyclone.png │ │ │ ├── Tsunami.png │ │ │ ├── VehicleIncident.png │ │ │ ├── Volcano.png │ │ │ └── ZombieAttack.png │ │ └── incident-symbols │ │ │ ├── Accident.png │ │ │ ├── Arrest.png │ │ │ ├── Arson.png │ │ │ ├── Assassination.png │ │ │ ├── Attack.png │ │ │ ├── Demonstration.png │ │ │ ├── Detain.png │ │ │ ├── DirectFire.png │ │ │ ├── IED.png │ │ │ ├── IndirectFire.png │ │ │ ├── MedEvac.png │ │ │ ├── MineFoundCleared.png │ │ │ ├── MineStrike.png │ │ │ ├── Murder.png │ │ │ ├── OtherDefensive.png │ │ │ ├── OtherOffensive.png │ │ │ ├── Propaganda.png │ │ │ ├── SmallArmsFire.png │ │ │ ├── Surveillance.png │ │ │ ├── UnexplodedOrdnance.png │ │ │ └── UnknownExplosion.png │ ├── style │ │ ├── EmergencyManagementSolutions.style │ │ ├── IncidentSymbolsAsPNGs.style │ │ ├── SolutionsSymbology-Icon-Specification.csv │ │ └── SolutionsSymbology.style │ ├── stylx │ │ └── SolutionsSymbology.stylx │ └── svg │ │ ├── emergency-management-symbols │ │ ├── AirIncident.svg │ │ ├── Avalanche.svg │ │ ├── Bomb.svg │ │ ├── CivilDisturbance.svg │ │ ├── CriminalActivity.svg │ │ ├── Drought.svg │ │ ├── Earthquake.svg │ │ ├── Fire.svg │ │ ├── Flood.svg │ │ ├── Hail.svg │ │ ├── Hazmat.svg │ │ ├── Infestation.svg │ │ ├── Landslide.svg │ │ ├── MarineIncident.svg │ │ ├── RadioactiveMaterial.svg │ │ ├── RailIncident.svg │ │ ├── Snow.svg │ │ ├── Subsidence.svg │ │ ├── Tornado.svg │ │ ├── Tsunami.svg │ │ ├── VehicleIncident.svg │ │ ├── Volcano.svg │ │ └── ZombieAttack.svg │ │ └── incident-symbols │ │ ├── Accident.svg │ │ ├── Arrest.svg │ │ ├── Arson.svg │ │ ├── Assassination.svg │ │ ├── Attack.svg │ │ ├── Demonstration.svg │ │ ├── Detain.svg │ │ ├── DirectFire.svg │ │ ├── IED.svg │ │ ├── IndirectFire.svg │ │ ├── MedEvac.svg │ │ ├── MineFoundCleared.svg │ │ ├── MineStrike.svg │ │ ├── Murder.svg │ │ ├── OtherDefensive.svg │ │ ├── OtherOffensive.svg │ │ ├── Propaganda.svg │ │ ├── SmallArmsFire.svg │ │ ├── Surveillance.svg │ │ ├── UnexplodedOrdnance.svg │ │ └── UnknownExplosion.svg │ ├── style │ ├── ArcGISSolutionsWeb.style │ ├── ArcGISforElectricUtilitiesWeb.style │ ├── ArcGISforEmergencyManagementWeb.style │ ├── ArcGISforGasUtilitiesWeb.style │ ├── ArcGISforLocalGovernmentWeb.style │ ├── ArcGISforStateGovernmentWeb.style │ ├── ArcGISforTelecommunicationsWeb.style │ ├── ArcGISforUtilitiesWeb.style │ ├── ArcGISforWaterUtilitiesWeb.style │ ├── EconomicDevelopmentWeb.style │ ├── ElectionsWeb.style │ ├── EnvironmentandResourcesWeb.style │ ├── FireServiceWeb.style │ ├── FishandWildlifeWeb.style │ ├── HealthWeb.style │ ├── LandRecordsWeb.style │ ├── LawEnforcementWeb.style │ ├── MitigationWeb.style │ ├── PlanningandDevelopmentWeb.style │ ├── PublicWorksWeb.style │ ├── SecretaryofStateWeb.style │ └── TransportationWeb.style │ └── stylx │ ├── ArcGISSolutionsWeb.stylx │ ├── ArcGISforElectricUtilitiesWeb.stylx │ ├── ArcGISforEmergencyManagementWeb.stylx │ ├── ArcGISforGasUtilitiesWeb.stylx │ ├── ArcGISforLocalGovernmentWeb.stylx │ ├── ArcGISforStateGovernmentWeb.stylx │ ├── ArcGISforTelecommunicationsWeb.stylx │ ├── ArcGISforUtilitiesWeb.stylx │ ├── ArcGISforWaterUtilitiesWeb.stylx │ ├── EconomicDevelopementWeb.stylx │ ├── ElectionsWeb.stylx │ ├── EnvironmentalandResourcesWeb.stylx │ ├── FireServiceWeb.stylx │ ├── FishandWildlifeWeb.stylx │ ├── HealthWeb.stylx │ ├── LandRecordsWeb.stylx │ ├── LawEnforcementWeb.stylx │ ├── MitigationWeb.stylx │ ├── PlanningandDevelopmentWeb.stylx │ ├── PublicWorksWeb.stylx │ ├── SecretaryofStateWeb.stylx │ └── TransportationWeb.stylx ├── symbols-image.jpg └── tools ├── SVGtoEMF.bat └── SVGtoPNG.bat /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | 3 | #Mac 4 | .DS_Store 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Packages 10 | *.egg 11 | *.egg-info 12 | dist 13 | build 14 | eggs 15 | parts 16 | bin 17 | var 18 | sdist 19 | develop-eggs 20 | .installed.cfg 21 | lib 22 | lib64 23 | __pycache__ 24 | 25 | # Installer logs 26 | pip-log.txt 27 | 28 | # Unit test / coverage reports 29 | .coverage 30 | .tox 31 | nosetests.xml 32 | 33 | # Translations 34 | *.mo 35 | 36 | # Mr Developer 37 | .mr.developer.cfg 38 | .project 39 | .pydevproject 40 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](https://github.com/esri/contributing). -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | solutions-symbology-data 2 | ======================== 3 | 4 | ## *This repo is not longer maintained* ## 5 | 6 | You can find Emergency Management, Local Government, and State Government symbols in ArcGIS Online, and [Government](https://esri-styles.maps.arcgis.com/home/item.html?id=a3109109c7114857809d70a230896934 "Government") and [Public Safety](https://esri-styles.maps.arcgis.com/home/item.html?id=b75a84b25d084eefadb87b57c50939f6 "Public Safety") ArcGIS Pro style in the Esri style organization. 7 | 8 | The purpose of the solutions-symbology-data repository is to share, edit, and develop symbols for the [ArcGIS Solutions](http://solutions.arcgis.com/ "ArcGIS Solutions") (Local and State Government, Emergency Management, Utilities, Military, Intelligence, Telecommunications, and Parks and Gardens). 9 | 10 | **Note:** This repo does not include standard military symbology such as 2525 and APP. 11 | 12 | ![Image of repository-template](symbols-image.jpg) 13 | 14 | ## Features 15 | 16 | This repo contains symbols designed to be used in ArcMap, ArcGIS Online, ArcGIS Server (map and feature services), and Collector for ArcGIS. 17 | 18 | In the repo there are three main folders: 19 | 20 | 21 | 22 | 23 | - Desktop symbols are optimized for editing, basemaps and printed maps. 24 | 25 | 26 | - Mobile symbols are optimized for field maps. 27 | 28 | 29 | - Web symbols are optimized for web maps consumed via browsers or web applications. 30 | 31 | Within those folders there are another set of folders categorized based on file types. 32 | 33 | **Note:** Not all main folders (desktop, mobile, web) contain all the folders described below. 34 | 35 | * EMF (Enhanced Metafile) 36 | * Symbols were designed to be used in ArcGIS Pro. 37 | * PNG (Portable Network Graphics) 38 | * Symbols were designed to be used in ArcGIS Online. 39 | * Style files (style & stylx) 40 | * Symbols stored within .style are PNG images that are designed to be used in ArcGIS 10.x. 41 | * Symbols stored within .stylx are EMF & SVG images that are designed to be used in ArcGIS Pro. 42 | * SVG (Scaleable Vector Graphics) 43 | * Symbols were designed to be modified in vector editing software such as Inkscape. **Note:** Inkscape 0.48 (or later) was used by batch script in this repo to convert .svg files to .emf/.png. Not all folders has all file type folders. 44 | 45 | The resources used to create the symbols have been acknowledged in the documentation folder. 46 | 47 | Tools have been developed to help you convert symbols saved as SVG to EMF which you can use in ArcGIS Pro, and SVG to PNG which you can use in ArcMap 10.x. 48 | 49 | 50 | 51 | ## Sections 52 | 53 | * [Requirements](#requirements) 54 | * [Instructions](#instructions) 55 | * [Resources](#resources) 56 | * [Issues](#issues) 57 | * [Contributing](#contributing) 58 | * [Licensing](#licensing) 59 | 60 | ## Requirements 61 | 62 | * ArcGIS Desktop 10.x and ArcGIS Pro 63 | * Optionally, if you plan to modify symbols you will need: 64 | * Scalable Vector Graphic (SVG/.svg) editing software (for example, Inkscape) 65 | * Inkscape 0.48 (or later) - used by batch script in this repo to convert .svg files to .emf/.png 66 | 67 | ## Instructions 68 | 69 | ### General Help 70 | 71 | * [New to Github? Get started here.](http://htmlpreview.github.com/?https://github.com/Esri/esri.github.com/blob/master/help/esri-getting-to-know-github.html) 72 | 73 | ### Using the Symbols 74 | 75 | * Download the repository 76 | * You may also wish to copy the .style files from each of the repository source folders into your ArcGIS Desktop Style folder for easy access, or added to a project using ArcGIS Pro. 77 | 78 | ### Modifying the Source Data 79 | 80 | * Build your own icons in the graphics editor of your choice. 81 | * Save each symbol as a SVG file (.svg). 82 | * Ensure that the [Inkscape SVG editor/converter](http://www.inkscape.org) is installed 83 | * Modify one of the [converter .bat command file](./tools) to reflect your local paths and desired settings 84 | * [SVGtoPNG.bat](./tools/SVGtoPNG.bat) - if creating/importing raster symbology 85 | * [SVGtoEMF.bat](./tools/SVGtoEMF.bat) - if creating/importing vector symbology 86 | * **Note:** You will need to change this .bat file to 87 | * Change the paths to Inkscape and the local data on your machine 88 | * If using png/raster, you may want to also change the export image width and height 89 | * `--export-width=64 --export-height=64` 90 | * Or remove these options to use the source image size properties (currently 18x18 pixels) 91 | * Run the .bat file in the command prompt to convert your symbols from .SVG to .PNG (or .EMF). 92 | * Create a new style in ArcMap using the Style Manager 93 | * Using [a style import utility](https://github.com/williamscraigm/makiArcGISStyle) or ArcMap, import each graphic into the desired style as a picture marker symbol. 94 | * **Note:** the image sizes/types used in the current set of styles: 95 | * 18 Point PNG for Incident Symbols 96 | * 24 Point PNG for Emergency Management Symbols 97 | * 32 Point EMF for the combined Solutions Symbol Set 98 | * Save your new style file. 99 | * Optionally, submit a pull request that includes your new/modified files. 100 | 101 | ## Resources 102 | 103 | * [Incident Analysis Template](http://maritime-ops.maps.arcgis.com/home/item.html?id=fd6e2c3272c14826b9781e93580dacfe) 104 | * [Blog post further explaining this repository/symbology](http://blogs.esri.com/esri/arcgis/2014/04/17/arcgis-solutions-symbols-now-have-a-repo-on-github/) 105 | * [Source Data for Military Feature (2525 & APP) Symbology](https://github.com/Esri/military-features-data) 106 | * [Inkscape](https://inkscape.org/en/) 107 | 108 | ## Issues 109 | 110 | Find a bug or want to request a new symbol? Please let us know by submitting an issue. 111 | 112 | ## Contributing 113 | 114 | Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](https://github.com/esri/contributing). 115 | 116 | ## Licensing 117 | 118 | Copyright 2014 Esri 119 | 120 | Licensed under the Apache License, Version 2.0 (the "License"); 121 | you may not use this file except in compliance with the License. 122 | You may obtain a copy of the License at 123 | 124 | [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) 125 | 126 | Unless required by applicable law or agreed to in writing, software 127 | distributed under the License is distributed on an "AS IS" BASIS, 128 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 129 | See the License for the specific language governing permissions and 130 | limitations under the License. 131 | 132 | A copy of the license is available in the repository's [license.txt](license.txt) file. 133 | 134 | "Falling" icon used from the [Noun Project by Andrea Novoa](http://www.thenounproject.com/Andiinnoo/) under the 135 | [Creative Commons Attribution 3.0](http://creativecommons.org/licenses/by/3.0/us/) license 136 | 137 | Thanks to the other designers for Public Domain Icons used from [The Noun Project](http://thenounproject.com/). 138 | 139 | 140 | [](Esri Tags: ArcGIS Defense Intelligence Situational Awareness Military Symbology Incident Analysis Solutions ArcGISSolutions State-Government Local-Government State Local Government Water Utilities Gas Electric Emergency Management) 141 | [](Esri Language: XML) 142 | -------------------------------------------------------------------------------- /THIS_IS_NO_LONGER_MAINTAINED.md: -------------------------------------------------------------------------------- 1 | #Mature Support As of January-2018 the Configurable Locator has moved to the Mature Lifecycle Phase. See the Readme.md for more details. -------------------------------------------------------------------------------- /documentation/ArcGISSolutionSymbolResources.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/documentation/ArcGISSolutionSymbolResources.docx -------------------------------------------------------------------------------- /documentation/EMSymbolAttribution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/documentation/EMSymbolAttribution.docx -------------------------------------------------------------------------------- /documentation/SIGACTAttribution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/documentation/SIGACTAttribution.docx -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /symbology/desktop/style/ArcGISSolutionsDesktop.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/ArcGISSolutionsDesktop.style -------------------------------------------------------------------------------- /symbology/desktop/style/ArcGISforLocalGovernmentDesktop.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/ArcGISforLocalGovernmentDesktop.style -------------------------------------------------------------------------------- /symbology/desktop/style/CampusBasemap/CampusBasemap_140.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/CampusBasemap/CampusBasemap_140.style -------------------------------------------------------------------------------- /symbology/desktop/style/CampusBasemap/CampusBasemap_1K.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/CampusBasemap/CampusBasemap_1K.style -------------------------------------------------------------------------------- /symbology/desktop/style/CampusBasemap/CampusBasemap_280.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/CampusBasemap/CampusBasemap_280.style -------------------------------------------------------------------------------- /symbology/desktop/style/CampusBasemap/CampusBasemap_2K.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/CampusBasemap/CampusBasemap_2K.style -------------------------------------------------------------------------------- /symbology/desktop/style/CampusBasemap/CampusBasemap_4K.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/CampusBasemap/CampusBasemap_4K.style -------------------------------------------------------------------------------- /symbology/desktop/style/CampusBasemap/CampusBasemap_560.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/CampusBasemap/CampusBasemap_560.style -------------------------------------------------------------------------------- /symbology/desktop/style/CampusBasemap/CampusBasemap_70.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/CampusBasemap/CampusBasemap_70.style -------------------------------------------------------------------------------- /symbology/desktop/style/CampusBasemap/CampusBasemap_9K.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/CampusBasemap/CampusBasemap_9K.style -------------------------------------------------------------------------------- /symbology/desktop/style/LawEnforcementDesktop.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/LawEnforcementDesktop.style -------------------------------------------------------------------------------- /symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_140.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_140.style -------------------------------------------------------------------------------- /symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_1K.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_1K.style -------------------------------------------------------------------------------- /symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_280.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_280.style -------------------------------------------------------------------------------- /symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_2K.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_2K.style -------------------------------------------------------------------------------- /symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_4K.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_4K.style -------------------------------------------------------------------------------- /symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_560.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_560.style -------------------------------------------------------------------------------- /symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_70.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_70.style -------------------------------------------------------------------------------- /symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_9K.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/LtGreyCampusBasemap/LtGreyCampusBasemap_9K.style -------------------------------------------------------------------------------- /symbology/desktop/style/PublicWorksDesktop.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/style/PublicWorksDesktop.style -------------------------------------------------------------------------------- /symbology/desktop/stylx/ArcGISSolutionsDesktop.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/stylx/ArcGISSolutionsDesktop.stylx -------------------------------------------------------------------------------- /symbology/desktop/stylx/ArcGISforLocalGovernmentDesktop.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/stylx/ArcGISforLocalGovernmentDesktop.stylx -------------------------------------------------------------------------------- /symbology/desktop/stylx/LawEnforcementDesktop.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/desktop/stylx/LawEnforcementDesktop.stylx -------------------------------------------------------------------------------- /symbology/mobile/style/ArcGISSolutionsMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/ArcGISSolutionsMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/ArcGISforElectricUtilitiesMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/ArcGISforElectricUtilitiesMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/ArcGISforEmergencyManagementMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/ArcGISforEmergencyManagementMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/ArcGISforGasUtilitiesMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/ArcGISforGasUtilitiesMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/ArcGISforLocalGovernmentMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/ArcGISforLocalGovernmentMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/ArcGISforStateGovernmentMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/ArcGISforStateGovernmentMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/ArcGISforTelecommunicationsMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/ArcGISforTelecommunicationsMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/ArcGISforUtilitiesMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/ArcGISforUtilitiesMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/ArcGISforWaterUtilitiesMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/ArcGISforWaterUtilitiesMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/FireServiceMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/FireServiceMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/LandRecordsMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/LandRecordsMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/LawEnforcementMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/LawEnforcementMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/PlanningandDevelopmentMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/PlanningandDevelopmentMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/PublicWorksMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/PublicWorksMobile.style -------------------------------------------------------------------------------- /symbology/mobile/style/TransportationMobile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/style/TransportationMobile.style -------------------------------------------------------------------------------- /symbology/mobile/stylx/ArcGISSolutionsMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/ArcGISSolutionsMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/ArcGISforElectricMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/ArcGISforElectricMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/ArcGISforEmergencyManagementMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/ArcGISforEmergencyManagementMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/ArcGISforGasMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/ArcGISforGasMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/ArcGISforLocalGovernmentMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/ArcGISforLocalGovernmentMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/ArcGISforStateGovernmentMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/ArcGISforStateGovernmentMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/ArcGISforTelecommunicationsMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/ArcGISforTelecommunicationsMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/ArcGISforUtilitiesMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/ArcGISforUtilitiesMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/ArcGISforWaterUtilitiesMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/ArcGISforWaterUtilitiesMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/FireServiceMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/FireServiceMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/LandRecordsMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/LandRecordsMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/LawEnforcementMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/LawEnforcementMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/PlanningandDevelopmentMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/PlanningandDevelopmentMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/PublicWorksMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/PublicWorksMobile.stylx -------------------------------------------------------------------------------- /symbology/mobile/stylx/TransportationMobile.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/mobile/stylx/TransportationMobile.stylx -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/AirIncident.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/AirIncident.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Avalanche.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Avalanche.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Bomb.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Bomb.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/CivilDisturbance.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/CivilDisturbance.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/CriminalActivity.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/CriminalActivity.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Drought.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Drought.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Earthquake.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Earthquake.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Fire.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Fire.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Flood.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Flood.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Hail.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Hail.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Hazmat.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Hazmat.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Infestation.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Infestation.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Landslide.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Landslide.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/MarineIncident.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/MarineIncident.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/RadioactiveMaterial.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/RadioactiveMaterial.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/RailIncident.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/RailIncident.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Snow.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Snow.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Subsidence.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Subsidence.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Tornado.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Tornado.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Tsunami.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Tsunami.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/VehicleIncident.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/VehicleIncident.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/Volcano.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/Volcano.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/emergency-management-symbols/ZombieAttack.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/emergency-management-symbols/ZombieAttack.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/Arrest.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/Arrest.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/Arson.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/Arson.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/Assassination.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/Assassination.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/Attack.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/Attack.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/Demonstration.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/Demonstration.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/Detain.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/Detain.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/DirectFire.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/DirectFire.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/IED.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/IED.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/IndirectFire.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/IndirectFire.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/MedEvac.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/MedEvac.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/MineFoundCleared.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/MineFoundCleared.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/MineStrike.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/MineStrike.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/Murder.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/Murder.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/OtherDefensive.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/OtherDefensive.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/OtherOffensive.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/OtherOffensive.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/Propaganda.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/Propaganda.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/SmallArmsFire.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/SmallArmsFire.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/Surveillance.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/Surveillance.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/UnexplodedOrdnance.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/UnexplodedOrdnance.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/emf/incident-symbols/UnknownExplosion.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/emf/incident-symbols/UnknownExplosion.emf -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/AirIncident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/AirIncident.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Avalanche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Avalanche.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Bomb.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/CivilDisturbance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/CivilDisturbance.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/CriminalActivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/CriminalActivity.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Drought.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Drought.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Earthquake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Earthquake.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Fire.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Flood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Flood.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Hail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Hail.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Hazmat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Hazmat.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Infestation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Infestation.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Landslide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Landslide.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/MarineIncident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/MarineIncident.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/RadioactiveMaterial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/RadioactiveMaterial.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/RailIncident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/RailIncident.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Snow.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Subsidence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Subsidence.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Tornado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Tornado.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/TropicalCyclone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/TropicalCyclone.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Tsunami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Tsunami.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/VehicleIncident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/VehicleIncident.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/Volcano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/Volcano.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/emergency-management-symbols/ZombieAttack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/emergency-management-symbols/ZombieAttack.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/Accident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/Accident.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/Arrest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/Arrest.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/Arson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/Arson.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/Assassination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/Assassination.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/Attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/Attack.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/Demonstration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/Demonstration.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/Detain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/Detain.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/DirectFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/DirectFire.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/IED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/IED.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/IndirectFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/IndirectFire.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/MedEvac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/MedEvac.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/MineFoundCleared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/MineFoundCleared.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/MineStrike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/MineStrike.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/Murder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/Murder.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/OtherDefensive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/OtherDefensive.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/OtherOffensive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/OtherOffensive.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/Propaganda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/Propaganda.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/SmallArmsFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/SmallArmsFire.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/Surveillance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/Surveillance.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/UnexplodedOrdnance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/UnexplodedOrdnance.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/png/incident-symbols/UnknownExplosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/png/incident-symbols/UnknownExplosion.png -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/style/EmergencyManagementSolutions.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/style/EmergencyManagementSolutions.style -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/style/IncidentSymbolsAsPNGs.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/style/IncidentSymbolsAsPNGs.style -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/style/SolutionsSymbology-Icon-Specification.csv: -------------------------------------------------------------------------------- 1 | filePath,pointSize,styleItemName,styleItemCategory,styleItemTags 2 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\Accident.emf,32,Accident,Incident,Incident;Accident;emf 3 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\Arrest.emf,32,Arrest,Incident,Incident;Arrest;emf 4 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\Arson.emf,32,Arson,Incident,Incident;Arson;emf 5 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\Assassination.emf,32,Assassination,Incident,Incident;Assassination;emf 6 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\Attack.emf,32,Attack,Incident,Incident;Attack;emf 7 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\Demonstration.emf,32,Demonstration,Incident,Incident;Demonstration;emf 8 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\Detain.emf,32,Detain,Incident,Incident;Detain;emf 9 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\DirectFire.emf,32,DirectFire,Incident,Incident;DirectFire;emf 10 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\IED.emf,32,IED,Incident,Incident;IED;emf 11 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\IndirectFire.emf,32,IndirectFire,Incident,Incident;IndirectFire;emf 12 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\MedEvac.emf,32,MedEvac,Incident,Incident;MedEvac;emf 13 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\MineFoundCleared.emf,32,MineFoundCleared,Incident,Incident;MineFoundCleared;emf 14 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\MineStrike.emf,32,MineStrike,Incident,Incident;MineStrike;emf 15 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\Murder.emf,32,Murder,Incident,Incident;Murder;emf 16 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\OtherDefensive.emf,32,OtherDefensive,Incident,Incident;OtherDefensive;emf 17 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\OtherOffensive.emf,32,OtherOffensive,Incident,Incident;OtherOffensive;emf 18 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\Propaganda.emf,32,Propaganda,Incident,Incident;Propaganda;emf 19 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\SmallArmsFire.emf,32,SmallArmsFire,Incident,Incident;SmallArmsFire;emf 20 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\Surveillance.emf,32,Surveillance,Incident,Incident;Surveillance;emf 21 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\UnexplodedOrdnance.emf,32,UnexplodedOrdnance,Incident,Incident;UnexplodedOrdnance;emf 22 | {Github Root}\solutions-symbology-data\symbols\web\emf\incident-symbols\UnknownExplosion.emf,32,UnknownExplosion,Incident,Incident;UnknownExplosion;emf 23 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\AirIncident.emf,32,AirIncident,Emergency,Emergency;AirIncident;emf 24 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Avalanche.emf,32,Avalanche,Emergency,Emergency;Avalanche;emf 25 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Bomb.emf,32,Bomb,Emergency,Emergency;Bomb;emf 26 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\CivilDisturbance.emf,32,CivilDisturbance,Emergency,Emergency;CivilDisturbance;emf 27 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\CriminalActivity.emf,32,CriminalActivity,Emergency,Emergency;CriminalActivity;emf 28 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Drought.emf,32,Drought,Emergency,Emergency;Drought;emf 29 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Earthquake.emf,32,Earthquake,Emergency,Emergency;Earthquake;emf 30 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Fire.emf,32,Fire,Emergency,Emergency;Fire;emf 31 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Flood.emf,32,Flood,Emergency,Emergency;Flood;emf 32 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Hail.emf,32,Hail,Emergency,Emergency;Hail;emf 33 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Hazmat.emf,32,Hazmat,Emergency,Emergency;Hazmat;emf 34 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Infestation.emf,32,Infestation,Emergency,Emergency;Infestation;emf 35 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Landslide.emf,32,Landslide,Emergency,Emergency;Landslide;emf 36 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\MarineIncident.emf,32,MarineIncident,Emergency,Emergency;MarineIncident;emf 37 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\RadioactiveMaterial.emf,32,RadioactiveMaterial,Emergency,Emergency;RadioactiveMaterial;emf 38 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\RailIncident.emf,32,RailIncident,Emergency,Emergency;RailIncident;emf 39 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Snow.emf,32,Snow,Emergency,Emergency;Snow;emf 40 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Subsidence.emf,32,Subsidence,Emergency,Emergency;Subsidence;emf 41 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Tornado.emf,32,Tornado,Emergency,Emergency;Tornado;emf 42 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Tsunami.emf,32,Tsunami,Emergency,Emergency;Tsunami;emf 43 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\VehicleIncident.emf,32,VehicleIncident,Emergency,Emergency;VehicleIncident;emf 44 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\Volcano.emf,32,Volcano,Emergency,Emergency;Volcano;emf 45 | {Github Root}\solutions-symbology-data\symbols\web\emf\emergency-management-symbols\ZombieAttack.emf,32,ZombieAttack,Emergency,Emergency;ZombieAttack;emf 46 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/style/SolutionsSymbology.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/style/SolutionsSymbology.style -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/stylx/SolutionsSymbology.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/mature-support-symbols/stylx/SolutionsSymbology.stylx -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/AirIncident.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Avalanche.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 12 | 14 | 31 | 32 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Bomb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/CivilDisturbance.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 12 | 13 | 14 | 21 | 22 | 23 | 24 | 25 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/CriminalActivity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 26 | 30 | 44 | 50 | 57 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Drought.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 12 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Earthquake.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 12 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Fire.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 60 | 61 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Flood.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 14 | 19 | 20 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Hail.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 23 | 25 | 26 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Hazmat.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | HAZMAT 12 | 13 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Infestation.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 12 | 14 | 16 | 18 | 20 | 22 | 24 | 26 | 28 | 29 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Landslide.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 14 | 19 | 23 | 29 | 34 | 43 | 44 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/MarineIncident.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 14 | 15 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/RadioactiveMaterial.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 13 | 16 | 21 | 23 | 24 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/RailIncident.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 12 | 14 | 24 | 28 | 31 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Snow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 29 | 30 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Subsidence.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 28 | 30 | 31 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Tornado.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Tsunami.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 12 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/VehicleIncident.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 19 | 20 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/Volcano.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/emergency-management-symbols/ZombieAttack.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | 13 | 14 | 19 | 20 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/Accident.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 21 | 22 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/Arrest.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 21 | 22 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/Arson.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 19 | 21 | 22 | 23 | 25 | 26 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/Assassination.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 21 | 22 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/Attack.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/Demonstration.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 14 | 15 | 22 | 23 | 24 | 25 | 26 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/Detain.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/DirectFire.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 14 | 15 | 22 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/IED.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 14 | 20 | 31 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/IndirectFire.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 14 | 15 | 17 | 18 | 25 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/MedEvac.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 12 | 13 | 14 | 20 | 21 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/MineFoundCleared.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 20 | 21 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/MineStrike.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/Murder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 12 | 13 | 14 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/OtherDefensive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/OtherOffensive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/Propaganda.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 19 | 20 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/SmallArmsFire.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/Surveillance.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 21 | 22 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/UnexplodedOrdnance.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 13 | 14 | 22 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /symbology/web/mature-support-symbols/svg/incident-symbols/UnknownExplosion.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 12 | 15 | 16 | 17 | 18 | 19 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /symbology/web/style/ArcGISSolutionsWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/ArcGISSolutionsWeb.style -------------------------------------------------------------------------------- /symbology/web/style/ArcGISforElectricUtilitiesWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/ArcGISforElectricUtilitiesWeb.style -------------------------------------------------------------------------------- /symbology/web/style/ArcGISforEmergencyManagementWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/ArcGISforEmergencyManagementWeb.style -------------------------------------------------------------------------------- /symbology/web/style/ArcGISforGasUtilitiesWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/ArcGISforGasUtilitiesWeb.style -------------------------------------------------------------------------------- /symbology/web/style/ArcGISforLocalGovernmentWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/ArcGISforLocalGovernmentWeb.style -------------------------------------------------------------------------------- /symbology/web/style/ArcGISforStateGovernmentWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/ArcGISforStateGovernmentWeb.style -------------------------------------------------------------------------------- /symbology/web/style/ArcGISforTelecommunicationsWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/ArcGISforTelecommunicationsWeb.style -------------------------------------------------------------------------------- /symbology/web/style/ArcGISforUtilitiesWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/ArcGISforUtilitiesWeb.style -------------------------------------------------------------------------------- /symbology/web/style/ArcGISforWaterUtilitiesWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/ArcGISforWaterUtilitiesWeb.style -------------------------------------------------------------------------------- /symbology/web/style/EconomicDevelopmentWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/EconomicDevelopmentWeb.style -------------------------------------------------------------------------------- /symbology/web/style/ElectionsWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/ElectionsWeb.style -------------------------------------------------------------------------------- /symbology/web/style/EnvironmentandResourcesWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/EnvironmentandResourcesWeb.style -------------------------------------------------------------------------------- /symbology/web/style/FireServiceWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/FireServiceWeb.style -------------------------------------------------------------------------------- /symbology/web/style/FishandWildlifeWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/FishandWildlifeWeb.style -------------------------------------------------------------------------------- /symbology/web/style/HealthWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/HealthWeb.style -------------------------------------------------------------------------------- /symbology/web/style/LandRecordsWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/LandRecordsWeb.style -------------------------------------------------------------------------------- /symbology/web/style/LawEnforcementWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/LawEnforcementWeb.style -------------------------------------------------------------------------------- /symbology/web/style/MitigationWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/MitigationWeb.style -------------------------------------------------------------------------------- /symbology/web/style/PlanningandDevelopmentWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/PlanningandDevelopmentWeb.style -------------------------------------------------------------------------------- /symbology/web/style/PublicWorksWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/PublicWorksWeb.style -------------------------------------------------------------------------------- /symbology/web/style/SecretaryofStateWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/SecretaryofStateWeb.style -------------------------------------------------------------------------------- /symbology/web/style/TransportationWeb.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/style/TransportationWeb.style -------------------------------------------------------------------------------- /symbology/web/stylx/ArcGISSolutionsWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/ArcGISSolutionsWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/ArcGISforElectricUtilitiesWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/ArcGISforElectricUtilitiesWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/ArcGISforEmergencyManagementWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/ArcGISforEmergencyManagementWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/ArcGISforGasUtilitiesWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/ArcGISforGasUtilitiesWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/ArcGISforLocalGovernmentWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/ArcGISforLocalGovernmentWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/ArcGISforStateGovernmentWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/ArcGISforStateGovernmentWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/ArcGISforTelecommunicationsWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/ArcGISforTelecommunicationsWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/ArcGISforUtilitiesWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/ArcGISforUtilitiesWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/ArcGISforWaterUtilitiesWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/ArcGISforWaterUtilitiesWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/EconomicDevelopementWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/EconomicDevelopementWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/ElectionsWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/ElectionsWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/EnvironmentalandResourcesWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/EnvironmentalandResourcesWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/FireServiceWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/FireServiceWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/FishandWildlifeWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/FishandWildlifeWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/HealthWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/HealthWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/LandRecordsWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/LandRecordsWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/LawEnforcementWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/LawEnforcementWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/MitigationWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/MitigationWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/PlanningandDevelopmentWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/PlanningandDevelopmentWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/PublicWorksWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/PublicWorksWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/SecretaryofStateWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/SecretaryofStateWeb.stylx -------------------------------------------------------------------------------- /symbology/web/stylx/TransportationWeb.stylx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbology/web/stylx/TransportationWeb.stylx -------------------------------------------------------------------------------- /symbols-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/solutions-symbology-data/5121fdd58a9b4c7a3857607e4e3d68452058934c/symbols-image.jpg -------------------------------------------------------------------------------- /tools/SVGtoEMF.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | :: This script converts SVG files to PNG. Run as admin 4 | :: For Inkscape help, see http://inkscape.org/doc/inkscape-man.html 5 | :: For an alternative to Inkscape that works just as well, see http://code.google.com/p/svg2emf/ 6 | 7 | :: --> TODO: Correct paths below (to your local configuration/setup) 8 | SET converter=C:\{Install Location}\inkscape\inkscape.com 9 | SET source_folder=C:\{Github}\solutions-symbology-data\data\emergency-management-symbols\svgs 10 | SET destination_folder=C:\{Github}\solutions-symbology-data\data\emergency-management-symbols\emfs 11 | 12 | :: Use this option if you want to convert a folder and all subfolders (recursion) ... 13 | for /r "%source_folder%" %%i in (*.svg) do "%converter%" "%%i" --export-emf="%destination_folder%\%%~ni.emf" -------------------------------------------------------------------------------- /tools/SVGtoPNG.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | :: This script converts SVG files to PNG. Run as admin 4 | :: For Inkscape help, see http://inkscape.org/doc/inkscape-man.html 5 | :: For an alternative to Inkscape that works just as well, see http://code.google.com/p/svg2emf/ 6 | 7 | :: :: --> TODO: Correct paths below (to your local configuration/setup) 8 | SET converter=C:\{Install Location}\Inkscape\inkscape.com 9 | SET source_folder=C:\{Github}\solutions-symbology-data\data\incident-symbols\svgs 10 | SET destination_folder=C:\{Github}\solutions-symbology-data\data\incident-symbols\pngs 11 | 12 | :: Use this option if you want to convert a folder and all subfolders (recursion) ... 13 | for /r "%source_folder%" %%i in (*.svg) do "%converter%" "%%i" --export-width=64 --export-height=64 --export-png="%destination_folder%\%%~ni.png" --------------------------------------------------------------------------------