|
POST
|
I think you need to click on "Response is encoded...", to see if an image had been returned in the response.
... View more
05-22-2012
11:13 AM
|
0
|
0
|
918
|
|
POST
|
If you are interested in ArcGIS for Sharepoint, you can post to this forum: http://forums.arcgis.com/forums/69-ArcGIS-for-Sharepoint. This product use our ArcGIS API for Silverlight v2.4 which is Silverlight 4: http://help.arcgis.com/en/webapps/sharepoint/index.html
... View more
05-22-2012
11:11 AM
|
0
|
0
|
562
|
|
POST
|
In 10.1 ArcGIS Server, they have provided PrintingTool, which ArcGIS API for Silverlight v3.0 expose as a PrintTask. You can look at this SDK sample: http://resourcesbetadev.arcgis.com/en/help/silverlight-api/samples/start.htm#ExportWebMap. Is the route event layer a GraphicsLayer? If yes and it has a renderer/symbol that REST API support, PrintTask should be able to handle it. You can check the sample to see if this is something you could use.
... View more
05-22-2012
10:27 AM
|
0
|
0
|
778
|
|
POST
|
This seems to be related thread: http://forums.arcgis.com/threads/49936-XamlParseException-in-designer-with-a-map. But I didn't hear back whether it was related to the services they were using.
... View more
05-22-2012
10:20 AM
|
0
|
0
|
2424
|
|
POST
|
I could not reproduce with the following SDK sample: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#DynamicMap. I updated ArcGISDynamicMapServiceLayer.DisableClientCaching to True and added a button that will call layer.Refresh. I check on Fiddler that after layer.Refresh() a new export request is made.
... View more
05-22-2012
10:10 AM
|
0
|
0
|
828
|
|
POST
|
You can look at this SDK sample, http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#CustomSymbols. In XAML, notice that symbol template include VisualStates. This is an example of how animation is used on graphic.Symbol. There are also some tutorial on Silverlight website: http://www.silverlight.net/learn/creating-ui/animation-and-easing/animations-%28silverlight-quickstart%29.
... View more
05-22-2012
09:26 AM
|
0
|
0
|
643
|
|
POST
|
Your code looks fine but I think FDG will take longer to load if you use GraphicsLayer, it might be better to use FeatureLayer, which would also cut down your code to:
var layer = new FeatureLayer()
{
Url = string.Format("{0}/{1}", dynamicLayer.Url, i),
};
MyMap.Layers.Add(layer);
featureDataGrid1.GraphicsLayer = layer;
... View more
05-18-2012
05:18 PM
|
0
|
0
|
1953
|
|
POST
|
What version of the API are you using? If you are using v3.0 Pre-Release, you need Expression Blend 5.
... View more
05-18-2012
05:00 PM
|
0
|
0
|
2424
|
|
POST
|
In the ExecuteCompleted, do you get any Features in e.FeatureSet? If yes, did you have Query.ReturnGeometry = true and set Query.OutSpatialReference to your Map.SpatialReference? If yes, does your GraphicsLayer have Renderer defined and does the symbol match geometry (i.e. FillSymbol for Polygon, LineSymbol for Polyline, MarkerSymbol for MapPoint, etc)?
... View more
05-18-2012
04:57 PM
|
0
|
0
|
1499
|
|
POST
|
Have you looked into using ElementLayer? http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#ElementLayer, http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#MediaLayer.
... View more
05-17-2012
02:38 PM
|
0
|
0
|
739
|
|
POST
|
You can start by looking at the SDK samples: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#WebMapCharts Also visit the Concepts page: http://help.arcgis.com/en/webapi/silverlight/help/index.html. There's a section for Getting Started there 🙂
... View more
05-17-2012
02:34 PM
|
0
|
0
|
842
|
|
POST
|
I don't know if we have any write up on this but you can use the API reference page to determine which properties of the map and/or layers are bindable: http://resourcesbeta.arcgis.com/en/help/silverlight-api/apiref/api_start.htm?ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Map_members.html. It would have information whether it is a DependencyProperty, read-only property, etc.
... View more
05-17-2012
02:31 PM
|
0
|
0
|
2110
|
|
POST
|
This is known issue with the ScrollViewer. The ScrollViewer intercepts the mouse event and marks it Handled=True, so the map control cannot pan/zoom. There seems to be a workaround as suggested in this forum thread: http://forums.arcgis.com/threads/46519-ScrollViewer-Prevents-Panning
... View more
05-17-2012
02:25 PM
|
0
|
0
|
2181
|
|
POST
|
I cannot reproduce with the following code: Subscribing to InitializationFailed was enough in this case. Is your layer defined else where besides the code-snippet you shared (maybe XAML)?
var dynamicLayer = new ArcGISDynamicMapServiceLayer() { Url = "http://badUrl" };
dynamicLayer.InitializationFailed += (a, b) => { };
dynamicLayer.Initialize();
You can also check if subscribing to dynamicLayer.Initialized event would work.
dynamicLayer.Initialized+=(a,b) =>
{
if(dynamicLayer.InitializationFailure!= null)
{
//initialization failed
}
};
... View more
05-17-2012
02:22 PM
|
0
|
0
|
675
|
|
POST
|
You're right the issue probably exist in v2.4. It seems fixed in v3.0 Pre-release sample: http://resourcesbeta.arcgis.com/en/help/silverlight-api/samples/start.htm#DrawGraphics
... View more
05-17-2012
02:05 PM
|
0
|
0
|
1074
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 09-11-2025 01:30 PM | |
| 1 | 06-06-2025 10:14 AM | |
| 1 | 03-17-2025 09:47 AM | |
| 1 | 07-24-2024 07:32 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|