|
POST
|
Hi, You should think Samples as a simple (and simplified) examples and use API / Concept documentation to get the actual information about the API and controls properties. Esri cannot provide all different scenarios how to use the controls in samples to keep them easily readable and understandable. If you are uncertain about something, then this is good place to ask. 😉
... View more
02-20-2013
12:34 AM
|
0
|
0
|
1057
|
|
POST
|
Hi, Have you checked this : http://resources.arcgis.com/en/help/runtime-wpf/concepts/index.html#/About_map_packages/017000000059000000/ "Include enterprise geodatabase data instead of referencing the data�??You may want to consider this option if you have enterprise (ArcSDE) geodatabase data in your map. When this option is checked, the data is extracted from the enterprise geodatabase into a file geodatabase by intersecting the features from the layer with the current data frame's extent. Not checking this option means the map layers will continue to reference enterprise geodatabase data."
... View more
01-30-2013
12:20 AM
|
0
|
0
|
511
|
|
POST
|
Thanks for the clarification. I will be waiting the March update. with regards, Antti Kajanus Esri Finland
... View more
01-29-2013
11:53 PM
|
0
|
0
|
658
|
|
POST
|
Hi, I have uploaded simple CSV file to the AGOL and after that I try to create new Feature Service from that using Portal API's publish functionality. I use direct call to the REST endpoint using ArcGIS Runtime for WPF 10.1.1 ArcGISWebClient and I manage to create a new Feature Service instance but it doesn't include the Coded Value Domain definitions that I added to the Publish Parameters JSON. So the question : Does Publish Item support creating Field definitions with CVD's if they are described in the LayerInfo parameter for CSV-files? If yes, then I need to start to check my code again.
... View more
01-27-2013
10:58 PM
|
0
|
2
|
2260
|
|
POST
|
So you want to save some extent content from the one/many services without using a visible map control? Have you checked PrintTask? If it doesn't work in your case, I think more information about the scenario and the structure of the content that you want to export would help.
... View more
01-02-2013
02:12 AM
|
0
|
0
|
1113
|
|
POST
|
Hi, Here is one way to do it. Code from the hat and is not tested. <esri:SimpleMarkerSymbol x:Key="Circle" OffsetX="9" OffsetY="9"> <esri:SimpleMarkerSymbol.ControlTemplate> <ControlTemplate> <Grid> <Ellipse Fill="Red" Width="18" Height="18" Stroke="White" StrokeThickness="1"></Ellipse> TextBlock Text="1" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock> </Grid> </ControlTemplate> </esri:SimpleMarkerSymbol.ControlTemplate> </esri:SimpleMarkerSymbol> with regards, Antti
... View more
01-01-2013
09:55 PM
|
0
|
0
|
1824
|
|
POST
|
Hi, There is no out-of-the-box functionality but you can create such file by yourself. You get all the needed information from the Map control and then write the needed information to the file.
... View more
01-01-2013
09:26 PM
|
0
|
0
|
1113
|
|
POST
|
Hi, For my knowledge, you cannot share local services between the application instances. Every application has it's own Local Server instance and services running that is restricted and secured only for that application. What you can and should do is to create functionality to kick services up on background and visualize the loading accordingly. You can find some starters for that from SDK samples and Local Server / Local Server / Local Server Management example. Hope it helps.
... View more
01-01-2013
09:22 PM
|
0
|
0
|
1592
|
|
POST
|
Hi guys, Is it possible to use the ArcGIS Runtime SDK for WPF to develop applications for Microsoft Pixelsense(formally called microsoft surface.). Searching through the internet I found this video of a esri heatmap running on pixelsense but I am not able to find anything in the esri site regarding this. Thanks in advance. http://www.youtube.com/watch?v=jswBcy_1tLo&feature=plcp Hi, I hope that someone from Esri can give you last word but if I look Pixelsenses technical requirements it is build on .NET Framework 4.0 and Windows Presentation Foundation (WPF) 4.0. " Microsoft Surface 2.0 SDK supports Windows 7 Professional (32-bit and 64-bit), so you can use a Windows 7 touch computer for basic testing or the creation of touch applications." With this information I would say that you can develop stuff for Pixelsense using ArcGIS Runtime SDK for WPF.
... View more
12-03-2012
08:28 PM
|
0
|
0
|
702
|
|
POST
|
Hi Antti, I´ve interesting serialize the Graphics into a database, can you upload the code to GitHub. Thanks Antti, There you go. 😛 As I mentioned previously, I haven't tested that more than the example application so you should do some testing with it. I am also interested if you find it useful or if it blows up. https://github.com/anttikajanus/Esri/tree/master/RuntimeForWPFExamples/GraphicSerializationExample
... View more
11-29-2012
03:37 AM
|
0
|
0
|
1149
|
|
POST
|
Generally I considered best practice to show operational data as a image (dynamic rendering) when you have a a lot of stuff visible from the feature / dynamic service. But this off course depends on the case. One thing to remember when using Accelerated grapchis is that the rendering engine cannot draw symbols with custom DataTemplate so check if you have renderer / symbol that is supported by the engine. If you use symbol that is not supported the symbol is not drawn into the layers. </caje>
... View more
11-22-2012
08:21 PM
|
0
|
0
|
1842
|
|
POST
|
What kind of scenario you have? It is quite hard to answer without knowing what you are actually doing or how you would like to do it.
... View more
11-22-2012
08:14 PM
|
0
|
0
|
1067
|
|
POST
|
I think attributes should be updated automatically via bindings on the InfoWindows. In Samples / toolkit controls / controls / InfoWindow is defined like this
<esri:InfoWindow x:Name="MyInfoWindow" Padding="2" CornerRadius="20" Background="{StaticResource PanelGradient}" Map="{Binding ElementName=MyMap}" ContentTemplate="{StaticResource MyFeatureLayerInfoWindowTemplate}" MouseLeftButtonUp="MyInfoWindow_MouseLeftButtonUp" /> and content template uses binding to "STATE_NAME" attribute. Note the [] marks that enables you to access the attribute by its name in the binding.
<DataTemplate x:Key="MyFeatureLayerInfoWindowTemplate">
<TextBlock Text="{Binding [STATE_NAME]}" Foreground="White" FontSize="12" />
</DataTemplate>
Hope this helps.
... View more
10-19-2012
05:03 AM
|
0
|
0
|
530
|
|
POST
|
Hi, What version of .Net framework you are using with the application? One possible issue here is that, the reference between the WPFToolkits VisualStateManager (3.5 .Net framework) and 4.0 .NET frameworks VisualStateManager. When I last time used WPFToolkit in 4.0 project, I had to be sure that WPFTookit (and other assemblies it needed) were references in the main assembly. Actually I was not sure what exactly fixed the issue, but that move was my guess. With fast googling I found this: http://forums.esri.com/Thread.asp?c=213&f=2456&t=286607 (check the last message atleast) Hope it helps.
... View more
10-18-2012
09:57 PM
|
0
|
0
|
867
|
|
POST
|
Hi, Have you created the Deployement Package of ArcGIS Runtime and it is copied with the executable? If not, see how to create it at http://resources.arcgis.com/en/help/runtime-wpf/concepts/index.html#/Creating_a_runtime_deployment/01700000005m000000/
... View more
10-17-2012
01:43 AM
|
0
|
0
|
1400
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-12-2014 03:52 AM | |
| 1 | 08-27-2015 03:47 AM | |
| 1 | 12-08-2014 09:58 AM | |
| 1 | 05-05-2015 10:19 AM | |
| 1 | 07-30-2015 08:43 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|