{"id":718392,"date":"2024-11-21T09:56:41","date_gmt":"2024-11-21T17:56:41","guid":{"rendered":"https:\/\/www.esri.com\/about\/newsroom\/?post_type=arcwatch&#038;p=718392"},"modified":"2024-11-21T09:56:41","modified_gmt":"2024-11-21T17:56:41","slug":"adding-color-to-arcgis-online-pop-ups-with-html","status":"publish","type":"arcwatch","link":"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html","title":{"rendered":"Adding Color to ArcGIS Online Pop-Ups with HTML"},"content":{"rendered":"","protected":false},"author":9862,"featured_media":0,"menu_order":2,"template":"","format":"standard","meta":{"_acf_changed":false,"sync_status":"","episode_type":"","audio_file":"","castos_file_data":"","podmotor_file_id":"","cover_image":"","cover_image_id":"","duration":"","filesize":"","filesize_raw":"","date_recorded":"","explicit":"","block":"","itunes_episode_number":"","itunes_title":"","itunes_season_number":"","itunes_episode_type":"","footnotes":"","_links_to":"","_links_to_target":""},"categories":[10392,358402,91,275952],"tags":[163382,20382,271],"arcwatch_issues":[491072],"class_list":["post-718392","arcwatch","type-arcwatch","status-publish","format-standard","hentry","category-arcgis-online","category-learn-arcgis","category-mapping","category-technology","tag-arcgis-online","tag-cartography","tag-mapping","arcwatch_issues-november-2024","arcwatch_sections-the-tip"],"acf":{"short_description":"Add some flair to your pop-ups with HTML coding.","pdf":{"host_remotely":false,"file":"","file_url":""},"flexible_content":[{"acf_fc_layout":"content","content":"In pop-ups, color can help break up text and make content easier and more appealing to read. But you don\u2019t need to be a coding expert to add a bit of flair to your pop-ups with HTML. Instead, you can insert small amounts of code to achieve finishing touches that aren\u2019t possible otherwise. In this short tutorial, you\u2019ll find step-by-step instructions and explanations that are suitable for all learners\u2014even those who have never used HTML before.\r\n\r\nThe example below uses HTML to add color highlighting to some text:"},{"acf_fc_layout":"image","image":718422,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"Here are the steps to make this formatting change using HTML.\r\n\r\n<strong>Step 1<\/strong>. Open the\u00a0<a href=\"https:\/\/www.arcgis.com\/apps\/mapviewer\/index.html?webmap=c833264d324d460792118868c9a5fc86\"><em>HTML pop-ups<\/em><\/a>\u00a0web map in Map Viewer. This map shows the peaks of high-ground areas\u2014also known as \u201cfells\u201d\u2014of the Lake District in England. (You can learn how to make this map by reviewing our tutorial, <a href=\"https:\/\/learn.arcgis.com\/en\/paths\/cartographic-creations-with-web-maps\/\">Cartographic creations with web maps<\/a>.)\r\n\r\nIf you want to save your work, you must sign in to ArcGIS Online. You can also complete the tutorial without saving your work.\r\n\r\nOn the\u00a0Contents\u00a0(dark) toolbar, click the\u00a0Save and open\u00a0button, then click\u00a0Save as."},{"acf_fc_layout":"image","image":718412,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<strong>Step 2<\/strong>. On the\u00a0Contents\u00a0toolbar, click Layers. In the\u00a0Layers\u00a0pane, select the\u00a0Fells\u00a0layer. A blue bar appears next to the layer when it\u2019s selected."},{"acf_fc_layout":"image","image":718442,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<strong>Step 3<\/strong>. On the\u00a0Settings\u00a0(light) toolbar, click Pop-ups."},{"acf_fc_layout":"image","image":718452,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"This opens a pop-up."},{"acf_fc_layout":"image","image":718462,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<strong>Step 4<\/strong>. Now we\u2019ll use HTML to add color formatting to the pop-up. Click\u00a0Text, then click\u00a0Edit text."},{"acf_fc_layout":"image","image":718472,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<strong>Step 5<\/strong>. On the text editor toolbar, click Source. The text reappears, formatted as HTML."},{"acf_fc_layout":"image","image":718482,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"The first three lines of text look like this:\r\n\r\n<em>&lt;p&gt;<\/em>\r\n\r\n<em>\u00a0Click &lt;a href=\u201c{expression\/expr0}\u201d&gt;&lt;strong&gt;here&lt;\/strong&gt;&lt;\/a&gt; to see a photo of {Name}.<\/em>\r\n\r\n<em>&lt;\/p&gt;<\/em>\r\n\r\nThe\u00a0<em>&lt;p&gt;<\/em>\u00a0tag defines the start of a paragraph. The\u00a0<em>&lt;\/p&gt;<\/em>\u00a0tag defines the end of the paragraph.\r\n\r\nThe\u00a0<em>&lt;a href=\u201c\u2026\u201d&gt;<\/em>\u00a0and\u00a0<em>&lt;\/a&gt;<\/em>\u00a0tags apply a hyperlink to the text between them. In this case, the hyperlink is\u00a0{expression\/expr0}, which is an Arcade expression defined elsewhere in the web map.\r\n\r\nThe\u00a0<em>&lt;strong&gt;<\/em>\u00a0and\u00a0<em>&lt;\/strong&gt;<\/em>\u00a0tags change the text between them to boldface. This code equates to a paragraph with the text\u00a0\u201cClick here to see a photo of {Name}.\u201d The word <em>here<\/em>\u00a0is changed to boldface and hyperlinked.\r\n\r\nYou won\u2019t rewrite this coding; you\u2019ll just insert some extra formatting.\r\n\r\n<strong>Step 6<\/strong>. Find the second\u00a0<em>&lt;p&gt;<\/em>\u00a0tag, on the fourth line, just before\u00a0<em>&lt;strong&gt;Height: {Metres} meters&lt;\/strong&gt;<\/em>.\r\n\r\nThis\u00a0<em>&lt;p&gt;<\/em>\u00a0tag indicates the start of a new paragraph. We\u2019ll add inline Cascading Style Sheet (CSS) language to change the background color of this paragraph to green. (CSS is used to add styling to HTML. Typically, CSS is written in a separate file that the HTML file references, but it can also be added directly to the HTML code, as you are doing here. When it is added directly, it is called\u00a0inline CSS.)\r\n\r\nAdd a space after the\u00a0<em>p<\/em>\u00a0and type the following:\u00a0<em>style=\"background-color:#bad372;\"<\/em>."},{"acf_fc_layout":"image","image":718492,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"By adding the\u00a0style=<em>\"\"<\/em>\u00a0attribute to the\u00a0<em>&lt;p&gt;<\/em>\u00a0tag, you are saying that you want to format the paragraph with some kind of style. Specifically, you want to change the\u00a0background-color\u00a0property to\u00a0<em>#bad372<\/em>, which is the hex code for a pale yellow-green color.\r\n\r\n<strong>Step 7<\/strong>. On the text editor toolbar, click the\u00a0Source\u00a0button to return to the visual editor. The second line of text is now highlighted in green."},{"acf_fc_layout":"image","image":718502,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"If the background color is missing, ensure that the code you added uses straight quotation marks instead of curly ones.\r\n\r\n<strong>Step 8<\/strong>. Now we\u2019ll change the background color of the Prominence paragraph heading.\r\n\r\nClick the\u00a0Source\u00a0button again, then scroll down to find the\u00a0<em>&lt;p&gt;<\/em>\u00a0tag just before\u00a0<em>&lt;strong&gt;Prominence: {Drop_} meters&lt;\/strong&gt;<\/em>.\r\n\r\nAdd a space after <em>&lt;p<\/em>, then type the following (the same code that you added earlier, but with a different shade of green):\u00a0<em>style=\u201cbackground-color:#76b57d;\u201d<\/em>."},{"acf_fc_layout":"image","image":718512,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"On the toolbar, click the\u00a0Source\u00a0button. The fourth line of text is now highlighted as well."},{"acf_fc_layout":"image","image":718522,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<strong>Step 9<\/strong>. Add one space before the word\u00a0<em>Height<\/em>\u00a0and\u00a0another before the word <em>Prominence<\/em>\u00a0to create a bit of a buffer with their backgrounds."},{"acf_fc_layout":"image","image":718532,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"Click the\u00a0Source\u00a0button again. Note that a new bit of code has been inserted into those two places:\u00a0<em>&amp;nbsp;<\/em>. This is the code for a nonbreaking space."},{"acf_fc_layout":"image","image":718562,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"You\u2019re ready to commit your changes. However, the\u00a0OK\u00a0button is not available."},{"acf_fc_layout":"image","image":718542,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"Switch out of the source view by clicking the\u00a0Source\u00a0button, then click\u00a0OK. Save your work, if you wish.\r\n\r\nThe color background formatting is now visible on the pop-up. The two colors match the ones used in the diagram, making it easier for people to relate the text to the image."},{"acf_fc_layout":"image","image":718572,"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"In this example, we used one CSS property: background-color. There are many other HTML and CSS properties that can be used to enhance pop-ups. You can find them all on the <a href=\"https:\/\/www.w3schools.com\/\">W3Schools website<\/a>, which is a great resource and reference for learning\u00a0<a href=\"https:\/\/www.w3schools.com\/html\/default.asp\">HTML<\/a>\u00a0and\u00a0<a href=\"https:\/\/www.w3schools.com\/css\/default.asp\">CSS<\/a>.\r\n\r\nYou can do much more with HTML in pop-ups. See some great examples in the article\u00a0\u201c<a href=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/authoring-pop-ups-using-html-source-editing\/\">Authoring pop-ups using HTML source editing<\/a>.\u201d\r\n\r\nExplore more tutorials at series <a href=\"https:\/\/learn.arcgis.com\/en\/paths\/cartographic-creations-with-web-maps\/\">Cartographic creations with web maps<\/a>."}],"references":null},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v25.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Adding Color to ArcGIS Online Pop-Ups with HTML<\/title>\n<meta name=\"description\" content=\"Add some flair to your pop-ups with HTML coding.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Adding Color to ArcGIS Online Pop-Ups with HTML\" \/>\n<meta property=\"og:description\" content=\"Add some flair to your pop-ups with HTML coding.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html\" \/>\n<meta property=\"og:site_name\" content=\"Esri\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/esrigis\/\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2024\/11\/1124_Tip-Banner_1920_1080.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@Esri\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t    \"@context\": \"https:\/\/schema.org\",\n\t    \"@graph\": [\n\t        {\n\t            \"@type\": \"WebPage\",\n\t            \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html\",\n\t            \"url\": \"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html\",\n\t            \"name\": \"Adding Color to ArcGIS Online Pop-Ups with HTML\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/#website\"\n\t            },\n\t            \"datePublished\": \"2024-11-21T17:56:41+00:00\",\n\t            \"description\": \"Add some flair to your pop-ups with HTML coding.\",\n\t            \"breadcrumb\": {\n\t                \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html#breadcrumb\"\n\t            },\n\t            \"inLanguage\": \"en-US\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"ReadAction\",\n\t                    \"target\": [\n\t                        \"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"BreadcrumbList\",\n\t            \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html#breadcrumb\",\n\t            \"itemListElement\": [\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 1,\n\t                    \"name\": \"Home\",\n\t                    \"item\": \"https:\/\/www.esri.com\/about\/newsroom\"\n\t                },\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 2,\n\t                    \"name\": \"ArcWatch Articles\",\n\t                    \"item\": \"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\"\n\t                },\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 3,\n\t                    \"name\": \"Adding Color to ArcGIS Online Pop-Ups with HTML\"\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"WebSite\",\n\t            \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/#website\",\n\t            \"url\": \"https:\/\/www.esri.com\/about\/newsroom\/\",\n\t            \"name\": \"Esri\",\n\t            \"description\": \"Esri Newsroom\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"SearchAction\",\n\t                    \"target\": {\n\t                        \"@type\": \"EntryPoint\",\n\t                        \"urlTemplate\": \"https:\/\/www.esri.com\/about\/newsroom\/?s={search_term_string}\"\n\t                    },\n\t                    \"query-input\": {\n\t                        \"@type\": \"PropertyValueSpecification\",\n\t                        \"valueRequired\": true,\n\t                        \"valueName\": \"search_term_string\"\n\t                    }\n\t                }\n\t            ],\n\t            \"inLanguage\": \"en-US\"\n\t        },\n\t        {\n\t            \"@type\": \"Person\",\n\t            \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/#\/schema\/person\/6f5608aea77aae4f1e67ff4c1ed99067\",\n\t            \"name\": \"Brian Cooke\",\n\t            \"image\": {\n\t                \"@type\": \"ImageObject\",\n\t                \"inLanguage\": \"en-US\",\n\t                \"@id\": \"https:\/\/www.esri.com\/about\/newsroom\/#\/schema\/person\/image\/\",\n\t                \"url\": \"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2024\/09\/briancooke.jpg\",\n\t                \"contentUrl\": \"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2024\/09\/briancooke.jpg\",\n\t                \"caption\": \"Brian Cooke\"\n\t            },\n\t            \"description\": \"Brian Cooke is a writer and contributing editor for the Esri Publications team. He helps readers stay informed about ArcGIS technology and tells compelling stories about how Esri partners and users apply Esri technology. Brian has worked as a marketplace researcher, an enterprise technology analyst, a technical writer and editor, and an environmental science writer for clients such as the US National Park Service and the US Forest Service. In addition to a bachelor's degree in science writing from Lehigh University, he has a master's degree in natural resource stewardship and a certificate in conservation communications\u2014both from Colorado State University.\",\n\t            \"sameAs\": [\n\t                \"www.linkedin.com\/in\/bcooke1\"\n\t            ],\n\t            \"gender\": \"male\",\n\t            \"jobTitle\": \"ArcWatch Editor\",\n\t            \"url\": \"https:\/\/www.esri.com\/about\/newsroom\/author\/bcooke\"\n\t        }\n\t    ]\n\t}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Adding Color to ArcGIS Online Pop-Ups with HTML","description":"Add some flair to your pop-ups with HTML coding.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html","og_locale":"en_US","og_type":"article","og_title":"Adding Color to ArcGIS Online Pop-Ups with HTML","og_description":"Add some flair to your pop-ups with HTML coding.","og_url":"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html","og_site_name":"Esri","article_publisher":"https:\/\/www.facebook.com\/esrigis\/","og_image":[{"url":"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2024\/11\/1124_Tip-Banner_1920_1080.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@Esri","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html","url":"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html","name":"Adding Color to ArcGIS Online Pop-Ups with HTML","isPartOf":{"@id":"https:\/\/www.esri.com\/about\/newsroom\/#website"},"datePublished":"2024-11-21T17:56:41+00:00","description":"Add some flair to your pop-ups with HTML coding.","breadcrumb":{"@id":"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.esri.com\/about\/newsroom\/arcwatch\/adding-color-to-arcgis-online-pop-ups-with-html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.esri.com\/about\/newsroom"},{"@type":"ListItem","position":2,"name":"ArcWatch Articles","item":"https:\/\/www.esri.com\/about\/newsroom\/arcwatch"},{"@type":"ListItem","position":3,"name":"Adding Color to ArcGIS Online Pop-Ups with HTML"}]},{"@type":"WebSite","@id":"https:\/\/www.esri.com\/about\/newsroom\/#website","url":"https:\/\/www.esri.com\/about\/newsroom\/","name":"Esri","description":"Esri Newsroom","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.esri.com\/about\/newsroom\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.esri.com\/about\/newsroom\/#\/schema\/person\/6f5608aea77aae4f1e67ff4c1ed99067","name":"Brian Cooke","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/about\/newsroom\/#\/schema\/person\/image\/","url":"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2024\/09\/briancooke.jpg","contentUrl":"https:\/\/www.esri.com\/about\/newsroom\/app\/uploads\/2024\/09\/briancooke.jpg","caption":"Brian Cooke"},"description":"Brian Cooke is a writer and contributing editor for the Esri Publications team. He helps readers stay informed about ArcGIS technology and tells compelling stories about how Esri partners and users apply Esri technology. Brian has worked as a marketplace researcher, an enterprise technology analyst, a technical writer and editor, and an environmental science writer for clients such as the US National Park Service and the US Forest Service. In addition to a bachelor's degree in science writing from Lehigh University, he has a master's degree in natural resource stewardship and a certificate in conservation communications\u2014both from Colorado State University.","sameAs":["www.linkedin.com\/in\/bcooke1"],"gender":"male","jobTitle":"ArcWatch Editor","url":"https:\/\/www.esri.com\/about\/newsroom\/author\/bcooke"}]}},"sort_order":"2","_links":{"self":[{"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/arcwatch\/718392","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/arcwatch"}],"about":[{"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/types\/arcwatch"}],"author":[{"embeddable":true,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/users\/9862"}],"version-history":[{"count":0,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/arcwatch\/718392\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/media?parent=718392"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/categories?post=718392"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/tags?post=718392"},{"taxonomy":"arcwatch_issues","embeddable":true,"href":"https:\/\/www.esri.com\/about\/newsroom\/wp-json\/wp\/v2\/arcwatch_issues?post=718392"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}