POST
|
I have created three feature services that get updated every hour and one has over 30,000 features. When I set the timezone in the service parameter to PST since the date/time field is in PST the web service is super slow to load if at all. When I don't set the timezone the map service is fast. Is there a particular date/time format that ArcGIS Server/Enterprise is looking for to speed things up?
... View more
10-06-2020
08:27 AM
|
0
|
0
|
57
|
POST
|
Has anyone found a way to disconnect users from an ESRI SDE database? I have been through all of the geoprocessing tasks and environment settings as well as the ESRI.ArcGIS.Geodatabase interfaces and I can't find anything similar to the arcpy command arcpy.DisconnectUser("database.sde", "All"). Does anyone have a code example to disconnect users since my entire geoprocessing console app is finished except for kicking users out of the database. I can't even find a set to single user mode.
... View more
03-13-2019
04:12 PM
|
0
|
0
|
104
|
POST
|
We are getting ready to set up ArcGIS Monitor and I am curious how many servers are needed for a basic centralized deployment. According to the documentation it looks like only one or two servers is needed. One for the Monitor Service and one for the DB, the monitor administrator, monitor server and the reporting server. Is that correct? Can everything be on one 8 core VM? I am a bit confused looking at the document here. Deployment scenarios—ArcGIS Monitor | ArcGIS Enterprise
... View more
12-13-2018
05:22 PM
|
0
|
3
|
250
|
POST
|
I am having an issue registering any dataset in my SDE database. I was able to register as versioned two days ago and now both the register as versioned and unregister as versioned option is greyed out. The only thing I can think of is I turned on Archiving on the datasets. However its weird that one day I could register and now I can't I am thinking its permissions but I have used that database connection info since I set the SDE up.
... View more
03-20-2018
05:52 PM
|
0
|
3
|
1419
|
POST
|
Hello all, I am having issues showing a picture from a url in a field. I am trying to show the image when a user clicks on the feature and the infowindow opens. I can get a link to show up on the infowindow and then if I click on the link the image opens. I want the picture to open without clicking on the link in the infowindow. It seems easy when you type the url to the image but when the url is dynamic based on which feature the user clicks it only brings up the hyperlink to the image. < !DOCTYPE html > < html > < head > < meta charset ="utf-8"> < meta name ="viewport" content ="initial-scale=1,maximum-scale=1,user-scalable=no"> < meta name ="description" content ="[Get started with popups - 4.2]"> < title > Get started with popups - 4.2 </ title > < style > html , body , #viewDiv { padding : 0 ; margin : 0 ; height : 100% ; width : 100% ; } #instruction { z-index : 99 ; position : absolute ; top : 15px ; left : 50% ; padding : 5px ; margin-left : -175px ; height : 20px ; width : 350px ; background : rgba(25, 25, 25, 0.8) ; color : white ; } </ style > < link rel ="stylesheet" href =" https://js.arcgis.com/4.2/esri/css/main.css "> < script src =" https://js.arcgis.com/4.2/ "></ script > < script > require([ "esri/tasks/Locator" , "esri/Map" , "esri/views/MapView" , "esri/layers/FeatureLayer" , "dojo/domReady!" ], function ( Locator, Map, MapView, FeatureLayer ) { // Create the Map var map = new Map({ basemap: "streets-navigation-vector" }); // Create the MapView var view = new MapView({ container: "viewDiv" , map: map, center: [-122.30, 47.83], zoom: 12 }); var template = { title: "Lynnwood Traffic Camera" , content: [{ type: "fields" , fieldInfos: [{ fieldName: "html" }] }] //content: "Traffic View: {html}" }; // City of Lynnwood Traffic Cameras. var featureLayer = new FeatureLayer({ url: " http://services2.arcgis.com/W2b0jYHWnOivta60/arcgis/rest/services/lynnwood_traffic_cameras/FeatureServer/0 " , outFields: [ "*" ], popupTemplate: template }); map.add(featureLayer); /******************************************************************* * This click event sets generic content on the popup not tied to * a layer, graphic, or popupTemplate. The location of the point is * used as input to a reverse geocode method and the resulting * address is printed to the popup content. *******************************************************************/ }); </ script > </ head > < body > < div id ="viewDiv"></ div > <!--<div id="instruction">Click any location on the map to see its street address</div>--> </ body > </ html >
... View more
01-10-2017
03:24 PM
|
0
|
1
|
2147
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:25 AM
|