POST
|
All the Geoprocess Service on my ArcGIS Server are not running properly. For example, when I click the PrintingTools under Utilities, I got the following error, Error: Error handling service request : Could not initialize service 'Utilities/PrintingTools.GPServer'. Code: 500 Then, I went to ArcGIS Server Manager and tried to restart the PrintingTools (Geoprocessing Service), I got the following error, Service failed to start Utilities.PrintingTools.GPServer: RMMS-SERVER13.AD.UILLINOIS.EDU Service containing process crashed for 'Utilities/PrintingTools.GPServer'.Please see if an error report was generated in 'C:\arcgisserver\logs\RMMS-SERVER13.AD.UILLINOIS.EDU\errorreports'. To send an error report to Esri, compose an e-mail to ArcGISErrorReport@esri.com and attach the error report file. I further opened the error report and here is the summary, Did anyone see the similar issue before? Please help!
... View more
04-29-2018
10:19 PM
|
0
|
1
|
2567
|
POST
|
Thanks Jeff! I will have a look at the source code to see what I can do further.
... View more
11-19-2013
03:20 PM
|
0
|
0
|
317
|
POST
|
I have been using the TOC provided by nliu, http://gmaps-utility-gis.googlecode.com/svn/tags/agsjs/latest/examples/toc.html It's a really nice feature. I noticed that the layer hierarchy is based on Map Service on REST service. But in case that I have two map services from different resources that one of them is belonged to another. In other words, I do not want the two map services on the same level of hierarchy. For example, in the attached figure, I want all the layers in DynamicMapServiceLayer2 under DynamicMapServiceLayer 1 group. Can I implement this when rendering TOC? [ATTACH=CONFIG]29116[/ATTACH] A further explanation, I want the layers and symbology of DynamicMapServiceLayer2 to be consumed under/blended with the DynamicMapServiceLayer 1 groups so that I have a single TOC categorized with group layers -- and those groups include a variety of rest sources - local and remote. Does anyone have the similar issue before? Thanks!
... View more
11-14-2013
08:11 AM
|
0
|
2
|
727
|
POST
|
Hi, I was trying to export map using Export Web Map Task, but I don't know how can I specify the map object in Web_Map_as_JSON format. Anyone has solutions? Or is there a better way to export the map(including all types of layers)? Thanks!
... View more
09-20-2013
02:07 PM
|
0
|
4
|
1832
|
POST
|
I want to use setScale method to set the map scale to certain value. But it seems my map scale only have several values(e.g. 1000, 2000, 4000, 8000, 16000, 32000, 64000...). Then whey I tried to set scale to 5000, it only can set to nearest one, 4000. The layer I loaded on the map contains only a dynamic map service layer. Any suggestions? Thanks!
... View more
02-28-2013
06:40 PM
|
0
|
0
|
566
|
POST
|
I noticed that the maps in 3.3 can auto-resizes, but I'm not sure how it works. I want to make sure the the map is resized when user change size of the browser. Here is my test code, I set the autoResize attribute but it doesn't work. Anyone can help? Thanks! <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=7,IE=9">
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/>
<title>Simple Map</title>
<link rel="stylesheet" href="http://serverapi.arcgisonline.com/jsapi/arcgis/3.3/js/dojo/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="http://serverapi.arcgisonline.com/jsapi/arcgis/3.3/js/esri/css/esri.css">
<style>
html, body, #map {
height:100%;
width:100%;
margin:0;
padding:0;
}
body {
background-color:#FFF;
overflow:hidden;
font-family:"Trebuchet MS";
}
</style>
<script src="http://serverapi.arcgisonline.com/jsapi/arcgis/3.3/"></script>
<script>
dojo.require("esri.map");
var map;
function init() {
map = new esri.Map("map", {
autoResize: true
});
var dynamicMapServiceLayer = new esri.layers.ArcGISDynamicMapServiceLayer("http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Demographics/ESRI_Population_World/MapServer");
map.addLayer(dynamicMapServiceLayer);
}
dojo.ready(init);
</script>
</head>
<body class="claro">
<div id="map"></div>
</body>
</html>
... View more
02-04-2013
08:23 AM
|
0
|
1
|
745
|
POST
|
In 3.3, switching between different base maps can be done by setBasemap() function. But if I want to add an option---set the base map to none, is it still possible to use that function? Or is there any better way I can do that? My code is like this, map = new esri.Map("map", { basemap: "streets", extent: initExtent, }); How can I write the code to turn off the base map, and another code to turn on later? Thanks in advance.
... View more
01-22-2013
11:04 AM
|
0
|
2
|
2753
|
POST
|
With Class LayerDrawingOptions, I can now change the rendering of a dynamic layer. The question is, instead of changing the rendering of all features (all polygons if it is a polygon layer), can I just change part of them? For example, keep the one clicked by user unchanged, and then change the rendering for all the rest.
... View more
12-03-2012
07:45 PM
|
0
|
0
|
579
|
POST
|
I have a feature layer with polygons. And I create a spatial query task to query the polygon which contains the point clicked by the user on the map (similar as identify). In this case, I can specify the spatial relation as SPATIAL_REL_INTERSECTS. Now instead of querying the polygon contains the clicked point, I want to query all the rest polygons(the polygons do not contains the point). I think I might need to use Shape Comparison Language to specify a new type of spatial relation, just a point to polygon relation opposite to SPATIAL_REL_INTERSECTS. I know I should start with SPATIAL_REL_RELATION, but I have no idea the following steps. Anyone can help me? Or is there any other possible solutions to that problem? Thanks in advance.
... View more
12-02-2012
09:03 PM
|
2
|
2
|
725
|
Title | Kudos | Posted |
---|---|---|
2 | 12-02-2012 09:03 PM |
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:24 AM
|