POST
|
I need to automatize the process of rebuild scene layer cache.I notice that when you click on "Rebuild Cache" button into a SceneLayer Portal item, Portal application make a request to the following url: http://<ags_server>/arcgis/rest/services/System/SceneCachingControllers/GPServer/Manage%20Scene%20Cache I'm looking for documentation about this service, but I haven't found anything. I tried to make a request, using python httplib, but it seems that it's necessary to put some cookie information. Dou you know if it is possible?
... View more
06-05-2019
08:21 AM
|
1
|
1
|
717
|
POST
|
Hello Steve Maskol, Did you solve your problem? Could you share it with us? Regards, Daniel
... View more
05-29-2019
01:03 AM
|
0
|
10
|
5551
|
BLOG
|
Thank you Randall Williams But when you said "Esri Mobile apps can leverage MFA with ArcGIS Online" means that Esri Mobile apps can leverage MFA with Portal for ArcGIS (configured using SAML provider)? I have not found anything about it in Trust Center Documentation. Thank you very much
... View more
01-16-2019
02:14 AM
|
0
|
0
|
3999
|
BLOG
|
This is very interesting, but I have 2 doubs about it: Is it posible to configure multi-factor authentication in Portal for ArcGIS? Can ArcGIS mobile apps (Explorer for ArcGIS and Data Collector for ArcGIS) connect to ArcGIS Online or Portal for ArcGIS protected by multi-factor authentication? Thanks in advanced
... View more
01-14-2019
12:48 AM
|
0
|
0
|
3999
|
POST
|
Good News!!! 3.15 API version solve this issue. You can test it in this jsfiddle ESRI JS API 3.15 - JSFiddle Thank's to all. Daniel
... View more
12-02-2015
01:04 AM
|
1
|
1
|
619
|
POST
|
I recommend you to use QueryTask Object, but if you want to use esriRequest, you can specify a spatial clause using geometryType and geometry params geometryType=esriGeometryEnvelope&geometry=<xmin>,<ymin>,<xmax>,<ymax> var qrequest = esriRequest({
url : test_url,
content : {
where : "objectid > 0",
returnGeometry : true,
outFields : "name",
outSR : configuration.wkid,
geometryType: "esriGeometryEnvelope",
geometry: "<xmin>,<ymin>,<xmax>,<ymax>"
f : "json"
},
handleAs : "json",
callbackParamName : 'callback'
}); Regards
... View more
10-27-2015
02:06 AM
|
3
|
1
|
760
|
POST
|
No, In this jsfiddle (Bug Navigation Mode - JSFiddle ) use mouse wheel to do zoom in and zoom out and look at the texts. They have been accumulated in the map.
... View more
10-26-2015
10:57 PM
|
1
|
1
|
619
|
POST
|
Thank you Ken, but in this case this only happends when you set zoomDuration and zoomRate to 0. Regards
... View more
10-26-2015
10:10 AM
|
0
|
0
|
958
|
POST
|
As I said recently, If you put these lines into your application you can avoid this behavior... esriConfig.defaults.map.zoomDuration = 0;
esriConfig.defaults.map.zoomRate = 0; But I have found another ralated bug. If you have a ArcGISTiledMapServiceLayer on top of a base map layer... this tile layer dont draw correctly. You can check this behaviour in this jsfiddle Bug Navigation Mode - JSFiddle In order to solve this, you should set mapNavigation to "classic" map = new Map("map", {
basemap : "gray",
center : [-122.45, 37.75], // longitude, latitude
zoom : 1,
navigationMode: "classic"
}); Regards
... View more
10-26-2015
07:44 AM
|
0
|
5
|
958
|
POST
|
I think you should hurry up to launch 3.15 version, because many people use this api with chrome browser. At this moment, based in Christopher answer, I put this piece of code into my application require(["dojo/ready", "esri/config", "dojo/has", "dojo/sniff"], function (ready, esriConfig, has, sniff) {
ready(80, function () {
if (has("chrome")>45) {
esriConfig.defaults.map.zoomDuration = 0;
esriConfig.defaults.map.zoomRate = 0;
}
});
}); Thanks to all Daniel EDIT: Chrome version > 45
... View more
10-21-2015
06:00 AM
|
1
|
0
|
958
|
POST
|
I was playing with some of these properties but it doesn't work. navigationMode: 'classic', optimizePanAnimation: true, displayGraphicsOnPan: false, I think this is a very serious problem, because chrome takes all memory available and hangs the computer. All ESRI Javascript users are potencial victims.
... View more
10-19-2015
11:25 PM
|
0
|
2
|
1457
|
POST
|
When I execute centerAndZoom method or other method that change zoom level from high level like 19 to low level like 2, application hangs taking a lot of memory (up to 1,5 Gb). You can test it with this simple jsfiddle... https://jsfiddle.net/dgarcrom/1dbvjqyx/ This not happend with IE, it's happend with Chrome 46.0.2490.71. Any ideas?? Thank you.
... View more
10-19-2015
11:41 AM
|
0
|
35
|
9352
|
POST
|
Hi Brandon, This is the same question... Disable KML option support by Default on Map Service ...but... there is no answer... Regards Dani
... View more
03-11-2015
02:11 AM
|
0
|
0
|
229
|
POST
|
Hi Matt, That is not posible. ArcGIS Server use the user account defined in the installation progress (tipically arcgis account) to access data resources. Regards Daniel
... View more
03-11-2015
02:03 AM
|
0
|
0
|
356
|
Title | Kudos | Posted |
---|---|---|
1 | 06-05-2019 08:21 AM | |
1 | 10-21-2015 06:00 AM | |
1 | 12-02-2015 01:04 AM | |
3 | 10-27-2015 02:06 AM | |
1 | 10-26-2015 10:57 PM |
Online Status |
Offline
|
Date Last Visited |
07-12-2024
12:47 PM
|