POST
|
Hi Darlene, I am still working on this with other resources and definitely let you know as soon as I have any update. Thank you
... View more
06-28-2019
11:22 AM
|
0
|
0
|
2570
|
POST
|
HI Darlene, Just so you know, this is just a workaround and we are aware of this issue. The development team is looking at this. The issue may be related with recent Windows update, but not sure at this moment. I will keep you posted to this thread what I find. Thanks
... View more
06-26-2019
11:14 AM
|
0
|
8
|
2570
|
POST
|
Hi Dariene, Could you please try to use ServiceFeaturetable.UseAdvancedSymbology property and set to "false". I have seen few issues have been reported and adding that property makes symbology appears. https://developers.arcgis.com/net/latest/wpf/api-reference/html/P_Esri_ArcGISRuntime_Data_ArcGISFeatureTable_UseAdvancedSymbology.htm By default this property is true and this is applicable if you use only ArcGIS Pro Symbol. https://developers.arcgis.com/net/latest/android/guide/symbol-types-described.htm Hope that helps. Thanks
... View more
06-26-2019
08:53 AM
|
0
|
10
|
2570
|
POST
|
Hello, I have created a webmap using the traffic.arcgis.com service, which is publicly shared. Using one of our existing sample, Security --> Authenticate with oAuth, and replacing the webmap with the existing one, you should be able to see the traffic map in Runtime application. You just need to enter the AGOL credential. This is one of ways to access the secured AGOL layer. The webmap id is : 264678dc8f274a0c9dd157a08160bff7 Hope that helps.
... View more
03-14-2019
08:32 AM
|
0
|
1
|
687
|
POST
|
Hello, If in case, you use ArcGIS Pro symbol style to create your own symbol and prefer to use in Runtime, please look at this sample: DotNetRuntimeSamples/DicSymbolStyle at master · nagmayasmin/DotNetRuntimeSamples · GitHub ShapefileFeatureTable myShapefile = await ShapefileFeatureTable.OpenAsync(file_shapefile_location); // Create a feature layer to display the shapefile FeatureLayer newFeatureLayer = new FeatureLayer(myShapefile); string file_to_stylx = parent.FullName + "\\Data\\style.stylx"; symbolStyle = await SymbolStyle.OpenAsync(file_to_stylx); IList<String> stringList = new List<string>(); stringList.Add("shoppingcenter01"); stringList.Add("marker01"); SimpleRenderer simpleRenderer = new SimpleRenderer(await symbolStyle.GetSymbolAsync(stringList)); newFeatureLayer.Renderer = simpleRenderer; // Add the feature layer to the map myMap.OperationalLayers.Add(newFeatureLayer); As Kris mentioned, this is .sqlite geodatabase and you need to get the "key" file to identify what symbol layer you wnat to add in Runtime. Hope that helps.
... View more
02-25-2019
02:44 PM
|
0
|
0
|
1748
|
POST
|
Hi Manish, Would it be possible to share your GPK package to test. Thanks
... View more
10-25-2018
03:32 PM
|
0
|
4
|
1068
|
POST
|
Hello, Which basemap are you using to export tiles? Could you check from the REST End point whether it supports "ExportTiles" capability like this service, "World_Street_Map (MapServer) "
... View more
10-24-2018
02:45 PM
|
0
|
0
|
617
|
POST
|
Hi Manish, Attached is the project. Install the NuGet package for Local server/WPF. I came to know that the same project in other m/c fails to start the local server. I don't have any clue, why. Good luck !!!
... View more
10-22-2018
08:24 AM
|
1
|
9
|
1068
|
POST
|
Hi Manish, I just came across this issue and would like to share the resolution I found. Looks like in "ArcGISLocalServer_100.3.AGSDeployment file, you need to set the both of the below options to "false". in 100.3, the local server components specified in the AGSDeployment xml file are not placed correctly, that is my assumption and findings. <Package id="ArcMapGeoprocessing" name="Geoprocessing" enabled="false"> <Package id="ArcMapPythonScripting" name="Python Scripting" enabled="false" /> // if you use python script to create Geoprocessing tool Hope that helps.
... View more
10-17-2018
09:49 AM
|
1
|
11
|
1068
|
POST
|
Hello, Take a look of the sample link below: Display device location—ArcGIS Runtime SDK for .NET Samples | ArcGIS for Developers In addition, MapView.LocationDisplay.Position() gives the MapPoint in lat/lng coordinate MyMapView.LocationDisplay.Location {Esri.ArcGISRuntime.Location.Location} Course: 0 HorizontalAccuracy: 2990 IsLastKnown: false Position: {MapPoint[X=-117.1809, Y=34.0508, Z=0, Wkid=4326]} Timestamp: {10/11/2018 7:48:37 PM +00:00} Velocity: 0 VerticalAccuracy: 0 Hope that helps.
... View more
10-11-2018
12:56 PM
|
0
|
0
|
1065
|
POST
|
Hi Salli, Could you try to create a new feature without setting the attribute value and see if it is successful. If not, I would suggest looking at the fiddler request when you call Await _feature.FeatureTable.AddFeatureAsync(_feature) for further troubleshooting. How about if you use this service: "https://sampleserver6.arcgisonline.com/arcgis/rest/services/Sync/WildfireSync/FeatureServer/0" Does it work ?
... View more
04-26-2018
01:46 PM
|
0
|
0
|
1451
|
POST
|
Hi Salli, Make sure when you create a new feature you call it on ServiceffeatureTable as below: Uri featureServiceUri = new Uri("https://sampleserver6.arcgisonline.com/arcgis/rest/services/Sync/WildfireSync/FeatureServer/0"); ServiceFeatureTable _featureTable = new ServiceFeatureTable(featureServiceUri); private async void GeoViewTapped(object sender, GeoViewInputEventArgs e) { MapPoint point = (MapPoint)e.Location; var newFeature = _featureTable.CreateFeature(); newFeature.Geometry = point; newFeature.SetAttributeValue("Attribute_Field", 1000); try { await _featureTable.AddFeatureAsync(newFeature); await _featureTable.ApplyEditsAsync(); } catch (ArcGISRuntimeException ex) { Debug.WriteLine(ex.Message); } } Hope that helps.
... View more
04-26-2018
09:32 AM
|
0
|
9
|
1451
|
POST
|
Hi Mike, To answer your second question, the "Minimum" value for QueryFeatureFields requests the minimum set of fields to render the feature on a map like geometry, ID, and fields needed for the renderer and labels. Hope that helps.
... View more
04-16-2018
08:19 AM
|
2
|
0
|
887
|
POST
|
Hi, Using your code, I am able to see the feature layer without any error. May be the time you were trying to access, the service was down, just a thought. Were you able to access the service from the REST End point.
... View more
04-12-2018
08:39 AM
|
0
|
0
|
1179
|
POST
|
Hi Jeff, As you see from REST API documentation, findAddressCandidates—ArcGIS REST API: World Geocoding Service | ArcGIS for Developers , "the default distance is 50,000 meters; this value is not configurable.". Also please look at the note where it is mentioned that "The distance parameter is deprecated and no longer recognized by the service. A default distance of 50,000 meters is now used internally by the service to boost candidate priority for all requests with location." So it isn't possible to set distance parameter in geocoding operation. Hope that helps.
... View more
04-05-2018
07:37 PM
|
0
|
0
|
585
|
Title | Kudos | Posted |
---|---|---|
1 | 08-02-2017 04:15 PM | |
1 | 08-09-2017 03:25 PM | |
1 | 11-10-2017 09:37 AM | |
1 | 11-13-2017 08:43 AM | |
1 | 06-06-2017 07:27 PM |
Online Status |
Offline
|
Date Last Visited |
05-31-2024
09:45 PM
|