|
POST
|
There is nothing out of the box fro displaying local shapefiles in an ArcGIS SL app. You might take a look at this project: http://esrislcontrib.codeplex.com/ which includes an utility to load shapefile from the computer. But I didn't test it recently so not sure it's still up to date. However, if you have lot of data in your shapefiles it would be more performant to render them through map service at server side.
... View more
01-26-2015
11:38 PM
|
1
|
3
|
899
|
|
POST
|
There are a few time slider samples in the interactive SDK. For example the Map Service - TimeSlider sample.
... View more
01-18-2015
11:59 PM
|
0
|
0
|
970
|
|
POST
|
The security Policy file is needed on the target server, not on the server hosting the application (however this can't hurt). It's why I asked you about the URL of your Locator server (or of the server the queries fail). You might also run into a cross zone access issue if the target server is in a more restrictive zone than your SL application server.
... View more
01-15-2015
11:15 AM
|
0
|
3
|
955
|
|
POST
|
Do you mean that your project was working well in development and is no more working after deployment? What is the URL of your Locator? is there a crossdomain.xml or clientaccesspolicy.xml at the root of your Locator site?
... View more
01-15-2015
08:48 AM
|
0
|
6
|
1908
|
|
POST
|
You are right that a change in .Net API: you need to create one layer by cell. There is no performance penalty since behind the scene in WPF a group layer with one sublayer by cell was created as well. You'll try to fix the documentation in a next version.
... View more
01-13-2015
01:35 AM
|
0
|
2
|
1476
|
|
POST
|
You have to initialize the Values with an observable collection of values that match with your observable collection of fields (i.e you have to define the symbol for each combination of FoodStyle and Rating) Something like: var info1 = new Esri.ArcGISRuntime.Symbology.UniqueValueInfo(); info1.Symbol = chineseRating8Sym; info1.Values = new System.Collections.ObjectModel.ObservableCollection<object>(new object[] { "Chinese" , 8.0}); Note that you can't use the UniqueValueInfo constructor to initialize the values collection (I agree it's weird)
... View more
01-13-2015
12:50 AM
|
2
|
0
|
969
|
|
POST
|
François, Strange. I tweaked the Legend sample in the interactiveSDK to set a French display name for the local dynamic map service layer and I didn't notice any issue: I tested by setting the DisplayName in XAML and in C#. Both work. Note: In you sample I don't get what is 'ArcGISLocalDymanicMapService'? Shouldn't be 'ArcGISLocalDymanicMapServiceLayer'? /Dominique
... View more
01-12-2015
11:27 AM
|
0
|
0
|
2031
|
|
POST
|
The easiest way is to activate the IdentityManager with the SignInDialog provided in the toolkit. Put the following line at application startup: ESRI.ArcGIS.Client.IdentityManager.Current.ChallengeMethod = ESRI.ArcGIS.Client.Toolkit.SignInDialog.DoSignIn; In this case the user will get challenged when an authorization error is intercepted by the Identity manager.
... View more
01-12-2015
08:48 AM
|
0
|
0
|
2150
|
|
POST
|
Error '499' means that your service is secured and you need a token to access it. Can you still access to your services through a browser?
... View more
01-12-2015
08:20 AM
|
0
|
3
|
2150
|
|
POST
|
The WPF controls localization is not driven by the current culture but by the language property of the controls. As noticed by Jennifer, a WPF application that wants to use by default the user current culture can execute this code at startup of the application: FrameworkElement.LanguageProperty.OverrideMetadata(typeof(FrameworkElement), new FrameworkPropertyMetadata(XmlLanguage.GetLanguage(CultureInfo.CurrentCulture.IetfLanguageTag))); That will set correctly the language property of all controls instantiated in your application. However, despite, this setup some strings won't be automatically localized: - strings defined in XAML (for example "ClearSelection" or "Switch Selection" in FeatureDataGrid): the localization must be done by creating a custom template with the strings translated. - strings coming from the data or from the service: the localization must be done at server side (for example what you mean by 'I am currently not able to set the layer name in French for instance' ?)
... View more
01-12-2015
08:13 AM
|
0
|
0
|
2031
|
|
POST
|
If it's a design time only problem (i.e your project executes correctly) it might be a cache issue. Try cleaning up your project and rebuilding it.
... View more
01-08-2015
12:33 AM
|
0
|
0
|
795
|
|
POST
|
There is a UniqueValueRenderer sample in the SDK that demonstrates how to build a UniqueValueRenderer by code. Basically: - instantiate a UniqueValueRenderer object - set the Fields collection with the fields that participate to the renderer - set the Infos collection with the set of { values, symbol}
... View more
01-08-2015
12:23 AM
|
0
|
3
|
2275
|
|
POST
|
A reference to System.Runtime.Serialization has to be added manually to your project. See an answer to a similar issue: Re: Could not load file or assembly 'System.Runtime.Serialization, Version=2.0.5.0
... View more
01-08-2015
12:04 AM
|
1
|
4
|
1802
|
|
POST
|
Oh Sorry, I read too quickly your message and I missed the keyword 'native'. For now the compilation with the .Net Native chain is not supported. We'll investigate the possibility to support it for a future version. Though the ArcGIS runtime core components are already native (C++) so we can't expect much performance enhancements by using .Net Native.
... View more
01-05-2015
12:27 AM
|
0
|
0
|
901
|
|
POST
|
I was able to compile and run the store SDK samples using VS2015 preview. So I guess you run into a specific issue. Could you give more info about the line in your code that generated this compile error?
... View more
12-31-2014
02:32 AM
|
0
|
2
|
901
|
| 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
|