POST
|
Is you Portal federated with ArcGIS Server? Which URL do you use for your print service? If you go to Organization -> Edit settings -> Utility services, you can check your print service url. If your server is federated with portal you will probably have https://<name.yourdomain.com>/<server web adaptor>/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task and a corresponding PrintingTools Item in your content. Make sure that the item is shared to everyone, so that it does not require a named user to access it.
... View more
03-20-2019
02:56 AM
|
0
|
2
|
955
|
POST
|
Hello, I am not sure if it will work, but one thing that you could try is setting the WebContextUrl of your portal to the alias URL. Sign in to the ArcGIS Portal Directory as a member of the default administrator role in your portal organization. The URL is formatted https://portal.domain.com:7443/arcgis/portaladmin. Click System > Properties > Update Properties. On the Update System Properties dialog box, insert the following JSON, substituting your DNS alias URL { "WebContextURL": "<alias>" }
... View more
03-20-2019
02:25 AM
|
0
|
0
|
865
|
POST
|
Was your portal upgraded ok and the error only appears in Data Store upgrade? Better check the data store log files to see if there is a more specific message than the one that appears on your screen. In my case the log file stated different collate values and when I changed the Windows region to match the initial db collation value, the upgrade completed successfully.
... View more
08-30-2018
01:01 AM
|
0
|
0
|
1743
|
POST
|
I also had the same problem when trying to upgrade from 10.5.1 to 10.6.1, I got the error message "com.esri.arcgis.portal.admin.core.site.migration.MigrationException: Failed to upgrade the PostgreSQL from 9.3.12 to 9.6.8.".After checking the portal logs, I saw that "lc_collate values for database "postgres" do not match: old "English_United States.1252", new "Greek_Greece.1253". So I guessed that maybe when the first installation was done, the Windows language settings were different, so from Windows Control Panel -> Clock, Language and Region -> Region, I changed the format to English(United States), performed the portal upgrade operation again and it completed ok.
... View more
08-28-2018
12:37 AM
|
2
|
4
|
1743
|
POST
|
Hello Martin, you can include "dojo/i18n!esri/nls/jsapi" and then in your function declare the following, where in the string translation, you define the corresponding Slovenian one. esri.bundle.widgets.measurement.NLS_area = "translation"; esri.bundle.widgets.measurement.NLS_area_acres = "translation"; esri.bundle.widgets.measurement.NLS_area_sq_feet = "translation"; esri.bundle.widgets.measurement.NLS_area_sq_kilometers = "translation"; esri.bundle.widgets.measurement.NLS_area_hectares = "translation"; esri.bundle.widgets.measurement.NLS_area_sq_meters = "translation"; esri.bundle.widgets.measurement.NLS_area_sq_miles = "translation"; esri.bundle.widgets.measurement.NLS_area_sq_yards = "translation"; esri.bundle.widgets.measurement.NLS_length_kilometers = "translation"; esri.bundle.widgets.measurement.NLS_distance = "translation"; esri.bundle.widgets.measurement.NLS_length_feet = "translation"; esri.bundle.widgets.measurement.NLS_length_meters = "translation"; esri.bundle.widgets.measurement.NLS_length_miles = "translation"; esri.bundle.widgets.measurement.NLS_length_yards = "translation"; esri.bundle.widgets.measurement.NLS_resultLabel = "translationΜέτρησης:"; esri.bundle.widgets.measurement.NLS_decimal_degrees = "translation"; esri.bundle.widgets.measurement.NLS_latitude = "translation"; esri.bundle.widgets.measurement.NLS_location = "translation"; esri.bundle.widgets.measurement.NLS_longitude = "translation"; You can also see the following guide for your reference: Localization | Guide | ArcGIS API for JavaScript
... View more
02-11-2016
04:33 AM
|
1
|
0
|
706
|
POST
|
You can try something like the following example.If the dynamic service has different projection than web mercator, it will be reprojected on the fly. <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <!--The viewport meta tag is used to improve the presentation and behavior of the samples on iOS devices--> <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"> <title>Create Map and add a dynamic layer</title> <link rel="stylesheet" href="http://js.arcgis.com/3.10/js/esri/css/esri.css"/> <style> html, body, #mapDiv{ padding: 0; margin: 0; height: 100%; } </style> <script src="http://js.arcgis.com/3.10/"></script> <script> var map; require([ "esri/map", "esri/layers/ArcGISDynamicMapServiceLayer", "esri/layers/ImageParameters" ], function ( Map, ArcGISDynamicMapServiceLayer, ImageParameters) { map = new Map("mapDiv", { basemap: "streets", center: [-83.244, 42.581], zoom: 15 }); var imageParameters = new ImageParameters(); imageParameters.format = "jpeg"; //set the image type to PNG24, note default is PNG8. //Takes a URL to a non cached map service. var dynamicMapServiceLayer = new ArcGISDynamicMapServiceLayer("http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Demographics/ESRI_Population_World/MapServer", { "opacity" : 0.5, "imageParameters" : imageParameters }); map.addLayer(dynamicMapServiceLayer); }); </script> </head> <body> <div id="mapDiv"></div> </body> </html>
... View more
09-11-2014
02:15 PM
|
0
|
0
|
500
|
POST
|
hi Antigoni Koffa is it possible to remove some of measures in the area ,length dropbox ? we dont use hectares , or feet. Hi, I have also searched if it is possible to do that but i haven't found a way yet. If i manage to do it, i will keep you informed.
... View more
01-25-2013
03:09 AM
|
0
|
0
|
706
|
POST
|
Hi all ! @saroussi To answer your second question about eliminating the location button measurement.hideTool("location"); where measurement is the variable used for the declaration of the widget.
... View more
11-22-2012
02:44 AM
|
0
|
0
|
706
|
Title | Kudos | Posted |
---|---|---|
1 | 02-11-2016 04:33 AM | |
2 | 08-28-2018 12:37 AM |
Online Status |
Offline
|
Date Last Visited |
a month ago
|