{"id":1816982,"date":"2023-01-24T06:30:29","date_gmt":"2023-01-24T14:30:29","guid":{"rendered":"https:\/\/www.esri.com\/arcgis-blog\/?post_type=blog&#038;p=1816982"},"modified":"2024-04-12T03:15:24","modified_gmt":"2024-04-12T10:15:24","slug":"five-tips-for-developing-your-native-applications-using-web-maps","status":"publish","type":"blog","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps","title":{"rendered":"Five tips for developing native applications using web maps"},"author":10242,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"_searchwp_excluded":""},"categories":[738191],"tags":[39801,768202,24531,31141,23631],"industry":[],"product":[761642,765412,36551,36561,36891],"class_list":["post-1816982","blog","type-blog","status-publish","format-standard","hentry","category-developers","tag-arcgis-developer-community","tag-arcgis-maps-sdks-for-native-apps","tag-ios","tag-web-mapping-application","tag-web-maps","product-platform","product-maps-sdk","product-arcgis-online","product-arcgis-pro","product-api-ios"],"acf":{"authors":[{"ID":10242,"user_firstname":"Rachael","user_lastname":"Ellen","nickname":"Rachael Ellen","user_nicename":"rellen","display_name":"Rachael Ellen","user_email":"rellen@esri.com","user_url":"https:\/\/dev.to\/rachaele\/","user_registered":"2019-11-29 11:58:45","user_description":"Rachael is a senior product engineer in the Developer Outreach team for the ArcGIS Maps SDKs for Native Apps. Following an academic career in geology, she switched careers by learning to code and now enjoys building apps with the Native Maps SDKs. She loves sharing code examples, fun geospatial development workflows and the latest product updates with developers via blogs and talks.","user_avatar":"<img data-del=\"avatar\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2024\/01\/LinkedIn_Photo-465x465.jpeg' class='avatar pp-user-avatar avatar-96 photo ' height='96' width='96'\/>"}],"short_description":"Find out how including web maps in your development workflows using the ArcGIS Maps SDKs for Native Apps can increase your productivity! ","flexible_content":[{"acf_fc_layout":"content","content":"<p>Every developer has their own favourite tools or methods to maximise their productivity. As a developer on the <a href=\"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/announcements\/welcome-to-arcgis-maps-sdks-for-native-apps-200-0\/\">ArcGIS Maps SDKs for Native Apps<\/a> (Native SDKs) team at Esri, I\u2019m no different! I love using web maps in native applications to help me be more effective and productive.<\/p>\n<p>In this blog, I\u2019ll share my top 5 developer productivity tips and tricks and demonstrate how partnering web maps with your applications built with the Native SDKs saves time and resources, whilst still allowing you to remain in control of your app. I hope you\u2019ll find this pairing as useful for your developer productivity as I have!<\/p>\n<ol>\n<li style=\"text-align: left;\"><a href=\"#hold_the_code\">Hold the code! Create a web map instead.<\/a><\/li>\n<li style=\"text-align: left;\"><a href=\"#no_time_to_create\">No time to create? Use an existing web map.<\/a><\/li>\n<li style=\"text-align: left;\"><a href=\"#lets_code\">Let&#8217;s code! Copy useful code snippets.<\/a><\/li>\n<li style=\"text-align: left;\"><a href=\"#loading_issues\">Loading issues? Turn errors to your advantage.<\/a><\/li>\n<li style=\"text-align: left;\"><a href=\"#own_your_app\">Own your app! Customise it with renderers.<\/a><\/li>\n<\/ol>\n<h2 id=\"hold_the_code\"><strong>#1: Hold the code! Create a web map instead.<\/strong><\/h2>\n<p>As developers, we love to problem solve and learn, and the temptation can be to do absolutely everything from scratch with code. But for rinse and repeat workflows, setting up boiler plate code to create a map from scratch for a native application can be a big time sink&#8230; and not the most satisfying of tasks when done repeatedly. Instead of losing time setting up a map from scratch in code, I start with the no code approach and build a <a href=\"https:\/\/developers.arcgis.com\/documentation\/glossary\/web-map\/\">web map<\/a> instead.<\/p>\n<p>Web maps are <a href=\"https:\/\/developers.arcgis.com\/web-map-specification\/\">JSON objects<\/a> containing configuration settings for a map, including map extent (see example below), basemap, layers and layer styles. They can be created via the Map Viewer (or Scene Viewer for 3D data) in ArcGIS Online, or in ArcGIS Pro, and displayed in apps built using the ArcGIS Maps SDKs. Apps will automatically load the web map\u2019s saved configuration settings.<\/p>\n<div>\n<pre style=\"background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em; margin: 0; font-size: 15px; line-height: 125%;\">{\r\n  <span style=\"color: #000080;\">\"xmin\"<\/span>: <span style=\"color: #009999;\">13871520.850500003<\/span>,\r\n  <span style=\"color: #000080;\">\"ymin\"<\/span>: <span style=\"color: #009999;\">3910293.086000003<\/span>,\r\n  <span style=\"color: #000080;\">\"xmax\"<\/span>: <span style=\"color: #009999;\">14574034.873400003<\/span>,\r\n  <span style=\"color: #000080;\">\"ymax\"<\/span>: <span style=\"color: #009999;\">4686306.161399998<\/span>,\r\n  <span style=\"color: #000080;\">\"spatialReference\"<\/span>: {\r\n    <span style=\"color: #000080;\">\"wkid\"<\/span>: <span style=\"color: #009999;\">102100<\/span>,\r\n    <span style=\"color: #000080;\">\"latestWkid\"<\/span>: <span style=\"color: #009999;\">3857<\/span>\r\n  }\r\n}\r\n<\/pre>\n<\/div>\n<p>The easiest way to get started with creating web maps is to sign up for a <a href=\"https:\/\/developers.arcgis.com\/sign-up\">free developer account<\/a> and start building web maps with the <a href=\"https:\/\/developers.arcgis.com\/documentation\/mapping-apis-and-services\/tools\/mapviewer\/\">Map Viewer<\/a>.\u00a0 You can also create web maps <a href=\"https:\/\/pro.arcgis.com\/en\/pro-app\/latest\/help\/sharing\/overview\/share-a-web-map.htm\">using ArcGIS Pro<\/a>.<\/p>\n"},{"acf_fc_layout":"blockquote","content":"<p>Instead of losing time setting up a map from scratch in code, I start with the no code approach and build a web map instead.<\/p>\n"},{"acf_fc_layout":"content","content":"<h2 id=\"no_time_to_create\"><strong>#2: No time to create? Use an existing web map.<\/strong><\/h2>\n<p>Creating web maps from scratch might not be up everyone\u2019s street. \u00a0If I haven\u2019t got the time to create a map from scratch, I will browse the <a href=\"https:\/\/livingatlas.arcgis.com\/en\/home\/\">ArcGIS Living Atlas of the World<\/a> for inspiration and web maps to consider including in my development work.<\/p>\n<p>I also browse <a href=\"https:\/\/www.arcgis.com\/apps\/mapviewer\/index.html\">ArcGIS Online<\/a> layers for publicly available web maps and associated data. These web maps are built by other users or organisations who have chosen to make the access public for everyone to view and depending on license\/limitations, include in their own maps.<\/p>\n<p>For example, I built the web map below and <a href=\"https:\/\/www.arcgis.com\/home\/item.html?id=4c14f47f88854f5388351d897db4e382\">hosted it on ArcGIS Online<\/a>, available for anyone to view or use in their own maps and apps. I customised this web map for desktop, displaying detailed labels (when zoomed in) and symbology based on mountain height attributes.<\/p>\n<p><em>This web map shows the locations of mountains within the two national parks of Scotland, which are at least 3000ft (approx. 914m) in height (known as Munros).<\/em><\/p>\n"},{"acf_fc_layout":"storymap","title":"","description":"","static":false,"storymap_url":"<a href=\"https:\/\/www.arcgis.com\/apps\/instant\/basic\/index.html?appid=b006c8962b4343bd8d9b4658f2ec63d5\">https:\/\/www.arcgis.com\/apps\/instant\/basic\/index.html?appid=b006c8962b4343bd8d9b4658f2ec63d5<\/a>"},{"acf_fc_layout":"content","content":"<h3>Something to keep in mind with this tip&#8230;<\/h3>\n<p>A potential pitfall of this approach is if you include a web map in your native app that wasn\u2019t built by yourself or your organisation, the web map may disappear one day.<\/p>\n<p>However, you can make a copy of that web map in your own account using a community-driven project from Esri Professional Services, <a href=\"https:\/\/guide.assistant.esri-ps.com\/\">ArcGIS Assistant<\/a> (in Beta phase). It\u2019s a \u201csandbox\u201d type environment and can be used to copy maps and apps, work with web map items JSON and more.<\/p>\n"},{"acf_fc_layout":"image","image":{"ID":1817092,"id":1817092,"title":"ArcGISAssistant","filename":"ArcGISAssistant-scaled-e1673978475846.png","filesize":706572,"url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/ArcGISAssistant-scaled-e1673978475846.png","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps\/arcgisassistant","alt":"ArcGIS Assistant Guide home page screenshot","author":"10242","description":"","caption":"ArcGIS Assistant tool","name":"arcgisassistant","status":"inherit","uploaded_to":1816982,"date":"2023-01-16 20:04:27","modified":"2023-01-16 20:05:14","menu_order":0,"mime_type":"image\/png","type":"image","subtype":"png","icon":"https:\/\/www.esri.com\/arcgis-blog\/wp-includes\/images\/media\/default.png","width":1110,"height":300,"sizes":{"thumbnail":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/ArcGISAssistant-scaled-e1673978475846-213x200.png","thumbnail-width":213,"thumbnail-height":200,"medium":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/ArcGISAssistant-scaled-e1673978475846-464x125.png","medium-width":464,"medium-height":125,"medium_large":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/ArcGISAssistant-scaled-e1673978475846-768x208.png","medium_large-width":768,"medium_large-height":208,"large":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/ArcGISAssistant-scaled-e1673955245230-1920x1052.png","large-width":1920,"large-height":1052,"1536x1536":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/ArcGISAssistant-scaled-e1673955245230-1536x842.png","1536x1536-width":1536,"1536x1536-height":842,"2048x2048":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/ArcGISAssistant-2048x1122.png","2048x2048-width":2048,"2048x2048-height":1122,"card_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/ArcGISAssistant-scaled-e1673978475846-826x223.png","card_image-width":826,"card_image-height":223,"wide_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/ArcGISAssistant-scaled-e1673955245230-1920x1052.png","wide_image-width":1920,"wide_image-height":1052}},"image_position":"center","orientation":"horizontal","hyperlink":"https:\/\/guide.assistant.esri-ps.com\/"},{"acf_fc_layout":"content","content":"<h2 id=\"lets_code\"><strong>#3: Let&#8217;s code! Copy useful code snippets.<\/strong><\/h2>\n<p>Back to comfort zone now: coding! One of my favourite productivity workflows when building an app with the Native SDKs is to check the <a href=\"https:\/\/developers.arcgis.com\/\">ArcGIS Developers<\/a> website for sample code, code snippets by topic, tutorials and API references.<\/p>\n<p>My specific trick here is browsing the tutorials to find starter app code specific to my project, or including that code within an existing project. The tutorials walk step by step through the code implementation, or there is a handy download solution if you want to jump straight into coding in your IDE.\u00a0 For example, for writing the iOS native application for this blog, I used the <a href=\"https:\/\/developers.arcgis.com\/ios\/maps-2d\/tutorials\/display-a-web-map\/\">Display a Web Map tutorial <\/a>\u00a0to get started.<\/p>\n<p>Using the new ArcGIS Maps SDK for Swift as an example, check out the <a href=\"https:\/\/developers.arcgis.com\/swift\/sample-code\/\">sample code<\/a> and star and\/or clone the <a href=\"https:\/\/github.com\/Esri\/arcgis-maps-sdk-swift-samples\">Swift samples GitHub repo<\/a> to keep up to date with the latest features. You can also <a href=\"https:\/\/apps.apple.com\/us\/app\/arcgis-runtime-sdk-samples\/id1180714771?mt=8\">download the iOS sample viewer<\/a> to get an instant insight into what&#8217;s possible when building with ArcGIS developer technologies.<\/p>\n<p><em>The Native SDKs (for Java, Qt, .NET, Kotlin and Swift) mostly share a common codebase, so any functionality you see sample code for in one SDK is likely to exist in another.<\/em><\/p>\n<p>&nbsp;<\/p>\n"},{"acf_fc_layout":"image","image":{"ID":1817172,"id":1817172,"title":"iOSSampleCode","filename":"iOSSampleCode-e1673966775328.png","filesize":1246074,"url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSSampleCode-e1673966775328.png","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps\/iossamplecode","alt":"Sample code for displaying a map, written in Swift","author":"10242","description":"","caption":"An example of sample code for displaying a map, from the new Swift Maps SDK","name":"iossamplecode","status":"inherit","uploaded_to":1816982,"date":"2023-01-17 11:26:38","modified":"2023-01-17 11:28:02","menu_order":0,"mime_type":"image\/png","type":"image","subtype":"png","icon":"https:\/\/www.esri.com\/arcgis-blog\/wp-includes\/images\/media\/default.png","width":1000,"height":737,"sizes":{"thumbnail":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSSampleCode-e1673966775328-213x200.png","thumbnail-width":213,"thumbnail-height":200,"medium":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSSampleCode-e1673966775328-354x261.png","medium-width":354,"medium-height":261,"medium_large":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSSampleCode-e1673966775328-768x566.png","medium_large-width":768,"medium_large-height":566,"large":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSSampleCode-e1673966775328.png","large-width":1000,"large-height":737,"1536x1536":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSSampleCode-1536x1132.png","1536x1536-width":1536,"1536x1536-height":1132,"2048x2048":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSSampleCode-2048x1510.png","2048x2048-width":2048,"2048x2048-height":1510,"card_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSSampleCode-e1673966775328-631x465.png","card_image-width":631,"card_image-height":465,"wide_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSSampleCode-1465x1080.png","wide_image-width":1465,"wide_image-height":1080}},"image_position":"center","orientation":"horizontal","hyperlink":"https:\/\/developers.arcgis.com\/swift\/sample-code\/display-map\/"},{"acf_fc_layout":"content","content":"<h2 id=\"loading_issues\"><strong>#4: Loading issues? Turn errors to your advantage.<\/strong><\/h2>\n<p>Resources from your web map, such as layers or basemaps, rely on remote services to initialize their state. In the Native SDKs, the <a href=\"https:\/\/developers.arcgis.com\/swift\/programming-patterns\/loading-resources-asynchronously\/\">loadable design pattern<\/a> loads metadata for these resources asynchronously, whilst also allowing a mechanism to properly handle and recover from network outages or service interruptions. If your web map doesn\u2019t load for whatever reason, your whole application could fail or not work as expected.<\/p>\n<p>As a developer you can remain in control if this situation occurs by using the loadable pattern in your app. For example, in the following code snippet for an iOS application, I\u2019ve set up an app with the <a href=\"https:\/\/developers.arcgis.com\/ios\/\">ArcGIS Runtime SDK for iOS<\/a>\u00a0that displays a web map.\u00a0 I\u2019ve added code (highlighted) that implements the loadable design pattern, where once the map has loaded, it will check for load errors.<\/p>\n"},{"acf_fc_layout":"storymap","title":"","description":"","static":false,"storymap_url":"<a href=\"https:\/\/gist.github.com\/Rachael-E\/6be538cd2cc545a3d25d10e78e894e46.pibb\">https:\/\/gist.github.com\/Rachael-E\/6be538cd2cc545a3d25d10e78e894e46.pibb<\/a>"},{"acf_fc_layout":"content","content":"<p>If there is an error, it will display an alert containing the description of the load error. The load error description contains information as to why there was a problem loading the layer to help you or your user troubleshoot.<\/p>\n"},{"acf_fc_layout":"image","image":{"ID":1817222,"id":1817222,"title":"iOSLoadingMessages","filename":"iOSLoadingMessages.png","filesize":593645,"url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSLoadingMessages.png","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps\/iosloadingmessages","alt":"iPhone 14 displaying load error messages when using web maps in native applications","author":"10242","description":"","caption":"Examples of common load errors you might encounter when including load error checking in your app","name":"iosloadingmessages","status":"inherit","uploaded_to":1816982,"date":"2023-01-17 13:59:02","modified":"2023-01-19 14:52:49","menu_order":0,"mime_type":"image\/png","type":"image","subtype":"png","icon":"https:\/\/www.esri.com\/arcgis-blog\/wp-includes\/images\/media\/default.png","width":1384,"height":1375,"sizes":{"thumbnail":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSLoadingMessages-213x200.png","thumbnail-width":213,"thumbnail-height":200,"medium":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSLoadingMessages-e1673966560651-263x261.png","medium-width":263,"medium-height":261,"medium_large":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSLoadingMessages.png","medium_large-width":768,"medium_large-height":763,"large":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSLoadingMessages.png","large-width":1087,"large-height":1080,"1536x1536":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSLoadingMessages.png","1536x1536-width":1384,"1536x1536-height":1375,"2048x2048":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSLoadingMessages.png","2048x2048-width":1384,"2048x2048-height":1375,"card_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSLoadingMessages-468x465.png","card_image-width":468,"card_image-height":465,"wide_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iOSLoadingMessages-1087x1080.png","wide_image-width":1087,"wide_image-height":1080}},"image_position":"center","orientation":"horizontal","hyperlink":"https:\/\/developers.arcgis.com\/ios\/programming-patterns\/loading-resources-asynchronously\/"},{"acf_fc_layout":"content","content":"<h2 id=\"own_your_app\"><strong>#5: Own your app! Customise it with renderers.<\/strong><\/h2>\n<p>My final trick continues the theme of keeping in control of your app when developing native applications using web maps.<\/p>\n<p>The symbology used in the web map might originally display ok on a mobile screen. But what happens if the symbology is tweaked later down the line, without you knowing about it, and suddenly the symbols look too cluttered, or it just looks plain wrong on your mobile application?<\/p>\n<p>You can guard against this by overriding the web map\u2019s renderer before the layer has loaded: the overridden value will take precedence over the value specified in the layer\u2019s metadata.<\/p>\n"},{"acf_fc_layout":"storymap","title":"","description":"","static":false,"storymap_url":"<a href=\"https:\/\/gist.github.com\/Rachael-E\/ef500ad5b3d455d3780ba3ce2b24a92a.pibb\">https:\/\/gist.github.com\/Rachael-E\/ef500ad5b3d455d3780ba3ce2b24a92a.pibb<\/a>"},{"acf_fc_layout":"content","content":"<p>Taking the web map of the Scottish Munros I shared earlier, when it displays on an iPhone application, the symbology didn\u2019t look right for mobile, with the labels displayed being too cluttered for a small screen. Using the code above, I set a custom renderer that overrides the web map\u2019s metadata symbology.<\/p>\n<p>It uses a custom .png, removes the polygon fill of the national parks layer, and also disables labels to make it more appropriate visually for mobile. As the developer for this application, I can remain in control of the look and feel of the app whilst maintaining the data from the web map.<\/p>\n"},{"acf_fc_layout":"image","image":{"ID":1817362,"id":1817362,"title":"iPhoneRenderer","filename":"iPhoneRenderer.png","filesize":2341680,"url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iPhoneRenderer.png","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps\/iphonerenderer","alt":"Labels displayed on map on iPhone when developing native applications using web maps","author":"10242","description":"","caption":"On the left iPhone, the web map displayed in app before applying custom renderer. \nOn the right, the custom renderer is applied with new symbology and removal of labels for a cleaner mobile UI.\nMountain icon from https:\/\/www.flaticon.com\/.","name":"iphonerenderer","status":"inherit","uploaded_to":1816982,"date":"2023-01-17 15:27:15","modified":"2023-01-20 15:09:13","menu_order":0,"mime_type":"image\/png","type":"image","subtype":"png","icon":"https:\/\/www.esri.com\/arcgis-blog\/wp-includes\/images\/media\/default.png","width":1604,"height":1595,"sizes":{"thumbnail":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iPhoneRenderer-213x200.png","thumbnail-width":213,"thumbnail-height":200,"medium":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iPhoneRenderer.png","medium-width":262,"medium-height":261,"medium_large":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iPhoneRenderer.png","medium_large-width":768,"medium_large-height":764,"large":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iPhoneRenderer.png","large-width":1086,"large-height":1080,"1536x1536":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iPhoneRenderer-1536x1527.png","1536x1536-width":1536,"1536x1536-height":1527,"2048x2048":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iPhoneRenderer.png","2048x2048-width":1604,"2048x2048-height":1595,"card_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iPhoneRenderer-468x465.png","card_image-width":468,"card_image-height":465,"wide_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/iPhoneRenderer-1086x1080.png","wide_image-width":1086,"wide_image-height":1080}},"image_position":"center","orientation":"horizontal","hyperlink":"https:\/\/developers.arcgis.com\/ios\/styles-and-data-visualization\/symbols-renderers-and-styles\/"},{"acf_fc_layout":"content","content":"<h2>Summary<\/h2>\n<p>And so concludes my top productivity tips and tricks for developing native applications using web maps! They are a perfect combination to help you accelerate delivery whilst keeping control of your application. Using a web map in your apps allows you to save development time by using them to easily configure data, layers and styles. But importantly, as developers, we remain in control of what appears in our application by intercepting and customising the behaviour of the web map before it is rendered, and handle any load errors.<\/p>\n<p>As a reminder, whilst I use the ArcGIS Runtime SDK for iOS for this blog, you can use any of the ArcGIS Maps SDKs for Native Apps for displaying a web map in your application using the same workflows detailed above. We have just released a beta for the <a href=\"https:\/\/developers.arcgis.com\/swift\/\">ArcGIS Maps SDK for Swift<\/a>\u00a0if you want to get a head start on developing modern SwiftUI based applications.<\/p>\n<h2><em>Bonus content!<\/em><\/h2>\n<p><em>I was inspired to write this blog following the preparation work I did for a technical demonstration at the Esri UK Scottish Conference. Check out the recording of the demo below if you&#8217;d like to follow the workflows I&#8217;ve outlined above in more detail! Also if you&#8217;d like to see the source code used for this blog, check out my <a href=\"https:\/\/github.com\/Rachael-E\/DevelopingWithWebMaps\">GitHub repo.<\/a>\u00a0<\/em><\/p>\n"},{"acf_fc_layout":"youtube","start_time":"0","end_time":"","youtube_video_url":"<iframe title=\"App development options for mobile and desktop platforms - Esri - SC22\" width=\"640\" height=\"360\" src=\"https:\/\/www.youtube.com\/embed\/xS6iqMLABWM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>"}],"related_articles":[{"ID":1480432,"post_author":"10242","post_date":"2022-02-11 09:37:16","post_date_gmt":"2022-02-11 17:37:16","post_content":"","post_title":"ArcGIS Runtime: Create hillshade effects with geospatial code","post_excerpt":"","post_status":"publish","comment_status":"open","ping_status":"closed","post_password":"","post_name":"arcgis-runtime-create-hillshade-effects-with-geospatial-code","to_ping":"","pinged":"","post_modified":"2024-04-12 03:49:28","post_modified_gmt":"2024-04-12 10:49:28","post_content_filtered":"","post_parent":0,"guid":"https:\/\/www.esri.com\/arcgis-blog\/?post_type=blog&#038;p=1480432","menu_order":0,"post_type":"blog","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":1579162,"post_author":"308752","post_date":"2022-05-27 05:00:42","post_date_gmt":"2022-05-27 12:00:42","post_content":"","post_title":"5 tips and tricks to streamline your offline maps","post_excerpt":"","post_status":"publish","comment_status":"closed","ping_status":"closed","post_password":"","post_name":"5-tips-and-tricks-to-streamline-your-offline-maps","to_ping":"","pinged":"","post_modified":"2022-06-21 08:36:38","post_modified_gmt":"2022-06-21 15:36:38","post_content_filtered":"","post_parent":0,"guid":"https:\/\/www.esri.com\/arcgis-blog\/?post_type=blog&#038;p=1579162","menu_order":0,"post_type":"blog","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":1791082,"post_author":"4091","post_date":"2022-12-14 10:46:14","post_date_gmt":"2022-12-14 18:46:14","post_content":"","post_title":"Welcome to ArcGIS Maps SDKs for Native Apps 200.0","post_excerpt":"","post_status":"publish","comment_status":"open","ping_status":"closed","post_password":"","post_name":"welcome-to-arcgis-maps-sdks-for-native-apps-200-0","to_ping":"","pinged":"","post_modified":"2024-04-12 03:19:48","post_modified_gmt":"2024-04-12 10:19:48","post_content_filtered":"","post_parent":0,"guid":"https:\/\/www.esri.com\/arcgis-blog\/?post_type=blog&#038;p=1791082","menu_order":0,"post_type":"blog","post_mime_type":"","comment_count":"0","filter":"raw"}],"card_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/card_webmap_final.png","wide_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/banner_webmap.png"},"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>Five tips for developing native applications using web maps<\/title>\n<meta name=\"description\" content=\"Learn how developing native applications using web maps can increase your productivity when building apps with the ArcGIS Maps SDKs!\" \/>\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\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Five tips for developing native applications using web maps\" \/>\n<meta property=\"og:description\" content=\"Learn how developing native applications using web maps can increase your productivity when building apps with the ArcGIS Maps SDKs!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps\" \/>\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=\"2024-04-12T10:15:24+00:00\" \/>\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=\"8 minutes\" \/>\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\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps\"},\"author\":{\"name\":\"Rachael Ellen\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/d12aeaaab25c748cdf66a320bf0e72cd\"},\"headline\":\"Five tips for developing native applications using web maps\",\"datePublished\":\"2023-01-24T14:30:29+00:00\",\"dateModified\":\"2024-04-12T10:15:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps\"},\"wordCount\":9,\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"keywords\":[\"ArcGIS Developer Community\",\"ArcGIS Maps SDKs for Native Apps\",\"iOS\",\"Web Mapping Application\",\"web maps\"],\"articleSection\":[\"Developers\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps\",\"name\":\"Five tips for developing native applications using web maps\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\"},\"datePublished\":\"2023-01-24T14:30:29+00:00\",\"dateModified\":\"2024-04-12T10:15:24+00:00\",\"description\":\"Learn how developing native applications using web maps can increase your productivity when building apps with the ArcGIS Maps SDKs!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.esri.com\/arcgis-blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Five tips for developing native applications using web maps\"}]},{\"@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\/d12aeaaab25c748cdf66a320bf0e72cd\",\"name\":\"Rachael Ellen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2024\/01\/LinkedIn_Photo-465x465.jpeg\",\"contentUrl\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2024\/01\/LinkedIn_Photo-465x465.jpeg\",\"caption\":\"Rachael Ellen\"},\"description\":\"Rachael is a senior product engineer in the Developer Outreach team for the ArcGIS Maps SDKs for Native Apps. Following an academic career in geology, she switched careers by learning to code and now enjoys building apps with the Native Maps SDKs. She loves sharing code examples, fun geospatial development workflows and the latest product updates with developers via blogs and talks.\",\"sameAs\":[\"https:\/\/dev.to\/rachaele\/\",\"https:\/\/www.linkedin.com\/in\/rachael-ellen-8a852729\/\",\"https:\/\/x.com\/Geolocoder\"],\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/author\/rellen\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Five tips for developing native applications using web maps","description":"Learn how developing native applications using web maps can increase your productivity when building apps with the ArcGIS Maps SDKs!","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\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps","og_locale":"en_US","og_type":"article","og_title":"Five tips for developing native applications using web maps","og_description":"Learn how developing native applications using web maps can increase your productivity when building apps with the ArcGIS Maps SDKs!","og_url":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps","og_site_name":"ArcGIS Blog","article_publisher":"https:\/\/www.facebook.com\/esrigis\/","article_modified_time":"2024-04-12T10:15:24+00:00","twitter_card":"summary_large_image","twitter_site":"@ESRI","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps#article","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps"},"author":{"name":"Rachael Ellen","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/d12aeaaab25c748cdf66a320bf0e72cd"},"headline":"Five tips for developing native applications using web maps","datePublished":"2023-01-24T14:30:29+00:00","dateModified":"2024-04-12T10:15:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps"},"wordCount":9,"publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"keywords":["ArcGIS Developer Community","ArcGIS Maps SDKs for Native Apps","iOS","Web Mapping Application","web maps"],"articleSection":["Developers"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps","url":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps","name":"Five tips for developing native applications using web maps","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#website"},"datePublished":"2023-01-24T14:30:29+00:00","dateModified":"2024-04-12T10:15:24+00:00","description":"Learn how developing native applications using web maps can increase your productivity when building apps with the ArcGIS Maps SDKs!","breadcrumb":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/maps-sdk\/developers\/five-tips-for-developing-your-native-applications-using-web-maps#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.esri.com\/arcgis-blog\/"},{"@type":"ListItem","position":2,"name":"Five tips for developing native applications using web maps"}]},{"@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\/d12aeaaab25c748cdf66a320bf0e72cd","name":"Rachael Ellen","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/","url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2024\/01\/LinkedIn_Photo-465x465.jpeg","contentUrl":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2024\/01\/LinkedIn_Photo-465x465.jpeg","caption":"Rachael Ellen"},"description":"Rachael is a senior product engineer in the Developer Outreach team for the ArcGIS Maps SDKs for Native Apps. Following an academic career in geology, she switched careers by learning to code and now enjoys building apps with the Native Maps SDKs. She loves sharing code examples, fun geospatial development workflows and the latest product updates with developers via blogs and talks.","sameAs":["https:\/\/dev.to\/rachaele\/","https:\/\/www.linkedin.com\/in\/rachael-ellen-8a852729\/","https:\/\/x.com\/Geolocoder"],"url":"https:\/\/www.esri.com\/arcgis-blog\/author\/rellen"}]}},"text_date":"January 24, 2023","author_name":"Rachael Ellen","author_page":"https:\/\/www.esri.com\/arcgis-blog\/author\/rellen","custom_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2023\/01\/banner_webmap.png","primary_product":"ArcGIS Maps SDKs","tag_data":[{"term_id":39801,"name":"ArcGIS Developer Community","slug":"arcgis-developer-community","term_group":0,"term_taxonomy_id":39801,"taxonomy":"post_tag","description":"","parent":0,"count":21,"filter":"raw"},{"term_id":768202,"name":"ArcGIS Maps SDKs for Native Apps","slug":"arcgis-maps-sdks-for-native-apps","term_group":0,"term_taxonomy_id":768202,"taxonomy":"post_tag","description":"","parent":0,"count":30,"filter":"raw"},{"term_id":24531,"name":"iOS","slug":"ios","term_group":0,"term_taxonomy_id":24531,"taxonomy":"post_tag","description":"","parent":0,"count":82,"filter":"raw"},{"term_id":31141,"name":"Web Mapping Application","slug":"web-mapping-application","term_group":0,"term_taxonomy_id":31141,"taxonomy":"post_tag","description":"","parent":0,"count":4,"filter":"raw"},{"term_id":23631,"name":"web maps","slug":"web-maps","term_group":0,"term_taxonomy_id":23631,"taxonomy":"post_tag","description":"","parent":0,"count":13,"filter":"raw"}],"category_data":[{"term_id":738191,"name":"Developers","slug":"developers","term_group":0,"term_taxonomy_id":738191,"taxonomy":"category","description":"","parent":0,"count":422,"filter":"raw"}],"product_data":[{"term_id":761642,"name":"ArcGIS Location Platform","slug":"platform","term_group":0,"term_taxonomy_id":761642,"taxonomy":"product","description":"","parent":36601,"count":214,"filter":"raw"},{"term_id":765412,"name":"ArcGIS Maps SDKs","slug":"maps-sdk","term_group":0,"term_taxonomy_id":765412,"taxonomy":"product","description":"","parent":756692,"count":14,"filter":"raw"},{"term_id":36551,"name":"ArcGIS Online","slug":"arcgis-online","term_group":0,"term_taxonomy_id":36551,"taxonomy":"product","description":"","parent":0,"count":2426,"filter":"raw"},{"term_id":36561,"name":"ArcGIS Pro","slug":"arcgis-pro","term_group":0,"term_taxonomy_id":36561,"taxonomy":"product","description":"","parent":0,"count":2036,"filter":"raw"},{"term_id":36891,"name":"ArcGIS Runtime SDK for iOS","slug":"api-ios","term_group":0,"term_taxonomy_id":36891,"taxonomy":"product","description":"","parent":36601,"count":55,"filter":"raw"}],"primary_product_link":"https:\/\/www.esri.com\/arcgis-blog\/?s=#&products=maps-sdk","_links":{"self":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/1816982","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\/10242"}],"replies":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/comments?post=1816982"}],"version-history":[{"count":0,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/1816982\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/media?parent=1816982"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/categories?post=1816982"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/tags?post=1816982"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/industry?post=1816982"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/product?post=1816982"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}