<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Possible to show more than one feature layer? in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/possible-to-show-more-than-on-feature-layer/m-p/42157#M383</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Nimesh,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the reply. I did have a simple mistake there, yes. I tried again tonight, and am still only getting one feature layer to show. I even tried adding a second feature layer to the RelatedRecordEditingSample and can still only get the first feature layer to show. Can you see anything that is wrong with this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;#import "RelatedRecordEditingSampleViewController.h"

#import &amp;lt;ArcGIS/ArcGIS.h&amp;gt;
#import "NotesViewController.h"
#import "LoadingView.h"

//this is the url for the basemap. 
#define kBaseMapServiceURL @"http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"

//url for the incidents layer
#define kIncidentsLayerURL @"http://egisws02.nos.noaa.gov/ArcGIS/rest/services/MPA/MPA_Inventory_Fishing/MapServer/1"



#pragma mark - Class Extension

@interface RelatedRecordEditingSampleViewController() 

@property (nonatomic, retain) IBOutlet AGSMapView *mapView;
@property (nonatomic, retain) AGSFeatureLayer *incidentsLayer;
@property (nonatomic, retain) AGSFeatureLayer *restrictedLayer;
@property (nonatomic, retain) AGSPopupsContainerViewController* popupVC;
@property (nonatomic, retain) UIBarButtonItem* customActionButton;
@property (nonatomic, retain) LoadingView* loadingView;

@end

#pragma mark - Implementation

@implementation RelatedRecordEditingSampleViewController


@synthesize mapView = _mapView;
@synthesize incidentsLayer = _incidentsLayer;
@synthesize popupVC = _popupVC;
@synthesize loadingView = _loadingView;
@synthesize customActionButton = _customActionButton;
@synthesize restrictedLayer = _restrictedLayer;


#pragma mark -&amp;nbsp; UIView methods

- (void)viewDidLoad {
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //creating a tiled service with the base map url
&amp;nbsp;&amp;nbsp;&amp;nbsp; NSURL *mapUrl = [NSURL URLWithString:kBaseMapServiceURL];
 AGSTiledMapServiceLayer *tiledLyr = [AGSTiledMapServiceLayer tiledMapServiceLayerWithURL:mapUrl];
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //add the tiled layer to the map view
 [self.mapView addMapLayer:tiledLyr withName:@"Tiled Layer"];
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //Zooming to an initial envelope with the specified spatial reference of the map.
&amp;nbsp;&amp;nbsp;&amp;nbsp; //this is the San Francisco extent. 
 AGSSpatialReference *sr = [AGSSpatialReference spatialReferenceWithWKID:102100];
 AGSEnvelope *env = [AGSEnvelope envelopeWithXmin:-13639984
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ymin:4537387
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmax:-13606734
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ymax:4558866 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spatialReference:sr];
 [self.mapView zoomToEnvelope:env animated:YES];
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //Set up the map view
 self.mapView.calloutDelegate = self;
 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //setup the incidents layer as a feature layer and add it to the map
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.incidentsLayer = [AGSFeatureLayer featureServiceLayerWithURL:[NSURL URLWithString:kIncidentsLayerURL] mode:AGSFeatureLayerModeOnDemand]; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.incidentsLayer.outFields = [NSArray arrayWithObject:@"*"];
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.incidentsLayer.infoTemplateDelegate = self.incidentsLayer;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.restrictedLayer = [AGSFeatureLayer featureServiceLayerWithURL:[NSURL URLWithString:@"http://egisws02.nos.noaa.gov/ArcGIS/rest/services/MP/MPA_Inventory_Fishing/MapServer/7"] mode:AGSFeatureLayerModeOnDemand];
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.restrictedLayer.outFields = [NSArray arrayWithObject:@"*"];
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.restrictedLayer.infoTemplateDelegate = self.restrictedLayer;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; [self.mapView addMapLayer:self.incidentsLayer withName:@"Incidents"];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [self.mapView addMapLayer:self.restrictedLayer withName:@"Restrictions"];
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //setting the custom action button which will be later used to display related notes of an incident
//&amp;nbsp;&amp;nbsp;&amp;nbsp; self.customActionButton&amp;nbsp; = [[[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"pencil.png"] style:UIBarButtonItemStyleBordered target:self action:@selector(displayIncidentNotes)] autorelease];
 
&amp;nbsp;&amp;nbsp;&amp;nbsp; [super viewDidLoad];
}&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Dec 2021 21:37:28 GMT</pubDate>
    <dc:creator>BrendanMcKenney</dc:creator>
    <dc:date>2021-12-10T21:37:28Z</dc:date>
    <item>
      <title>Possible to show more than on feature layer?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/possible-to-show-more-than-on-feature-layer/m-p/42155#M381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Typo in the Post Title. Sorry. Meant to say more than ONE feature layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to add more than one feature layer to the mapView at a time. Is this possible? There are a total of 9 feature layers that could be shown at once if possible. Here is what I have tried already. It seems only the first layer is shown, and not subsequent layers. Any suggestions would be appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.incidentsLayer = [AGSFeatureLayer featureServiceLayerWithURL:[NSURL URLWithString:@"http://egisws02.nos.noaa.gov/ArcGIS/rest/services/MP/MPA_Inventory_Fishing/MapServer/1"] mode:AGSFeatureLayerModeOnDemand]; &amp;nbsp;&amp;nbsp;&amp;nbsp; self.incidentsLayer.outFields = [NSArray arrayWithObject:@"*"]; &amp;nbsp;&amp;nbsp;&amp;nbsp; self.incidentsLayer.infoTemplateDelegate = self.incidentsLayer; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; self.restrictedLayer = [AGSFeatureLayer featureServiceLayerWithURL:[NSURL URLWithString:@"http://egisws02.nos.noaa.gov/ArcGIS/rest/services/MP/MPA_Inventory_Fishing/MapServer/2"] mode:AGSFeatureLayerModeOnDemand]; &amp;nbsp;&amp;nbsp;&amp;nbsp; self.restrictedLayer.outFields = [NSArray arrayWithObject:@"*"]; &amp;nbsp;&amp;nbsp;&amp;nbsp; self.restrictedLayer.infoTemplateDelegate = self.restrictedLayer; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; [self.mapView addMapLayer:self.incidentsLayer withName:@"Incidents"];&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; [self.mapView addMapLayer:self.incidentsLayer withName:@"Restricted"];&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 20:17:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/possible-to-show-more-than-on-feature-layer/m-p/42155#M381</guid>
      <dc:creator>BrendanMcKenney</dc:creator>
      <dc:date>2012-09-27T20:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to show more than on feature layer?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/possible-to-show-more-than-on-feature-layer/m-p/42156#M382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, it is possible to add multiple feature layers to map. You are seeing only one layer because you are adding one layer twice. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; Just change it as following...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[self.mapView addMapLayer:self.incidentsLayer withName:@"Incidents"];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[self.mapView addMapLayer:&lt;/SPAN&gt;&lt;STRONG&gt;self.restrictedLayer&lt;/STRONG&gt;&lt;SPAN&gt; withName:@"Restricted"];&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 20:30:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/possible-to-show-more-than-on-feature-layer/m-p/42156#M382</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-09-27T20:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to show more than one feature layer?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/possible-to-show-more-than-on-feature-layer/m-p/42157#M383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Nimesh,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the reply. I did have a simple mistake there, yes. I tried again tonight, and am still only getting one feature layer to show. I even tried adding a second feature layer to the RelatedRecordEditingSample and can still only get the first feature layer to show. Can you see anything that is wrong with this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;#import "RelatedRecordEditingSampleViewController.h"

#import &amp;lt;ArcGIS/ArcGIS.h&amp;gt;
#import "NotesViewController.h"
#import "LoadingView.h"

//this is the url for the basemap. 
#define kBaseMapServiceURL @"http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"

//url for the incidents layer
#define kIncidentsLayerURL @"http://egisws02.nos.noaa.gov/ArcGIS/rest/services/MPA/MPA_Inventory_Fishing/MapServer/1"



#pragma mark - Class Extension

@interface RelatedRecordEditingSampleViewController() 

@property (nonatomic, retain) IBOutlet AGSMapView *mapView;
@property (nonatomic, retain) AGSFeatureLayer *incidentsLayer;
@property (nonatomic, retain) AGSFeatureLayer *restrictedLayer;
@property (nonatomic, retain) AGSPopupsContainerViewController* popupVC;
@property (nonatomic, retain) UIBarButtonItem* customActionButton;
@property (nonatomic, retain) LoadingView* loadingView;

@end

#pragma mark - Implementation

@implementation RelatedRecordEditingSampleViewController


@synthesize mapView = _mapView;
@synthesize incidentsLayer = _incidentsLayer;
@synthesize popupVC = _popupVC;
@synthesize loadingView = _loadingView;
@synthesize customActionButton = _customActionButton;
@synthesize restrictedLayer = _restrictedLayer;


#pragma mark -&amp;nbsp; UIView methods

- (void)viewDidLoad {
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //creating a tiled service with the base map url
&amp;nbsp;&amp;nbsp;&amp;nbsp; NSURL *mapUrl = [NSURL URLWithString:kBaseMapServiceURL];
 AGSTiledMapServiceLayer *tiledLyr = [AGSTiledMapServiceLayer tiledMapServiceLayerWithURL:mapUrl];
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //add the tiled layer to the map view
 [self.mapView addMapLayer:tiledLyr withName:@"Tiled Layer"];
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //Zooming to an initial envelope with the specified spatial reference of the map.
&amp;nbsp;&amp;nbsp;&amp;nbsp; //this is the San Francisco extent. 
 AGSSpatialReference *sr = [AGSSpatialReference spatialReferenceWithWKID:102100];
 AGSEnvelope *env = [AGSEnvelope envelopeWithXmin:-13639984
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ymin:4537387
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmax:-13606734
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ymax:4558866 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spatialReference:sr];
 [self.mapView zoomToEnvelope:env animated:YES];
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //Set up the map view
 self.mapView.calloutDelegate = self;
 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //setup the incidents layer as a feature layer and add it to the map
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.incidentsLayer = [AGSFeatureLayer featureServiceLayerWithURL:[NSURL URLWithString:kIncidentsLayerURL] mode:AGSFeatureLayerModeOnDemand]; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.incidentsLayer.outFields = [NSArray arrayWithObject:@"*"];
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.incidentsLayer.infoTemplateDelegate = self.incidentsLayer;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.restrictedLayer = [AGSFeatureLayer featureServiceLayerWithURL:[NSURL URLWithString:@"http://egisws02.nos.noaa.gov/ArcGIS/rest/services/MP/MPA_Inventory_Fishing/MapServer/7"] mode:AGSFeatureLayerModeOnDemand];
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.restrictedLayer.outFields = [NSArray arrayWithObject:@"*"];
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.restrictedLayer.infoTemplateDelegate = self.restrictedLayer;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; [self.mapView addMapLayer:self.incidentsLayer withName:@"Incidents"];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [self.mapView addMapLayer:self.restrictedLayer withName:@"Restrictions"];
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; //setting the custom action button which will be later used to display related notes of an incident
//&amp;nbsp;&amp;nbsp;&amp;nbsp; self.customActionButton&amp;nbsp; = [[[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"pencil.png"] style:UIBarButtonItemStyleBordered target:self action:@selector(displayIncidentNotes)] autorelease];
 
&amp;nbsp;&amp;nbsp;&amp;nbsp; [super viewDidLoad];
}&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:37:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/possible-to-show-more-than-on-feature-layer/m-p/42157#M383</guid>
      <dc:creator>BrendanMcKenney</dc:creator>
      <dc:date>2021-12-10T21:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to show more than on feature layer?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/possible-to-show-more-than-on-feature-layer/m-p/42158#M384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, your URL is incorrect. You should implement the AGSMapViewLayerDelegate's method to know why your layer fails to load.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Change,&lt;/SPAN&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://egisws02.nos.noaa.gov/ArcGIS/rest/services/" rel="nofollow" target="_blank"&gt;http://egisws02.nos.noaa.gov/ArcGIS/rest/services/&lt;/A&gt;&lt;STRONG&gt;MP&lt;/STRONG&gt;&lt;SPAN&gt;/MPA_Inventory_Fishing/MapServer/7&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;To,&lt;/SPAN&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://egisws02.nos.noaa.gov/ArcGIS/rest/services/" rel="nofollow" target="_blank"&gt;http://egisws02.nos.noaa.gov/ArcGIS/rest/services/&lt;/A&gt;&lt;STRONG&gt;MPA&lt;/STRONG&gt;&lt;SPAN&gt;/MPA_Inventory_Fishing/MapServer/7&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2012 15:47:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/possible-to-show-more-than-on-feature-layer/m-p/42158#M384</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-09-28T15:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to show more than one feature layer?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/possible-to-show-more-than-on-feature-layer/m-p/42159#M385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Nimesh,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Once again, a typo bites me in the butt. Thanks for pointing that out. I'll read up on AGSMapViewLayerDelegate method this weekend. Thanks again.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Brendan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2012 22:33:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/possible-to-show-more-than-on-feature-layer/m-p/42159#M385</guid>
      <dc:creator>BrendanMcKenney</dc:creator>
      <dc:date>2012-09-28T22:33:03Z</dc:date>
    </item>
  </channel>
</rss>

