|
POST
|
ZoomTo and PanTo with animation are asynchronous operations so executing both at the same time may give unexpected behavior. Please look at this thread for a possible workaround. /Dominique
... View more
10-20-2014
11:53 PM
|
0
|
8
|
2355
|
|
POST
|
Looks like the links have been lost during forum migration : PrintMap Sample Live A version of this sample is also available in the interactive SDK: Client Printing. This version is simplified (not multipage, no way to fix the scale) but the UI has been enhanced.
... View more
10-20-2014
08:03 AM
|
1
|
2
|
1215
|
|
POST
|
You can use EnumerateAllLayers or EnumerateLeaves defined on FeatureCollection. Something like: foreach(var layer in MyMapView.Map.Layers.EnumerateLeaves()) .....
... View more
10-17-2014
04:38 AM
|
0
|
2
|
1068
|
|
POST
|
Lance is right, the service was experiencing issues yesterday. This has now been fixed at server side. Could you try again? Thanks
... View more
10-17-2014
01:15 AM
|
0
|
1
|
1105
|
|
POST
|
I suggest you look at the Extract Data sample (ArcGIS API for Silverlight - Interactive Samples | ArcGIS for Developers ). It demonstrates how to execute a GP Tools at server side and download the result locally.
... View more
10-17-2014
01:10 AM
|
0
|
3
|
1403
|
|
POST
|
PoolPermit service is up again. I tested your code and it seems working. Could you try again? If you are experiencing issue with another services, please share your code so we can reproduce the issue. Thanks.
... View more
10-17-2014
01:02 AM
|
0
|
12
|
3152
|
|
POST
|
Looks like the PoolPermit feature server<http://sampleserver6.arcgisonline.com/arcgis/rest/services/PoolPermits/FeatureServer> is no longer working well. Even the arcgis.com viewer<http://www.arcgis.com/home/webmap/viewer.html?url=http%3A%2F%2Fsampleserver6.arcgisonline.com%2Farcgis%2Frest%2Fservices%2FPoolPermits%2FFeatureServer&source=sd> is not able to display the features. Error returned by the server: {"error":{"code":500,"message":"Error performing query operation","details":[]}} /Dominique
... View more
10-16-2014
03:39 AM
|
0
|
14
|
3152
|
|
POST
|
If the domain of your field is a CodedValueDomain, you can get the description from the dictionary of CodedValues. Example ``` CodedValueDomain codedValueDomain = field.Domain as CodedValueDomain; string code = "MFT"; if (codedValueDomain != null && codedValueDomain.CodedValues.ContainsKey(code)) { description = codedValueDomain.CodedValues ; } ```
... View more
10-15-2014
01:50 AM
|
0
|
0
|
438
|
|
POST
|
Nice workaround. Thanks for sharing it. It's definitively a fix that is in the list for the next version.
... View more
10-15-2014
01:28 AM
|
0
|
0
|
999
|
|
POST
|
To get the errors, you have to subscribe to the MapView event 'LayerLoaded'. In the event handler, the 'LoadError' gives you the error that happened when trying to load the layer into the view. However, you are right that the DefaultSpatialReference of the local layer is not initialized. We'll try to fix that in a future release. Thansk for reporting this.
... View more
10-14-2014
12:45 AM
|
0
|
0
|
999
|
|
POST
|
You can try something like: if (MyMap.Extent.Intersects(graphic.Geometry..Extent)) { ........ This should work if your graphic coordinates are in the same Spatial Reference as the map.
... View more
10-13-2014
06:40 AM
|
0
|
0
|
853
|
|
POST
|
As geometries are now immutable, the Coordinate struct has been removed and its usage has been replaced by MapPoint. You can find all API changes from 10.2.3 in the release notes.
... View more
10-13-2014
12:45 AM
|
0
|
1
|
1458
|
|
POST
|
Geometries are now immutable so MoveTo() returns a new MapPoint instead of changing the current MapPoint. The goal of the geometry immutability is mainly to gain in performances so you should not notice any performance degradation due to that.
... View more
10-13-2014
12:38 AM
|
0
|
0
|
1590
|
|
POST
|
Oh I see. It was actually a bug in 3.1. In 3.1, the symbols coming from the renderer were also stored by the graphics. The issue was that any change in the renderer was ignored since the symbols were froozen by graphic. This has been fixed in 3.2 so graphic.Symbol is always null but it has been set explicetly. So in your case, the solution should be to get the renderer of your feature layer and change (or update) the symbols of the renderer.
... View more
10-09-2014
08:25 AM
|
0
|
1
|
1631
|
|
POST
|
If your symbology is defined by a renderer, you have to change the symbol of the renderer. If your symbology is defined by graphic, you should be able to get the symbol from the graphic and modify it. How is defined your symbology?
... View more
10-09-2014
07:54 AM
|
0
|
3
|
1631
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-14-2025 09:24 AM | |
| 1 | 06-13-2013 09:22 AM | |
| 1 | 04-29-2022 02:21 AM | |
| 1 | 04-29-2022 02:28 AM | |
| 1 | 09-07-2021 03:12 AM |
| Online Status |
Offline
|
| Date Last Visited |
10-30-2025
08:06 AM
|