|
POST
|
Hi Ravichandran, - For the unhandled error from Visual Studio, one thing for sure is when add WSMLayer this Class, you definitely need to make sure all ESRI dll comes from the same version. Since WmsLayer Class from ESRI.ArcGIS.Client.Toolkit.DataSources, therefore you need to import both “ESRI.ArcGIS.Client” and “ESRI.ArcGIS.Client .Toolkit.DataSources” references are the same version. The path for the dll should under this path, “…\Program Files (x86)\ESRI SDKs\Silverlight5\v3.2” Here is a screenshot for the references:
... View more
07-06-2015
03:34 PM
|
1
|
0
|
630
|
|
POST
|
Hi Craig, There are several ways to limit the geocoder widget to return result: One way to do it is to set maxLocations that returns after you typed the name of location, please take a look about this API reference: Geocoder | API Reference | ArcGIS API for JavaScript The other way is to set some specifications for geocoder. Take a look this page https://developers.arcgis.com/javascript/jsapi/geocoder-amd.html#geocoder1 and search "Object Specifications" for details. It sounds like you are using your own custom geocoder, so you better to make sure if those all specifications are available for your geocoder. Also, Here is a sample code to append suffix to restrict the result to "Redlands" Geocoder - append default suffix | ArcGIS API for JavaScript There is another similar thread about geocoder suggestions you can take as a references filtering Geocoder for a specific country Hope this can help!
... View more
07-06-2015
09:44 AM
|
2
|
3
|
1970
|
|
POST
|
Hi Rhonda, You can take a look about our online resource about Edit features—ArcGIS Runtime SDK for iOS | ArcGIS for Developers Also, you take download this sample through github to get more handy experience about the code: arcgis-runtime-samples-ios/RelatedRecordEditingSample at master · Esri/arcgis-runtime-samples-ios · GitHub
... View more
06-12-2015
04:00 PM
|
1
|
0
|
557
|
|
POST
|
Hi Salih, Here is the documentation that shows how to access secure services using Runtime SDK for iOS Access secure services—ArcGIS Runtime SDK for iOS | ArcGIS for Developers
... View more
06-12-2015
03:54 PM
|
1
|
2
|
3145
|
|
POST
|
For the "searchExtent", I tested in JS API, it looks like only take Extent Object, the way add "searchExtent" in json is not working. Need more changes in some .js file
... View more
06-10-2015
05:54 PM
|
1
|
0
|
2547
|
|
POST
|
I assume you refer to this template: Esri/basic-viewer-template · GitHub
... View more
06-01-2015
11:22 AM
|
1
|
1
|
631
|
|
POST
|
Hi Mahtab, I wonder have you converted JoinDataSource into a layerDataSource? And use query function to query the layerDataSource that add a < LayerSource > source to FeatureLayer? Please check this API reference: FeatureLayer | API Reference | ArcGIS API for JavaScript Then you can define the query.where as well as query.outFields to set the rule of the return data Also, this is a good answer that you should check: Re: Using join data source as source for feature layer
... View more
06-01-2015
10:56 AM
|
1
|
2
|
1419
|
|
POST
|
Hi Dave, Check this thread and it related to your question. Re: Using join data source as source for feature layer
... View more
05-27-2015
09:26 AM
|
1
|
0
|
641
|
|
POST
|
This might not related to the "break the call back" code suggestion, But from an iOS application, it is better to narrow down the find/query result to a more precious and accurate value, which means a less value return that match with the find/query category. If a find result takes more than 60 mins I would suggest to redefine the data attribute or search category.
... View more
05-20-2015
04:54 PM
|
1
|
1
|
1910
|
|
POST
|
Hi Mikko, I use this syntax can successfully view this AGSWMTSLayer: AGSWMTSLayer *wmtsLayer = [AGSWMTSLayer wmtsLayerWithUrl:[NSURL URLWithString:@"http://opencache.statkart.no/gatekeeper/gk/gk.open_wmts"] title:@"topo2" imageFormat:AGSImageFormatJPG tileMatrixSet:@"EPSG:32633"]; However, when I switch to this wmtslayer it doesn't work: http://v2.suite.opengeo.org/geoserver/gwc/service/wmts/ AGSWMTSLayer *wmtsLayer = [AGSWMTSLayer wmtsLayerWithUrl:[NSURL URLWithString:wmtsURL] title:@"Countries of the World" imageFormat:AGSImageFormatJPEG tileMatrixSet:@"EPSG:4326"]; I use Charles, a proxy debug tool found that error is 500, said default while fetching modifiable parameters for LAYER opengeo:countries (as screenshot) I will try to see if I got any luck. But one thing for sure the syntax is fine but specific to WMTSLayer.
... View more
02-18-2015
05:33 PM
|
0
|
0
|
1304
|
|
POST
|
Hello Michal, I think this is related to Chromium WebView, the hardware accelerated canvas rendering is not supported in Android 4.4 or previous version. Add this line to the WebView to turn off hardware accelerated canvas and it should works. mWebview.setLayerType(View.LAYER_TYPE_SOFTWARE, null); For more information, please check this Android page: Hardware Acceleration | Android Developers I tested with Anroid 5.0 it works fine. FYI this as well if you curious, Google: Why we won't patch pre-KitKat Android WebView | ZDNet
... View more
02-17-2015
05:35 PM
|
0
|
0
|
3092
|
|
POST
|
Hi Ruslan, Thanks for your detail pictures to show the odd behavior. I wonder is this can reproduce on physical device or only on Simulator?
... View more
02-05-2015
10:41 AM
|
0
|
1
|
864
|
|
POST
|
Hello Joseph, Welcome to the iOS SDK world. To add a little more on Al's reply. There is basically two ways to create ArcGIS Runtime offline map, either Services pattern or Desktop pattern. For more information, please check this link: https://developers.arcgis.com/ios/objective-c/guide/create-an-offline-map.htm Since you mentioned that the ArcGIS Server and ArcMap are not the primary option, you can still use a trial version of ArcGIS Online as Al described to test about the offline function. Hope this tips help. Best Regards,
... View more
01-08-2015
10:00 AM
|
0
|
0
|
902
|
|
BLOG
|
Are you tired of implementing and managing different third-party libraries when creating your own applications? This blog shows you how to implement CocoaPods with Xcode 6.1 and use CocoaPods to download ArcGIS Runtime SDK for iOS. CocoaPods is the dependency manager for Cocoa projects. CocoaPods has thousands of libraries and can help you elegantly scale your projects. As we all know, configuring OSX and iOS projects can be a challenging process. With CocoaPods, you can easily organize dependencies (a.k.a. pods) for the various third-party libraries used in your projects. For more information about installing CocoaPods, use this Getting Started guide as a reference. First, let’s create a new project and add a new file into your project by using the following steps. Right-click the project name, and click New File. Select the Empty template file, and name the file "Podfile". Note: We need a file named “Podfile” because it is a specification that describes the dependencies of the targets of one or more Xcode projects. “Podfile” always creates an implicit target, which is named by default, and links to the first target of the user's project. Tip: CocoaPods provides a pod init command to create a "Podfile" with smart defaults, which you can run in a terminal as an alternative. Add the lines below into the “Podfile”, and save the file. source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.1' pod 'ArcGIS-Runtime-SDK-iOS', '10.2.4' For more information about how to write a “Podfile”, please use the information listed here. After creating the "Podfile", open 'terminal.app' on the OSX machine. Navigate to the project's root folder by using the syntax below. cd /Users/yourUsername/yourProjectFolder/ Note: As an alternative to the step above, you may also directly drag your project's main folder to the terminal. It will automatically generate the path of the folder; then, under your project folder, use the following command. $pod setup A successful installation displays a message similar to the screenshot below. After the setup, we need to install the dependencies in your project. This downloads the ArcGIS framework to your machine and moves the framework into your project's Pod directory. This installation also makes the necessary changes to your project's build settings to correctly reference the ArcGIS framework. $pod install We can now go back to the project folder, but open the Xcode workspace instead of the project file when building your project. The last step is to open the project workspace (*.xcworkspace file) and add the import statement '#import "<ArcGIS/ArcGIS.h>" to any Objective-C header (.h) or implementation (.m) file where you want to use the API. In conclusion, remember that the advantage of using CocoaPods is that you can manage dependencies easily. As a result of implementing CocoaPods, you can add additional libraries by adding other pods into the “Podfile” and run the pod install command to commit your changes to the “Podfile”. Nathan W. & Rachel G. - SDK Support Analysts
... View more
01-07-2015
06:41 AM
|
0
|
0
|
1801
|
|
POST
|
Hello George, I would suggest use 64bit version Silverlight Viewer 3.2. The reason is because if you using a 64-bit OS, the system will not allow you to install 32bit (at least in my PC, when I try to install a 32bit on a 64-bit OS it throws a warning). Also, for the VS part, you need to install the correlated version of Silverlight API match up with the Silverlight Viewer. Say you using Silverlight Viewer 3.2, you need also install the ArcGIS Silverlight API 3.2, and optionally install the ArcGIS Extensibility SDK 3.2 Please let me know if this help.
... View more
12-15-2014
09:53 AM
|
0
|
0
|
910
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-20-2015 10:15 AM | |
| 1 | 07-31-2015 08:53 AM | |
| 1 | 01-28-2016 04:55 PM | |
| 1 | 02-22-2016 02:07 PM | |
| 1 | 05-20-2015 04:54 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-27-2025
09:24 AM
|