|
POST
|
Darren, Thanks for the reply, it makes sense now, the results shows time, separately for each tool and the for running the model itself.
... View more
07-02-2015
12:10 PM
|
0
|
0
|
1278
|
|
POST
|
Hi, I want to know what are two different elapsed times at the end of the results for the same task, after the model has run. Thanks.
... View more
07-02-2015
10:16 AM
|
0
|
2
|
2601
|
|
POST
|
Mike, As for complexity of the features, it just point data, so no vertices and yes it is published on our ArcGIS server and I can ask the server administrator to look at the server logs. Do you have any suggestions who or where I can get help with the code, so I can make changes to the query to improve result and performance. Thanks.
... View more
06-10-2015
03:46 PM
|
0
|
0
|
957
|
|
POST
|
Hi Mike, I am working on a Javascript application where I have a MSD published on ArcGIS server and I am using the URL from it's REST services. I am trying to select census block points that fall within a defined buffer distance and get a summary of number of blocks and housing units. I have it working but I am not getting consistent or accurate results, especially as the number of selected features increase, either I get the unresponsive script message and when I say continue, I get results that do not match the number of blocks selected within the same buffer distance, around the same block point in ArcMap. I have the buffer circle set like this: circleBuffer = new Circle({ center: mapPoint, geodesic: true, radius: radius, radiusUnit: "esriMiles" });. I tried with changing, mode: FeatureLayer.MODE_AUTO, to ONDEMAND and SELECTION but still no difference in results. Is there some limit on how many features can be returned by the server, in the service editor while publishing has a parameter "maximum number of record returned by the server" which is set by default to 1000?, but when I change that to 2000 or higher I start getting this script error. I have attached the JS file for the application, if you can suggest any other way to build my query so I can get better results, it will be a great help. Thanks!
... View more
06-10-2015
07:46 AM
|
0
|
2
|
957
|
|
POST
|
Hi Diego, Here is a link to these threads that answer this question: https://community.esri.com/message/515636#515636 how can I control which language the WebApp will be? and this one: https://community.esri.com/thread/157903
... View more
06-09-2015
07:51 AM
|
1
|
0
|
601
|
|
POST
|
Hi Mike, I am working on a Javascript application where I have a MSD published on ArcGIS server and I am using the URL from it's REST services. I am trying to select census block points that fall within a defined buffer distance and get a summary of number of blocks and housing units. I have it working but I am not getting consistent or accurate results, especially as the number of selected features increase. I keep getting this unresponsive script error, and when I click on continue, it just keeps going or gives an inaccurate number, nothing close to actual number of blocks that fall within the buffer. It will be great if you can help to fix this problem. Thanks
... View more
06-08-2015
01:16 PM
|
0
|
4
|
957
|
|
POST
|
Hi Jake, When I go change the number to 2000 or higher, while publishing the map service, I am getting this error, do you know how I can fix this? I asked a question this morning in the forum, because I am not getting an accurate result when the selected features are more than 1000 within the buffer distance, here : Re: Selected features within a buffer not getting accurate results Thanks for your help!
... View more
06-02-2015
03:17 PM
|
0
|
0
|
2347
|
|
POST
|
Hi Thejus, I am using this sample from the API reference and that is how it is done here: Select with Feature Layer | ArcGIS API for JavaScript If you can show me how to do that as per your suggestion I can try and see if that works. Thanks
... View more
06-02-2015
11:44 AM
|
1
|
0
|
1151
|
|
POST
|
I am working on a Javascript application where I have a MSD published on ArcGIS server and I am using the URL from it's REST services. I am trying to select census block points that fall within a defined buffer distance and get a summary of number of blocks and housing units. I have it working but I am not getting consistent or accurate results, especially as the number of selected features increase. I have the buffer circle set like this: circleBuffer = new Circle({ center: mapPoint, geodesic: true, radius: radius, radiusUnit: "esriMiles" });. When I check the number of blocks selected within a 10 mile buffer around the same block point in ArcMap, I get different results. I tried with changing this, mode: FeatureLayer.MODE_AUTO, to ONDEMAND and SELECTION but still no difference in results. I have attached the JS file for the application if anyone can take a look at that and suggest what needs to be changed to correct this. Thanks
... View more
06-02-2015
10:42 AM
|
0
|
3
|
4993
|
|
POST
|
Kelly, Thanks for the reply, Yes it works, but every time the application is opened or reloaded the user needs to click on that. I was working with Swipe Template earlier and it was enabled by default in that one. Thanks.
... View more
05-14-2015
12:30 PM
|
0
|
2
|
1275
|
|
POST
|
Hi, Looks like it is still not fixed, even in chrome, the two maps do not sync, either while panning or zooming in or out. Here is my example: http://utsa.maps.arcgis.com/apps/CompareAnalysis/index.html?appid=20bbff2f755f42cea354ff2912d372bb Thanks
... View more
05-14-2015
11:46 AM
|
0
|
4
|
1275
|
|
POST
|
Hi Rebecca, I did refer to your blog and saw that you can register multiple machines to work on an AGOL account, will try to follow the different WAB folders for each one and see if that works. Thanks.
... View more
04-27-2015
01:28 PM
|
0
|
0
|
837
|
|
POST
|
Hi, I have downloaded the Web App Builder developer's edition to my machine, installed Node.js etc., I had a question, Can I use the same machine to register and work on web appbuilder apps on 2 different ArcGIS organization accounts, as long as I am signed in to the one I want to create an application? it says the in the application dialog, for URL, http://[yourmachinename]:3344/webappbuilder. Will the same machine name work to register and get web app builder app ID on 2 different ArcGIS accounts? Thanks,
... View more
04-27-2015
01:14 PM
|
0
|
2
|
4501
|
|
POST
|
Hi Mudit, You can do this if you add labels as a Label Layer, Label Layer | ArcGIS API for JavaScript which I did and using setvisibility(same method that Jake Skinner mentioned in his reply) had it turned off when I added the it to the map. I needed labels to show up only for print so added it then and turned off once the print job was completed. var labels = new LabelLayer({id: "labels", pointPriorities: 'Above-Left'}); map.addLayer(labels); labels.addFeatureLayer(layerNursing, layerNursingLabelRenderer, "{" + labelField + "}"); labels.setVisibility(false); and it worked fine for me. Alternatively, could also use set min and max scale to have the label layer to be visible within a scale range, if that is something you would want.
... View more
04-06-2015
10:40 AM
|
0
|
0
|
1503
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-15-2015 12:26 PM | |
| 1 | 02-26-2017 10:19 AM | |
| 1 | 06-02-2015 11:44 AM | |
| 1 | 06-09-2015 07:51 AM | |
| 1 | 03-24-2015 09:48 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|