POST
|
In ArcGIS Portal 10.5 you have to modify also Widget.js and Print.js file located in one of folders: C:\Program Files\ArcGIS\Portal\apps\webappbuilder\stemapp\widgets\Print\Print.js C:\Program Files\ArcGIS\Portal\apps\webappviewer\widgets\Print\Print.js Search for 'dpi' and find something like in picture below: Regards, Kuba
... View more
09-12-2018
01:09 AM
|
0
|
0
|
2010
|
POST
|
I'm working with set of feature classes on professional geodatabase with all sweets from ESRI like versioning and archiving enabled on it. Using Feature Class to Feature Class would erase all historical data and working version, so it's not an option for me. Why feature service cannot keep field order from MXD like map service is already doing? Without this my web application could't use field order directly from feature service like the same way it is using field visibility or field read-only state. So I have to hard-code field order in my application instead of leave this for our GIS professionals.
... View more
07-19-2018
10:29 AM
|
1
|
1
|
1564
|
POST
|
I have ArcGIS Server 10.5.1 + ArcGIS Data Store. Validating data stores in ArcGIS Server manager caused no issue for Tile Cache (ArcGIS_Data_Store) and caused red exclamation mark for Managed database (ArcGIS_Data_Store). It was strange because both of them was located on the same Data Store. I checked AGS logs and there was information about missing host in pg_hba.conf file: So I added line host all all fe80::70f5:34f2:f9b5:1d78/96 md5 to my pg_hba.conf file located in E:\arcgisdatastore\pgdata folder. Maybe this helps someone.
... View more
04-04-2018
01:24 AM
|
0
|
0
|
3723
|
POST
|
I have the same issue. It happens irregular, so it's hard to debug. My console output: Uncaught TypeError: Cannot read property '_getInfo' of undefined at Map._getFrameWidth (init.js:578) at Map._setClipRect (init.js:617) at Map.onResize (init.js:598) at Object.advice (init.js:119) at Map.c [as onResize] (init.js:119) at Map._resize (init.js:616) at Map._execResize (init.js:614) at Map._execResize (init.js:63) at Map._timedResize (init.js:614) at init.js:63 https://js.arcgis.com/3.23/init.js
... View more
02-26-2018
12:17 PM
|
2
|
2
|
2922
|
POST
|
It is still present at 10.6. You can change it by setting advanced portal options (see how) and changing signup variable to something neutral, eg. signup: "index.html" Regards Kuba
... View more
02-20-2018
05:41 AM
|
0
|
0
|
1389
|
IDEA
|
ArcMap 10.5.1 actualy does automatic numbering of 'Layer ID' in Layer Properties - General tab (there is nowhere -1 value). But for a complex services, wit a lot of layers, it would be great to have a tool to set 'Layer ID' for every layer in one place (I care what the numbers actually are).
... View more
12-04-2017
02:04 AM
|
1
|
0
|
2294
|
POST
|
{"disableSignup": "true"} works only partially on my fresh install of Portal 10.5.1. There is no "Create account" on plain login page, but: In Groups section there is "Sing up now" link which is working. Entering incorrect password also allow anyone to create new account Entering link https://webadaptor.domain.com/portal/home/signup.html in the browser allow anyone to create new account at Level 2(!) With those issues we aren't able to publish our Portal to the Internet. Any solution for above issues?
... View more
09-18-2017
04:28 AM
|
1
|
2
|
1389
|
POST
|
Not true. After disabling anonymous access through Portal -> My Organization -> Edit Settings -> Security everything needs authorization. Even Home page requires login.
... View more
09-18-2017
04:10 AM
|
1
|
0
|
353
|
POST
|
There is new major release of ArcGIS Pro - 2.0. Additionally ArcGIS License Manager 10.5.1 or later is required to manage ArcGIS Pro 2.0 concurrent licenses. The copy protection mechanism for ArcGIS 10.5.1 Concurrent Use has been updated. This update requires that ArcGIS License Manager 10.5.1 be installed to support these products. Does it means changes in licensing model of ArcGIS Pro? Can anybody confirm that ArcGIS Pro supports permanent concurrent licenses?
... View more
07-06-2017
04:45 AM
|
0
|
2
|
981
|
POST
|
Kelly you are my personal hero! AMD style programming is new for me so I missed difference between define() and require(). They describing both as quite the same with one difference that define() should return value. But thanks to you Kelly now I know that define() is 'lazy' declaration and when you execute define() function nothing will happen. In order to load/run code require() is needed. I'm writing my code in TypeScript using ArcGIS JavaScript API, jQuery and jQueryMobile (because of their Sidebar Panel). When I switched to AMD style coding and move my JS script to require() method all of console errors are gone! There is my code: <!--jQuery Mobile CDN--> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" /> <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script> <!-- Non AMD/dojo MapViewer scripts--> <script src="js-mapviewer/mapviewer-init.js"></script> <!--ArcGIS CDN--> <link rel="stylesheet" href="https://community.esri.com//js.arcgis.com/3.13/esri/css/esri.css"> <script src="http://js.arcgis.com/3.13/"></script> <!-- MapViewer script (depend on ArcGIS/dojo/AMD) --> <script> require(["js-mapviewer/mapviewer-app.js"], function (mapViewer) { console.log("MapViewer application loaded."); }); </script> <!--This is error prone: <script src="js-mapviewer/mapviewer-app.js"></script> --> Thank you Kelly! Kuba
... View more
03-19-2015
01:25 PM
|
2
|
0
|
5652
|
POST
|
I give up! Tell me what's wrong with this code: <!DOCTYPE html> <html> <head> <title>Create a Map</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"> <link rel="stylesheet" href="http://js.arcgis.com/3.13/dijit/themes/claro/claro.css"> <link rel="stylesheet" href="http://js.arcgis.com/3.13/esri/css/esri.css"> <style> html, body, #mapDiv { padding: 0; margin: 0; height: 100%; } </style> <script src="http://js.arcgis.com/3.13/"></script> <script> var map; //require(["esri/map", "dojo/domReady!"], function(Map) { // map = new Map("mapDiv", { // center: [-56.049, 38.485], // zoom: 3, // basemap: "streets" // }); //}); </script> <script> define([ "require", "exports", "dojo/ready", "dojo/on", "dojo/dom-construct", "esri/config", "esri/map", "esri/graphic", "esri/symbols/PictureMarkerSymbol", "esri/layers/WMSLayer", "esri/geometry/Extent", "esri/geometry/Point", "esri/geometry/webMercatorUtils", "esri/InfoTemplate", "esri/dijit/InfoWindowLite"], function () { console.log("dojo initialized."); }); </script> </head> <body class="claro"> <div id="mapDiv"></div> </body> </html> There is nothing but loading scripts and this code produces such output: #$%&^
... View more
03-18-2015
02:54 PM
|
0
|
2
|
5652
|
POST
|
My WebMap application uses jQuery+jQueryMobile and I got the same problem. For me switching to dojo debug mode make my app working. <script> var dojoConfig = { isDebug: true }; </script> <link rel="stylesheet" href="https://community.esri.com//js.arcgis.com/3.13/esri/css/esri.css"> <script src="http://js.arcgis.com/3.13/"></script> dojoLoader error still exists but my map is loaded. See also Re: Dojo Loader error Regards Kuba
... View more
03-15-2015
12:25 PM
|
1
|
0
|
17658
|
POST
|
For esri folks: sample on esri website causes the same multipleDefine problem: http://developers.arcgis.com/javascript/samples/framework_jquery/
... View more
03-15-2015
12:18 PM
|
0
|
0
|
5652
|
POST
|
I got the same error and map was not loaded. For me switching to dojo debug mode make my app working. <script> var dojoConfig = { isDebug: true }; </script> <link rel="stylesheet" href="https://community.esri.com//js.arcgis.com/3.13/esri/css/esri.css"> <script src="http://js.arcgis.com/3.13/"></script> dojoLoader error still exists but my map is loaded. Maby this heps somebody. Good loock! Kuba
... View more
03-15-2015
12:12 PM
|
0
|
4
|
5652
|
Title | Kudos | Posted |
---|---|---|
1 | 02-23-2019 04:30 AM | |
1 | 03-15-2015 12:25 PM | |
1 | 12-22-2019 12:47 AM | |
1 | 03-19-2020 01:04 AM | |
1 | 03-19-2020 01:04 AM |
Online Status |
Offline
|
Date Last Visited |
02-03-2021
11:40 AM
|