{"id":75351,"date":"2017-02-06T12:00:58","date_gmt":"2017-02-06T12:00:58","guid":{"rendered":"http:\/\/www.esri.com\/arcgis-blog\/products\/product\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project\/"},"modified":"2018-03-26T21:11:52","modified_gmt":"2018-03-26T21:11:52","slug":"esri-contributes-to-the-latest-version-of-the-qt-project","status":"publish","type":"blog","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project","title":{"rendered":"Esri contributes to the latest version of the Qt Project"},"author":3731,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"_searchwp_excluded":""},"categories":[],"tags":[24631],"industry":[],"product":[36601],"class_list":["post-75351","blog","type-blog","status-publish","format-standard","hentry","tag-qt","product-developers"],"acf":{"short_description":"The Qt Company's Qt SDK offers a GeoServices location API, the\u00a0QtLocation\u00a0API, that helps developers create viable mapping solutions us...","flexible_content":[{"acf_fc_layout":"content","content":"<p><a href=\"https:\/\/www.qt.io\/developers\/\" target=\"_blank\">The Qt Company&#8217;s Qt SDK<\/a> offers a GeoServices location API, the\u00a0<a href=\"http:\/\/doc.qt.io\/qt-5\/qtlocation-geoservices.html\" target=\"_blank\">QtLocation<\/a>\u00a0API, that helps developers create viable mapping solutions using location services from leading map data providers. Starting with the recent release of Qt 5.8, Esri became a full-fledged GeoServices provider as well, announcing their contribution at last year&#8217;s\u00a0<a href=\"https:\/\/conf.qtcon.org\/en\/qtcon\/public\/events\/379\">QtCon 2016<\/a>\u00a0in Berlin, Germany. The QtLocation API allows you to display and interact with tiled basemaps, find places and addresses, and perform point to point routing.<\/p>\n<p><!--more--><\/p>\n<p>The QtLocation functionalities are provided to developers as plugins to the Qt framework.<\/p>\n<p>The Esri GeoServices plugin works for previous versions of Qt as well (5.6 and 5.7). Developers can begin integrating Esri basemaps into their Qt applications today. Esri has already started using the plugin for their own apps, including <a href=\"https:\/\/survey123.arcgis.com\/\" target=\"_blank\">Survey123<\/a>. The plugin is independent of the ArcGIS Runtime SDK for Qt and does not require any components of ArcGIS Runtime. It is supported on <a href=\"http:\/\/doc.qt.io\/qt-5\/supported-platforms.html\" target=\"_blank\">any platform The Qt Company supports<\/a>.<\/p>\n<p>The Esri plugin works out-of-the-box in Qt 5.8, using the &#8220;esri&#8221; provider. To test-drive QtLocation, you don&#8217;t need to write any code. Simply start Qt Creator, go to the &#8220;Welcome&#8221; mode, select &#8220;Examples&#8221; and enter &#8220;map&#8221; in the search field. Choose &#8220;Map Viewer (QML)&#8221;. Start the example application, and in the menu &#8220;Provider&#8221;, select &#8220;Esri&#8221;. You can try 12 different esri map styles provided by the plugin.<\/p>\n<p style=\"text-align: center\"><a href=\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2017\/02\/Qt_location_plugin_demo1.gif\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter  wp-image-73961\" src=\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2017\/02\/Qt_location_plugin_demo1.gif\" alt=\"\" width=\"259\" height=\"477\" \/><\/a><\/p>\n<h2>Working with the plugin<\/h2>\n<p>To use Esri geoservice plugin in your QML code, you can create a Plugin item and set the <a href=\"http:\/\/doc.qt.io\/qt-5\/qml-qtlocation-plugin.html#name-prop\" target=\"_blank\">name<\/a> property to &#8220;esri&#8221;. To create a map using this plugin, create `Map` item and set `plugin` property.<\/p>\n<pre>Plugin {\n   id: esriPlugin\n   name: \"esri\"\n}\n\nMap {\n   id: map\n   plugin: esriPlugin\n}<\/pre>\n<p>Esri&#8217;s plugin supports 12 different basemaps. The list of available maps is accessible using <a href=\"http:\/\/doc.qt.io\/qt-5\/qml-qtlocation-map.html#supportedMapTypes-prop\" target=\"_blank\">supportedMapTypes<\/a> property from the <a href=\"http:\/\/doc.qt.io\/qt-5\/qml-qtlocation-map.html\" target=\"_blank\">Map<\/a> item.<\/p>\n<pre> Map {\n    id: map\n    plugin: esriPlugin\n    onSupportedMapTypesChanged: {\n       console.log(\"Supported MapType:\");\n       for (var i = 0; i &lt; map.supportedMapTypes.length; i++) {\n          console.log(i, supportedMapTypes[i].name);\n       }\n    }\n }<\/pre>\n<p>To select one map type, use <a href=\"http:\/\/doc.qt.io\/qt-5\/qml-qtlocation-map.html#activeMapType-prop\" target=\"_blank\">activeMapType<\/a> property. For example, to select the first one:<\/p>\n<pre> Map {\n    id: map\n    plugin: esriPlugin\n    activeMapType: supportedMapTypes[0]\n }<\/pre>\n<p>There are some services provided by the Esri plugin that require you to register the application<br \/>\nand use a token (for example, the routing service). See <a href=\"http:\/\/doc-snapshots.qt.io\/qt5-5.8\/location-plugin-esri.html#mandatory-parameters\" target=\"_blank\">documentation<\/a> for details. The token must be defined in <a href=\"http:\/\/doc.qt.io\/qt-5\/qml-qtlocation-pluginparameter.html\" target=\"_blank\">PluginParameter<\/a>:<\/p>\n<pre> Plugin {\n    id: esriPlugin\n    name: \"esri\"\n    PluginParameter { name: \"token\"; value: \"YOUR_TOKEN\" }\n }<\/pre>\n<p>QtLocation focuses on a Qt-standard, RESTful protocol for using connected-only mapping and location services. It is intended specifically for displaying detailed basemaps and simple search services that provide the geographic context to Qt applications.\u00a0<a href=\"\/\/developers.arcgis.com\/qt\" target=\"_blank\">ArcGIS Runtime SDK for Qt<\/a>\u00a0on the other hand goes much deeper in giving developers the full breadth of precise, scientific geographic capabilities for bringing ArcGIS to anyone and everyone, anytime, anywhere. Take a bit of time to\u00a0check out some of <a href=\"http:\/\/www.arcgis.com\/home\/gallery.html\" target=\"_blank\">the other great content<\/a> that you and your users can work with using the full Runtime SDK. If you want to take a closer look at what the SDK can do, take a look at the <a href=\"http:\/\/www.arcgis.com\/home\/search.html?q=QtSampleViewer%2C%20100.0.0%3D&amp;t=content&amp;restrict=true\" target=\"_blank\">stand-alone samples viewers<\/a> which give you full access to the open source app code on <a href=\"https:\/\/github.com\/Esri\/arcgis-runtime-samples-qt\" target=\"_blank\">github<\/a>.<\/p>\n<p>Have questions and comments? We invite you to collaborate with us and the community on <a href=\"https:\/\/geonet.esri.com\/community\/developers\/native-app-developers\/arcgis-runtime-sdk-for-qt\" target=\"_blank\">GeoNet<\/a>\u00a0and through the <a href=\"mailto:interest@qt-project.org\" target=\"_blank\">Qt Interest mailing list<\/a>.<\/p>\n<p><em>&#8211; The ArcGIS Runtime SDK for Qt team<\/em><\/p>\n"}],"authors":[{"ID":3731,"user_firstname":"Eric","user_lastname":"Bader","nickname":"eric906","user_nicename":"eric906","display_name":"Eric Bader","user_email":"ebader@esri.com","user_url":"","user_registered":"2018-03-02 00:15:23","user_description":"","user_avatar":"<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/d504fd8c71a3cfdb5141d911e6f6e96965093737560ec672afc0167aee81f45c?s=96&#038;d=blank&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/d504fd8c71a3cfdb5141d911e6f6e96965093737560ec672afc0167aee81f45c?s=192&#038;d=blank&#038;r=g 2x' class='avatar avatar-96 photo' height='96' width='96' loading='lazy' decoding='async'\/>"}]},"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>Esri contributes to the latest version of the Qt Project<\/title>\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\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Esri contributes to the latest version of the Qt Project\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project\" \/>\n<meta property=\"og:site_name\" content=\"ArcGIS Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/esrigis\/\" \/>\n<meta property=\"article:modified_time\" content=\"2018-03-26T21:11:52+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@ESRI\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project\"},\"author\":{\"name\":\"Eric Bader\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/60072798eba14df433cd17dd23184ad9\"},\"headline\":\"Esri contributes to the latest version of the Qt Project\",\"datePublished\":\"2017-02-06T12:00:58+00:00\",\"dateModified\":\"2018-03-26T21:11:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project\"},\"wordCount\":10,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"keywords\":[\"Qt\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project\",\"name\":\"Esri contributes to the latest version of the Qt Project\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\"},\"datePublished\":\"2017-02-06T12:00:58+00:00\",\"dateModified\":\"2018-03-26T21:11:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.esri.com\/arcgis-blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Esri contributes to the latest version of the Qt Project\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/\",\"name\":\"ArcGIS Blog\",\"description\":\"Get insider info from Esri product teams\",\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.esri.com\/arcgis-blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\",\"name\":\"Esri\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png\",\"contentUrl\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png\",\"width\":400,\"height\":400,\"caption\":\"Esri\"},\"image\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/esrigis\/\",\"https:\/\/x.com\/ESRI\",\"https:\/\/www.linkedin.com\/company\/5311\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/60072798eba14df433cd17dd23184ad9\",\"name\":\"Eric Bader\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d504fd8c71a3cfdb5141d911e6f6e96965093737560ec672afc0167aee81f45c?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d504fd8c71a3cfdb5141d911e6f6e96965093737560ec672afc0167aee81f45c?s=96&d=blank&r=g\",\"caption\":\"Eric Bader\"},\"sameAs\":[\"https:\/\/x.com\/ECBader\"],\"url\":\"\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Esri contributes to the latest version of the Qt Project","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\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project","og_locale":"en_US","og_type":"article","og_title":"Esri contributes to the latest version of the Qt Project","og_url":"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project","og_site_name":"ArcGIS Blog","article_publisher":"https:\/\/www.facebook.com\/esrigis\/","article_modified_time":"2018-03-26T21:11:52+00:00","twitter_card":"summary_large_image","twitter_site":"@ESRI","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project#article","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project"},"author":{"name":"Eric Bader","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/60072798eba14df433cd17dd23184ad9"},"headline":"Esri contributes to the latest version of the Qt Project","datePublished":"2017-02-06T12:00:58+00:00","dateModified":"2018-03-26T21:11:52+00:00","mainEntityOfPage":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project"},"wordCount":10,"commentCount":0,"publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"keywords":["Qt"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project","url":"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project","name":"Esri contributes to the latest version of the Qt Project","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#website"},"datePublished":"2017-02-06T12:00:58+00:00","dateModified":"2018-03-26T21:11:52+00:00","breadcrumb":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/\/uncategorized\/esri-contributes-to-the-latest-version-of-the-qt-project#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.esri.com\/arcgis-blog\/"},{"@type":"ListItem","position":2,"name":"Esri contributes to the latest version of the Qt Project"}]},{"@type":"WebSite","@id":"https:\/\/www.esri.com\/arcgis-blog\/#website","url":"https:\/\/www.esri.com\/arcgis-blog\/","name":"ArcGIS Blog","description":"Get insider info from Esri product teams","publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.esri.com\/arcgis-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization","name":"Esri","url":"https:\/\/www.esri.com\/arcgis-blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png","contentUrl":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png","width":400,"height":400,"caption":"Esri"},"image":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/esrigis\/","https:\/\/x.com\/ESRI","https:\/\/www.linkedin.com\/company\/5311\/"]},{"@type":"Person","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/60072798eba14df433cd17dd23184ad9","name":"Eric Bader","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d504fd8c71a3cfdb5141d911e6f6e96965093737560ec672afc0167aee81f45c?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d504fd8c71a3cfdb5141d911e6f6e96965093737560ec672afc0167aee81f45c?s=96&d=blank&r=g","caption":"Eric Bader"},"sameAs":["https:\/\/x.com\/ECBader"],"url":""}]}},"text_date":"February 6, 2017","author_name":"Eric Bader","author_page":false,"custom_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2025\/08\/Newsroom-Keyart-Wide-1920-x-1080.jpg","primary_product":"Developers","tag_data":[{"term_id":24631,"name":"Qt","slug":"qt","term_group":0,"term_taxonomy_id":24631,"taxonomy":"post_tag","description":"","parent":0,"count":36,"filter":"raw"}],"category_data":[],"product_data":[{"term_id":36601,"name":"Developers","slug":"developers","term_group":0,"term_taxonomy_id":36601,"taxonomy":"product","description":"","parent":0,"count":761,"filter":"raw"}],"primary_product_link":"https:\/\/www.esri.com\/arcgis-blog\/?s=#&products=developers","_links":{"self":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/75351","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog"}],"about":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/types\/blog"}],"author":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/users\/3731"}],"replies":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/comments?post=75351"}],"version-history":[{"count":0,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/75351\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/media?parent=75351"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/categories?post=75351"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/tags?post=75351"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/industry?post=75351"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/product?post=75351"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}