|
POST
|
Don't call RegisterPrefix everytime you call the GP service. Only do it once (ie. at app startup or the first time you use the GP tool).
... View more
11-15-2010
04:39 PM
|
0
|
0
|
1267
|
|
POST
|
This smells like a bug in IE that ArcGIS Server exposes. Try it in FireFox and see if that works. If that's the case, try running this line of code when your app first starts up, and see if that doesn't fix it: WebRequest.RegisterPrefix("http://www.myserver.com/arcgis/rest", WebRequestCreator.ClientHttp); This basically forces Silverlight to perform the request for that domain instead of letting the browser do the work for it. Silverlight handles the response from ArcGIS server correctly.
... View more
11-15-2010
10:05 AM
|
0
|
0
|
1267
|
|
POST
|
You should consider the two frameworks two VERY different frameworks. They are not designed to work together. If your AE toolbar was designed to work with an AE map control, there is no way to get it to work with the WPF Map control. In general any AE you do, you will need to "convert" between the two frameworkks, like for instance geometry types etc. I know some people have taken advantage of the much larger AE framework to for instance do complex spatial operations, or create custom dynamic layers that uses AE for doing ExportMap operations against an MXD, etc.
... View more
11-11-2010
08:04 AM
|
0
|
0
|
842
|
|
POST
|
Yes you can do this. Simply use the ExtentChanged/ExtentChanging events to update the extent on the slave map (a very similar approach is used in the magnifiers and overviewmap, which really are just wrapped map controls with a little extra logic around it)
... View more
11-09-2010
12:53 AM
|
0
|
0
|
578
|
|
POST
|
Have you thought about this approach? http://blogs.esri.com/Dev/blogs/silverlightwpf/archive/2010/03/11/Sending-geometry-between-Silverlight-and-the-server-using-WCF.aspx
... View more
11-09-2010
12:49 AM
|
0
|
0
|
481
|
|
POST
|
ArcObjects is not supported by Silverlight. If you need to execute some ArcObjects code, you will need to create a custom webservice on the server and call that. This blogpost might help get you started : http://blogs.esri.com/Dev/blogs/silverlightwpf/archive/2010/03/11/Sending-geometry-between-Silverlight-and-the-server-using-WCF.aspx
... View more
11-09-2010
12:45 AM
|
0
|
0
|
726
|
|
POST
|
Running silverlight apps is fully supported on MacOS. However to build them Visual Studio 2010 and/or Expression Blend is required. These tools only run on Windows. So in other words: Build on Windows, but run on both. As a developer you need Windows, but your users can just Mac.
... View more
11-09-2010
12:42 AM
|
0
|
0
|
528
|
|
POST
|
We are aware of one issue that causes wpf to perform worse in some configurations when tiles needs to load, although I've never seen it as slow as you say it is (seems more choppy than "stuck"). We will have that fixed for final release.
... View more
11-04-2010
12:05 PM
|
0
|
0
|
2249
|
|
POST
|
There is nothing out of the box for ArcIMS, nor are there any plans to provide this. Having said that it's not impossible to create your own custom dynamic layer that pulls from ArcIMS (I know of people who have done this). However it does require a bit or work (as a starting point you might want to look at the WMSLayer code in the Toolkit : http://esrisilverlight.codeplex.com). From the API perspective all you need to do is set the default spatial reference, full extent and implement the GetUrl(...) method. If you know how to communicate with ArcIMS that might not be too much work.
... View more
11-01-2010
03:58 PM
|
0
|
0
|
1431
|
|
POST
|
A much more efficient way would be to use the visual states instead of replacing the symbol as suggested. It will perform better and not "flicker".
... View more
11-01-2010
03:53 PM
|
0
|
0
|
761
|
|
POST
|
There'll be a release candidate first. All I can say is "soon"
... View more
11-01-2010
03:47 PM
|
0
|
0
|
672
|
|
POST
|
Set a hide delay on the maptip, so the user gets a change to move the mouse to the maptip before it closes. This example assumes the graphic you are hovering on has a "Link" attribute.
<esri:GraphicsLayer>
<esri:GraphicsLayer.MapTip>
<Border Background="White" esri:GraphicsLayer.MapTipHideDelay="0:0:0.5">
<StackPanel Margin="10">
<TextBlock Text="More info:" />
<HyperlinkButton NavigateUri="{Binding [Link]}" TargetName="_blank" />
</StackPanel>
</Border>
</esri:GraphicsLayer.MapTip>
</esri:GraphicsLayer>
... View more
11-01-2010
03:45 PM
|
0
|
0
|
1854
|
|
POST
|
A simpler approach is probably just to use the ElementLayer: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#ElementLayer Notice the red box (put whatever you like there instead of the red box)
... View more
11-01-2010
03:38 PM
|
0
|
0
|
1094
|
|
POST
|
1) Use the ImageServiceIdentifyTask to get pixel values. 2) That legend was never tested with / built for ImageService (you could probably enhance it to do that). It's not 10.1 but 10SP1 that will add legend support. However as far as I know, ImageServices are not supported.
... View more
11-01-2010
03:34 PM
|
0
|
0
|
504
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 05-11-2026 07:05 AM | |
| 2 | 03-19-2026 06:03 PM | |
| 1 | 03-03-2026 04:41 PM | |
| 1 | 02-26-2018 07:53 AM | |
| 1 | 02-26-2018 07:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|