POST
|
You might be missing another requirement as listed in systems requirement "Applications built with ArcGIS Runtime SDK for .NET require installation of Microsoft Visual C++ 2015 Redistributable Update 3." https://developers.arcgis.com/net/latest/wpf/guide/system-requirements.htm
... View more
11-30-2016
10:12 AM
|
0
|
3
|
684
|
POST
|
The error you mentioned indicates you are hitting a bug but we tried reproducing the issue by writing code using similar workflow and were not able to reproduce it. There are couple things you can do to help us narrow down the problem. Can you please try changing the code with one option at a time and run your code and see if it still reproduces the problem. - await SetGraphicSymbolAsync method that sets the picturemarkersymbol. - Get rid of async symbol stuff altogether or replace PictureMarkerSymbol with a SimpleMarkerSymbol. Thanks, Preeti
... View more
11-30-2016
10:07 AM
|
0
|
1
|
2627
|
POST
|
We are unable to reproduce this. Usually that error is displayed until nuget packages are restored. Once the packages are restored and application is clean+rebuild, that error warning goes away.
... View more
11-29-2016
04:27 PM
|
0
|
0
|
684
|
POST
|
Can you please share your code that reproduces the problem ?
... View more
11-29-2016
02:36 PM
|
0
|
0
|
2627
|
POST
|
Hope you see the image now. This is the image I was referring too. But I guess you got what I was asking to check. Ok so, does the app work/deploy in release mode? As an FYI, there are some issues with arm64-v8a architecture that are currently under investigation. Would it possible for you to uncheck arm64-v8 and test running/deploying your app? -Preeti
... View more
11-29-2016
01:28 PM
|
0
|
1
|
2297
|
POST
|
Can you please check that project properties > Android Options> Advanced Tab has the architecture that matches the architecture of the mobile to be checked ON. See image above for reference. Let me know.
... View more
11-29-2016
11:54 AM
|
0
|
3
|
2297
|
POST
|
Hi, I am unable to repro the problem you are seeing with Querying related rows between two tables. Would it be possible for you to share your data ?
... View more
10-13-2014
02:48 PM
|
0
|
1
|
552
|
POST
|
Visual Studio version looks right. Make sure you right-click on the project name in the Solution Explorer and not on Solution Name. For details refer to Create an ArcGIS Runtime deployment—ArcGIS Runtime SDK for .NET | ArcGIS for Developers topic. Let us know if you still can't find it.
... View more
10-09-2014
11:45 AM
|
0
|
1
|
897
|
POST
|
Following should work : var renderer = new UniqueValueRenderer(); renderer.RotationExpression = "[Angle]";
... View more
10-09-2014
11:19 AM
|
1
|
1
|
491
|
POST
|
Hi, I used EditGeometry for resizing and moving objects (rectangle, for example). And it works fine except for this scenario: 1. Draw something 2. Click on drawing 3. Now select one of anchor points for resizing 4. Move mouse cursor away from the map 5. Observe as soon as you get out map area object is no longer resizing I noticed that when I'm drawing an object, I don't have this problem, only while editing with EditGeometry. Can this be fixed and how? Thank you, Ana Hi Ana, The behavior you are seeing is as designed. Only those shapes can be drawn outside map area which have mouse gestures of click and drag, i.e. Triangle, Rectangle, circle, ellipse, arrow, line. Shape like Polyline, Polygon or even point cannot be drawn outside map area. Interactive editing of any shape cannot be done outside of map-area. Thanks, Preeti
... View more
06-28-2013
02:10 PM
|
0
|
0
|
251
|
POST
|
Hi, These operations are available Out-of-the box. you don't need reference to any toolkit to be able to Pan, Zoom-in or Zoom-out. Thanks, Preeti
... View more
06-28-2013
01:34 PM
|
0
|
0
|
577
|
POST
|
Hi, This looks like a bug. I assume it got introduced as part of another improvement we did to enable saving edits for a polygon while it's vertices are being edited . We will try to fix this in future release. Thanks, Preeti
... View more
06-28-2013
11:11 AM
|
0
|
0
|
186
|
POST
|
Hi, This looks like a bug. I assume it got introduced as part of another improvement we did to enable saving edits for a polygon while it's vertices are being edited . We will try to fix this in future release. Thanks, Preeti
... View more
06-28-2013
10:14 AM
|
0
|
0
|
588
|
POST
|
Actually the problem is that you are trying to add a graphic with envelope as geometry when layer expects geometry of type polygon. In your sample code if you change the code as follows, the graphic will be saved correctly. ESRI.ArcGIS.Client.Geometry.Polygon poly = new ESRI.ArcGIS.Client.Geometry.Polygon();
ESRI.ArcGIS.Client.Geometry.PointCollection pts = new ESRI.ArcGIS.Client.Geometry.PointCollection();
Graphic gra = new Graphic();
//gra.Geometry = new Envelope(LL, UR);
pts.Add(LL);
pts.Add(new MapPoint(UR.X, LL.Y));
pts.Add(UR);
pts.Add(new MapPoint(LL.X, UR.Y));
poly.SpatialReference = MyMap.SpatialReference;
poly.Rings.Add(pts);
gra.Geometry = poly;
gra.Symbol = featureLayer.Renderer.GetSymbol(gra);
featureLayer.Graphics.Add(gra);
... View more
05-13-2013
01:27 PM
|
0
|
0
|
305
|
POST
|
Let me explain again.I believe there is some confusion here. You may be wondering why Toad or SQL client can return 3500( just an example) records and the same query is returning only 500 when executed from the API. It is because the map service you are querying is set to return maximum of 500 features. Again this is a value that can be changed. You may ask the publisher of the service to change this value to a higher number but please keep in mind the performance Here are couple examples: 1. Here is the URL from a 10.1 service http://serverapps101.esri.com/arcgis/rest/services/USA_Diversity/MapServer/3. Go to this URL and see MaxRecountCount property for this service is 1000. This means if the query returns are more than 1000 records using DB client records than irrespective of how many records are returned from the database ArcGIS Server service will return only 1000 ( using Rest endpoint or by using Any API querytask). Please note, this number is set while publishing a service and may be changed. At 10.1 this maxrecordcount property is exposed via Rest, so if you are using pre 10.1 server you may have to check this value using ArcGIS Server Manager or ArcCatalog. Bottomline, its not the database, its not the API but actually it is a value set on the ArcGIS Server service which causes querytask to return 500/1000 or whatever number set on the service. I am also attching two screenshots with two different values on two different services on the same server. I hope this makes it clear. Please let me know if you have any questions.
... View more
08-03-2012
01:55 PM
|
0
|
0
|
1130
|
Title | Kudos | Posted |
---|---|---|
1 | 07-08-2024 07:33 PM | |
2 | 06-19-2024 02:12 PM | |
1 | 12-28-2023 11:06 AM | |
1 | 12-19-2023 11:08 AM | |
1 | 11-08-2023 10:41 AM |
Online Status |
Offline
|
Date Last Visited |
Thursday
|