POST
|
A KML node can't belong to multiple containers such as KML folders or KML documents. Before adding a node to a new document you have to remove it from its initial document.
... View more
10-12-2020
03:54 AM
|
1
|
0
|
120
|
POST
|
There is no direct API allowing to create a KML dataset or a KML layer from a stream. You have to create a temporary file from your stream and to create the KML dataset/layer from this file.
... View more
03-06-2020
05:46 AM
|
0
|
0
|
71
|
POST
|
Thanks for your feedback. Unfortunately we don't support KML photo overlays yet. I'll forward your request to the team. Happy New Year.
... View more
01-02-2019
04:02 AM
|
0
|
0
|
23
|
POST
|
By default the map scale range is set with the scale range of the first layer. This prevent from zooming at a scale where no layers are visible. You can change this behavior by setting explicitely the min/max scale of the map.
... View more
11-24-2016
09:54 AM
|
1
|
1
|
24
|
POST
|
It doesn't seem that your underlying service is a WMS service. Looks like it's a tiled layer with tiles exposed as png image e.g.: http://185.8.172.26/statics/Map/13/5255/3221.png To display it through the ArcGIS Runtime SDK for WPF you can use the WebTiledLayer provided by the toolkit. Though if you are creating a new application, I would recommend you to use the new ArcGIS .Net SDK, a WebTiledlayer is also provided by this SDK (sample)
... View more
11-26-2015
01:56 AM
|
0
|
0
|
37
|
POST
|
Strange. The behavior is as if the server was not registered to use the OAuthAuthorizationCode workflow. Could you post a simple repro case. I'll test my side. Thanks.
... View more
06-04-2015
01:07 AM
|
0
|
2
|
83
|
POST
|
Actually it's likely because you didn't set the RedirectUri (sorry I should have noticed that earlier) Try OAuthClientInfo = new OAuthClientInfo() { ClientId = "xxxxxx", RedirectUri = "urn:ietf:wg:oauth:2.0:oob" }, Note: ClientSecret is optional
... View more
06-04-2015
12:30 AM
|
0
|
4
|
83
|
POST
|
var cred = await IdentityManager.Current.GetCredentialAsync(credRequest, true); This should work. Does the OAuth authorization page show up? var cred = await IdentityManager.Current.GenerateCredentialAsync(portalServerUrl, "user", "pass"); AutorizationCode OAuth workflow doesn't support setting the user and password by the API. Password and access authorization must be explicitly validated by the user. Though you can use GenerateCredentialAsync without specifying the user/password. var cred = await IdentityManager.Current.GenerateCredentialAsync(portalServerUrl); In this case, you should see the authorization page.
... View more
06-04-2015
12:08 AM
|
0
|
6
|
83
|
POST
|
You can use the SelectedItems property which returns the list of selected items.
... View more
05-13-2015
06:36 AM
|
0
|
0
|
38
|
Online Status |
Offline
|
Date Last Visited |
12-16-2020
05:25 AM
|