POST
|
Hi There, One of our users upgraded to ArcGIS 10.5 and after upgrade direct connect to SDE stopped working. I am curious if there are any other users noticing this issue. Here is the screenshot of the error. Our oracle version is 11.2.0.3. Appreciate any feedback. Thanks Jay
... View more
01-13-2017
10:02 AM
|
0
|
2
|
1878
|
POST
|
Hi There, I have a WPF app that loads an HTML page using default WebBrowser Control, noticed that Pan/Rotate functionality doesn't work with Version 4.0/4.1. I wanted to check and see if anyone else came across this issue. As a test, I tried loading some of the ESRI samples (no custom code) and I still see this issue. Appreciate any feedback. Thanks Jay Snippet public MainWindow() { InitializeComponent(); MapBrowser.Navigate(new Uri("http://index.html")); MapBrowser.LoadCompleted += MapBrowserOnLoadCompleted; } private void MapBrowserOnLoadCompleted(object sender, NavigationEventArgs navigationEventArgs) { Debug.Write(sender); MapBrowser.Refresh(); }
... View more
11-28-2016
09:33 AM
|
0
|
0
|
945
|
POST
|
Hi All, As part of my application, I add graphics to a map for a list of features that meet criteria (in cyan). User can select a single record from a list. Application logic adds another graphic for selected record (callout in red). If user click on another record, I want to remove the previously added graphics (red callout) while still maintaining my graphics for original list (in cyan). Is there way I can get handle of graphics that was last added, graphics below shows this scenario. Appreciate any feedback. Thanks Jay
... View more
09-19-2016
10:32 AM
|
0
|
1
|
1089
|
POST
|
Hi Thejus, The init function was out of require block and that was causing this issue, it's all good now. Thanks for your help. Jay
... View more
08-31-2016
03:01 PM
|
0
|
0
|
587
|
POST
|
Hi All, I am getting this error while implementing map/legend in an existing ASP.NET application. As a proof of concept, I have a section on the page that shows map with the control. While debugging in IE in Visual Studio 2013 I get this error but Google chrome handles it without any problems. Appreciate any feedback. Thanks Jay ArcGIS API for JavaScript Sandbox
... View more
08-31-2016
11:08 AM
|
0
|
2
|
2006
|
POST
|
Hi Folks, I am trying to implement Legend widget and looking to add some custom behavior to this widget. I want to limit the legend to only show legend for the items that are in the visible on the map. In the example below, for the current extent, legend should only show Lagoon as part in the Legend list. I wanted to know if legend widget can be modified to implement this behavior. Thanks in advance. Jay Map with legend
... View more
08-29-2016
10:42 AM
|
1
|
0
|
996
|
POST
|
Thanks all for the helpful comments...will try and implement these suggestions. Thanks again.
... View more
08-29-2016
10:11 AM
|
0
|
0
|
676
|
POST
|
Hi Michael, In our case, data is coming from sde. The time to publish the service in 10.3 (from service definition) takes only 12 seconds.You are right, with File GDB, I didn't notice any difference. I came across this on Geonet: Why would services would take 100x longer to publish in 10.4 vs 10.2.
... View more
07-05-2016
12:37 PM
|
0
|
2
|
1988
|
POST
|
Thanks Michael for your comments. Looking at network traffic, seems like 10.4 shows way more traffic than 10.3 (130/30). With 100+ layers, it explains why publishing is taking lot longer. I also noticed there is a bug reported in April, 2016 with ESRI support: Bug BUG-000096095
... View more
07-04-2016
01:36 PM
|
1
|
1
|
1988
|
POST
|
Hi There, I am having some issues with publishing map services for ArcGIS 10.4 server machine that I recently upgraded. Here are some additional details: Map service has large number of layers (100 feature classes) Created sd file successfully Publishing creates E:\arcgisserver\directories\arcgissystem\arcgisinput\TEST2\TEST_MapService.MapServer but still missing manifest.json Don’t see any errors in the log, with verbose log setting, see no errors there. From GP error log (ArcGIS Desktop), it shows that GP svc failed after an hour so I increased the The maximum time a client can use a service to 2 hours, hoping this helps. I would still like to know what Is taking the time, appreciate any suggestions. Here are some screenshot.
... View more
06-27-2016
11:22 AM
|
0
|
6
|
5589
|
POST
|
Hi All, I am exploring Visual Studio Code as an IDE option for web development and wanted to see if there are any resources to get started. I checked JSAPI 3.16 page and it doesn't list VS Code as an IDE option. Set up a development environment | API Reference | ArcGIS API for JavaScript Appreciate any feedback. Thanks Jay
... View more
06-15-2016
09:26 AM
|
0
|
2
|
3928
|
POST
|
Hi There, I am having an odd issue. I have created WAB application and wanted to add some some widgets in Dev version. Somehow WAB dev builder doesn't show the layers from dynamic web service. These are steps that I have done so far: - From portal interface within our firewall, created webmap, WAB app, shared the map with everyone. - I registered the app via portal interface. - From WAB dev edition, imported from my account, import was successful - When I go to edit the app, it shows a progress bar and then it only show base map, no operational layers. There is another progress bar that shows spinning lower right corner. I have tried various themes, browsers (Chrome, IE, Firefox). I am not sure if I am missing something obvious, appreciate any help. Thanks Jay
... View more
06-13-2016
12:49 PM
|
0
|
0
|
1268
|
POST
|
Hi There, I have SOE solution that I am upgrading from 10.3.1 to 10.4.1 in Visual Studio 2013. Solution builds fine but it doesn't create SOE. I did find a post with similar issue but the fixed described there doesn't work in my case, Appreciate any suggestions. 10.2 and VS 2012 - Wont Create SOE file <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath)\ESRI\ESRI.ArcGIS.AddIns.Server.11.targets" Condition="Exists('$(MSBuildExtensionsPath)\ESRI\ESRI.ArcGIS.AddIns.Server.11.targets')" />
... View more
06-03-2016
10:40 AM
|
0
|
1
|
3500
|
POST
|
Hi There, I am trying to do a query and check for a geometry that is not null, what is the best way to do this check. I tried to use x property and see if I could filter out value with Nan but this doesnt work. Appreciate any feedback. Thanks Jay shSrcLayer.queryFeatures(query, function (fs) {
shSrcGLFS = fs;
if (shSrcGLFS.features.length > 0) {
shSrcGLgeom = shSrcGLFS.features[0].geometry;
//alert("shSrcGLgeom: " + shSrcGLgeom.x + "," + shSrcGLgeom.y);
}
});
var mp = new Multipoint(new SpatialReference({ wkid: 3857 }));
if (shSrcGLgeom .x !== 'NaN') {
mp.addPoint(shSrcGLgeom );
}
... View more
05-09-2016
01:07 PM
|
0
|
1
|
1568
|
Title | Kudos | Posted |
---|---|---|
1 | 07-04-2016 01:36 PM | |
1 | 08-29-2016 10:42 AM |
Online Status |
Offline
|
Date Last Visited |
02-18-2021
05:23 PM
|