<?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: I can't show a web map using AGSWebMap in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101306#M1003</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Okie..i know what's happening. You must retain webmap so the instance remain around until web map finish loading and then you can open into mapView. Here is the code you should try..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ViewController.h&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;#import &amp;lt;UIKit/UIKit.h&amp;gt;
#import "ArcGis.h"

@interface &amp;lt;Classname&amp;gt; : UIViewController &amp;lt;AGSWebMapDelegate&amp;gt;

@interface ViewController : UIViewController 
@property (retain, nonatomic) IBOutlet AGSMapView *mapView;
@property (retain, nonatomic) AGSWebmap *webmap;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
@end
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ViewController.m&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;- (void)viewDidLoad {
&amp;nbsp;&amp;nbsp;&amp;nbsp; AGSCredential* credential = [[[AGSCredential alloc] initWithUser:@"&amp;lt;my_user_name&amp;gt;" password:@"&amp;lt;My_passdword&amp;gt;"] autorelease];
&amp;nbsp;&amp;nbsp;&amp;nbsp; credential.authType = AGSAuthenticationTypeToken;
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.webmap = [[AGSWebMap alloc] initWithItemId:@"e20f2f98b35c4963a5e124bf43c1d74a" credential:credential];
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.webmap.delegate = self
}

#pragma mark AGSWebMapDelegate

- (void)webMapDidLoad:(AGSWebMap *)webMap {
 
 NSLog(@"delegate webMapDidLoad");
 
 //open webmap in mapview
 [self.webMap openIntoMapView:self.mapView];
}

-(void)didOpenWebMap:(AGSWebMap*)webMap intoMapView:(AGSMapView*)mapView {
 NSLog(@"delegate didOpenWebMap");
}&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Even though, the web map is public you must use the complete method..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;self.webmap = [[AGSWebMap alloc] initWithItemId:@"itemid" credential:nil];&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>Sat, 11 Dec 2021 06:15:41 GMT</pubDate>
    <dc:creator>NimeshJarecha</dc:creator>
    <dc:date>2021-12-11T06:15:41Z</dc:date>
    <item>
      <title>I can't show a web map using AGSWebMap</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101303#M1000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am trying to show a online map using AGSWebMap but I don't know exactly how doing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is my code: ViewController.h&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;#import &amp;lt;UIKit/UIKit.h&amp;gt;
#import "ArcGis.h"

@interface ViewController : UIViewController 
@property (retain, nonatomic) IBOutlet AGSMapView *mapView;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
@end&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ViewController.m&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
#import "ViewController.h"

@implementation ViewController
@synthesize mapView;
.....

- (void) openIntoMapView: (AGSMapView*) mapView {
&amp;nbsp;&amp;nbsp;&amp;nbsp; AGSCredential* credential = [[[AGSCredential alloc] initWithUser:@"&amp;lt;my_user_name&amp;gt;" password:@"&amp;lt;My_passdword&amp;gt;"] autorelease];
&amp;nbsp;&amp;nbsp;&amp;nbsp; credential.authType = AGSAuthenticationTypeToken;
&amp;nbsp;&amp;nbsp;&amp;nbsp; AGSWebMap* webmap = [[AGSWebMap alloc] initWithItemId:@"e20f2f98b35c4963a5e124bf43c1d74a" credential:credential];
}

&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I received a message from Xcode "&lt;/SPAN&gt;&lt;STRONG&gt;Unusued variable webmap&lt;/STRONG&gt;&lt;SPAN&gt;" and the simulator show a white screen. Could anyone help me to solve this error? Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2011 14:58:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101303#M1000</guid>
      <dc:creator>JoseMorales</dc:creator>
      <dc:date>2011-12-19T14:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: I can't show a web map using AGSWebMap</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101304#M1001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Just add a code line...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AGSCredential* credential = [[[AGSCredential alloc] initWithUser:@"&amp;lt;my_user_name&amp;gt;" password:@"&amp;lt;My_passdword&amp;gt;"] autorelease];
&amp;nbsp;&amp;nbsp;&amp;nbsp; credential.authType = AGSAuthenticationTypeToken;
&amp;nbsp;&amp;nbsp;&amp;nbsp; AGSWebMap* webmap = [[AGSWebMap alloc] initWithItemId:@"e20f2f98b35c4963a5e124bf43c1d74a" credential:credential];
[webmap openIntoMapView:self.mapView]; //added&lt;/PRE&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>Sat, 11 Dec 2021 06:15:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101304#M1001</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2021-12-11T06:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: I can't show a web map using AGSWebMap</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101305#M1002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Just add a code line...&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AGSCredential* credential = [[[AGSCredential alloc] initWithUser:@"&amp;lt;my_user_name&amp;gt;" password:@"&amp;lt;My_passdword&amp;gt;"] autorelease];
&amp;nbsp;&amp;nbsp;&amp;nbsp; credential.authType = AGSAuthenticationTypeToken;
&amp;nbsp;&amp;nbsp;&amp;nbsp; AGSWebMap* webmap = [[AGSWebMap alloc] initWithItemId:@"e20f2f98b35c4963a5e124bf43c1d74a" credential:credential];
[webmap openIntoMapView:self.mapView]; //added&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Nimesh&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Nimesh&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am having the same problem and getting a white screen, even though I have added the above bit you suggested. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is my code&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- (void) openIntoMapView: (AGSMapView*) mapView {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AGSWebMap* webmap = [[AGSWebMap alloc] initWithItemId:@"3e7c311a0f2c49a1a5821411a22e3ac2" ];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[webmap openIntoMapView:self.mapView]; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Its a public webmap so doesn't need any credentials. In my case it throws a warning as 'Method -initWithItemId not found' . I have included #import "ArcGIS.h" file properly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help will be appreciated. Also it would be nice to have a sample created to display ArcGIS.com WebMap using iOS.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:15:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101305#M1002</guid>
      <dc:creator>SobodhDangwal</dc:creator>
      <dc:date>2021-12-11T06:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: I can't show a web map using AGSWebMap</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101306#M1003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Okie..i know what's happening. You must retain webmap so the instance remain around until web map finish loading and then you can open into mapView. Here is the code you should try..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ViewController.h&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;#import &amp;lt;UIKit/UIKit.h&amp;gt;
#import "ArcGis.h"

@interface &amp;lt;Classname&amp;gt; : UIViewController &amp;lt;AGSWebMapDelegate&amp;gt;

@interface ViewController : UIViewController 
@property (retain, nonatomic) IBOutlet AGSMapView *mapView;
@property (retain, nonatomic) AGSWebmap *webmap;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
@end
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ViewController.m&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;- (void)viewDidLoad {
&amp;nbsp;&amp;nbsp;&amp;nbsp; AGSCredential* credential = [[[AGSCredential alloc] initWithUser:@"&amp;lt;my_user_name&amp;gt;" password:@"&amp;lt;My_passdword&amp;gt;"] autorelease];
&amp;nbsp;&amp;nbsp;&amp;nbsp; credential.authType = AGSAuthenticationTypeToken;
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.webmap = [[AGSWebMap alloc] initWithItemId:@"e20f2f98b35c4963a5e124bf43c1d74a" credential:credential];
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.webmap.delegate = self
}

#pragma mark AGSWebMapDelegate

- (void)webMapDidLoad:(AGSWebMap *)webMap {
 
 NSLog(@"delegate webMapDidLoad");
 
 //open webmap in mapview
 [self.webMap openIntoMapView:self.mapView];
}

-(void)didOpenWebMap:(AGSWebMap*)webMap intoMapView:(AGSMapView*)mapView {
 NSLog(@"delegate didOpenWebMap");
}&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Even though, the web map is public you must use the complete method..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;self.webmap = [[AGSWebMap alloc] initWithItemId:@"itemid" credential:nil];&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>Sat, 11 Dec 2021 06:15:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101306#M1003</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2021-12-11T06:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: I can't show a web map using AGSWebMap</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101307#M1004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I tried your code and the white screen appear newly. Xcode says that there is no error in the code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;ViewController.h&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
#import &amp;lt;UIKit/UIKit.h&amp;gt;
#import "ArcGis.h"

@interface ViewController : UIViewController &amp;lt;AGSWebMapDelegate&amp;gt;
@property (retain, nonatomic) IBOutlet AGSMapView *mapView;
@property (retain, nonatomic) AGSWebMap *webmap;

@end
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;ViewController.m&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
#import "ViewController.h"

@implementation ViewController
@synthesize mapView;
@synthesize webmap;


#pragma mark - 

- (void) openIntoMapView: (AGSMapView*) mapView {
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.webmap = [[AGSWebMap alloc] initWithItemId:@"d802f08316e84c6592ef681c50178f17" credential:nil];
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.webmap.delegate = self;
}
- (void)webMapDidLoad:(AGSWebMap *)webmap {
 
 NSLog(@"delegate webMapDidLoad");
 //open webmap in mapview
 [self.webmap openIntoMapView:self.mapView];
}

-(void)didOpenWebMap:(AGSWebMap*)webmap intoMapView:(AGSMapView*)mapView {
 NSLog(@"delegate didOpenWebMap");
}

- (void)dealloc {
&amp;nbsp;&amp;nbsp;&amp;nbsp; [mapView release];
&amp;nbsp;&amp;nbsp;&amp;nbsp; [super dealloc];
}
- (void)viewDidUnload {
&amp;nbsp;&amp;nbsp;&amp;nbsp; [self setMapView:nil];
&amp;nbsp;&amp;nbsp;&amp;nbsp; [super viewDidUnload];
}
@end
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:15:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101307#M1004</guid>
      <dc:creator>JoseMorales</dc:creator>
      <dc:date>2021-12-11T06:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: I can't show a web map using AGSWebMap</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101308#M1005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Do you see anything printed on the debug window for following NSLog statements?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;NSLog(@"delegate webMapDidLoad");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;NSLog(@"delegate didOpenWebMap");&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>Tue, 20 Dec 2011 18:25:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101308#M1005</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2011-12-20T18:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: I can't show a web map using AGSWebMap</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101309#M1006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The console printed this information:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
GNU gdb 6.3.50-20050815 (Apple version gdb-1708) (Mon Aug&amp;nbsp; 8 20:32:45 UTC 2011)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.&amp;nbsp; Type "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin".
sharedlibrary apply-load-rules all
Attaching to process 16588.
Couldn't register c.webMap with the bootstrap server. Error: unknown error code.
This generally means that another instance of this process was already running or is hung in the debugger.Current language:&amp;nbsp; auto; currently objective-c
(gdb) 
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:15:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101309#M1006</guid>
      <dc:creator>JoseMorales</dc:creator>
      <dc:date>2021-12-11T06:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: I can't show a web map using AGSWebMap</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101310#M1007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Looks like something wrong with the simulator. Please restart your machine and then try...&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>Tue, 20 Dec 2011 19:12:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101310#M1007</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2011-12-20T19:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: I can't show a web map using AGSWebMap</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101311#M1008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;After restart my computer this is de console message:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
GNU gdb 6.3.50-20050815 (Apple version gdb-1708) (Mon Aug&amp;nbsp; 8 20:32:45 UTC 2011)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.&amp;nbsp; Type "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin".
sharedlibrary apply-load-rules all
Attaching to process 505.
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;... and the map follow without appear only a white screen. Any ideas???&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I attach the project.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:15:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101311#M1008</guid>
      <dc:creator>JoseMorales</dc:creator>
      <dc:date>2021-12-11T06:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: I can't show a web map using AGSWebMap</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101312#M1009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The code written by you never executes. Because the first method which view executes is viewDidLoad and it's missing. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just change the code as below and it should work..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;//- (void) openIntoMapView: (AGSMapView*) mapView {
- (void)viewDidLoad {
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.webmap = [[AGSWebMap alloc] initWithItemId:@"d802f08316e84c6592ef681c50178f17" credential:nil];
&amp;nbsp;&amp;nbsp;&amp;nbsp; self.webmap.delegate = self;
}&lt;/PRE&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>Sat, 11 Dec 2021 06:15:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101312#M1009</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2021-12-11T06:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: I can't show a web map using AGSWebMap</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101313#M1010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Nimesh for your help, already see the map.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Dec 2011 05:49:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/i-can-t-show-a-web-map-using-agswebmap/m-p/101313#M1010</guid>
      <dc:creator>JoseMorales</dc:creator>
      <dc:date>2011-12-23T05:49:08Z</dc:date>
    </item>
  </channel>
</rss>

