|
POST
|
Pascual, The applications was all developed in house and was designed to move off our older Flex Viewer. There are 2 Analyst here and we update the application as needs arise and ideas spawn. Along with our public facing maps we utilize the WAB framework and widgets for internal applications that service internal needs. It’s a living breathing application that we use to support anyone we feel does not require a desktop GIS. All code was done by GIS staff.
... View more
08-22-2016
11:36 AM
|
0
|
0
|
2107
|
|
POST
|
I would just query WHERE 1=1 I don't see an Object ID of 4 in the data and set the OutFields to be ["*"]. That should give you some results to play with. REST QUERY Drew
... View more
08-22-2016
05:38 AM
|
2
|
0
|
2604
|
|
IDEA
|
When a related record is added,updated or deleted using Collector for ArcGIS the parent feature is not refreshed. We use SQL triggers to perform calculations and update the feature with a result. Currently the user has to re-click the feature after the edits to retrieve the most up to date value. It would be nice if the feature gets refreshed when the related records has changes applied to it.
... View more
07-25-2016
10:34 AM
|
3
|
0
|
726
|
|
IDEA
|
It would be really nice if we could resize the Collector for ArcGIS form when viewing on a tablet or Desktop, Currently when viewing the data collection form within Collector on a tablet the form takes up only 25% of the screen. It would be nice if it could be resized or have the option to be maximised to 100%. Sometimes field names are long and can not be read in the small space.
... View more
07-25-2016
10:27 AM
|
1
|
0
|
700
|
|
POST
|
Hello Steve, We have not figured it out yet a full solution yet, but a patch is to actually paste the views SQL Code into ArcGMap as a Query Layer. It's messy but it keeps our AGS Services up and running without copies of the data. I checked the settings that Supriya suggested and everything looked good. ArcMap is doing something. We hope to open a ticket in the near future but just have not had the time to get a full demo up and running to send to ESRI. I hope this helps in the short term. Drew
... View more
06-17-2016
06:04 AM
|
1
|
0
|
6188
|
|
POST
|
Sorry for the delayed reply. I just got caught up with other things. They are the same Database instance just different ArcMap Clients. 10.4 = Slow 10.3 = Fast Same data source, same query, same computer specs. We have noticed this on many different SQL Spatial views. We will be looking into it further in the coming days to see if we can see what is happening. Once last note, the same issue appears in ArcGIS Server also. Our 10.4 services renders the data very slow where 10.3 is blazing.
... View more
05-10-2016
06:31 AM
|
1
|
1
|
6188
|
|
POST
|
Thanks for the reply Vince. The one key thing is that the spatial views work fine in a ArcMap 10.3 but slow in 10.4. I am doing testing on a Polygon feature class (parcels to be specific) and it takes about 12 minutes to load into ArcMap in 10.4 and maybe 15 seconds in 10.3 --- using the exact same sql spatial view. The parcels data is about 200,000 records. Inside the view is a very simply join to ownership data. I have seen this same issue on other sql spatial views with only 200 records. Thanks, Drew
... View more
04-15-2016
01:28 PM
|
0
|
3
|
6188
|
|
POST
|
Hello, We have recently upgraded our ArcMap instances to 10.4 and are now having performance issues with our SQL Spatial Views. Querying on the database side is fine, its when the views are loaded into ArcMap 10.4 when the slowness starts. If I fiddle with the view I can make it perform better but its hit and miss. The 10.4 client is doing something because in 10.3 clients the views perform as expected. Our SDE Geodatabase has also been upgraded to 10.4 and is running on SQL Server 2012 (64 bit) One additional note: If I create the exact same view as a "Query Layer" in ArcMap the data performs as expected. Its only when its compiled as a SQLSpatial View when the slowness starts. Has anyone else had this problem or have a solution? Drew
... View more
04-15-2016
07:18 AM
|
3
|
43
|
27762
|
|
POST
|
Hello, I am having issues with my widget colors when using the Box Theme or the Dart Theme. They do not seem to follow the same standards by using jimu-main-background as outlined in the css-framework defined here. jimu-main-background Defines the main color of the app. Applies to the main UI of the app. From my understanding a themes main color should be defined in .jimu-main-background but Box and dart seem to use .box-bgcolor and .dart-bgcolor. I have been able to fix this by looking at the theme name in code and returning the different class name, but I was wondering if this was an over site in the development of these themes. Thanks, Drew
... View more
03-13-2016
06:15 PM
|
0
|
1
|
2505
|
|
POST
|
Sorry to wake this thread up almost 2 years later but I am having the same issue in Chrome version 48.0.2564.103 m Using this thread, I was able to figure out a fix. I thought I would share a complete solution. var oldExtent = null;
//ON EXTENT CHANGE - UPDATE IF VISIBLE
on(this.map, "extent-change", function (event)
{
var isEqual = false
if (oldExtent != null)
isEqual = geometryEngine.equals(oldExtent, event.extent);
if (isEqual)
{
console.log('EXTENT IS THE SAME');
}
else
{
console.log('EXTENT IS DIFFERENT');
}
//SET OLD EXTENT
oldExtent = event.extent;
}); Drew
... View more
02-08-2016
10:56 AM
|
0
|
0
|
1904
|
|
POST
|
Ya, that part makes it a little confusing but its needed to be able to debug in chrome or else chrome thinks it's a new file each time and all your break points no longer load. If I do another version make I can make it automatic where I look for port :3344 to detect if its dev or not. we will see Glad it's working well for you. Andrew
... View more
02-03-2016
09:27 AM
|
1
|
0
|
2988
|
|
POST
|
Yes that is correct when the site is loaded on a domain that is NOT the one defined in the myHostName variable. I had to do this because I was not able to debug files in the browser if the file name was changing every time I reloaded the app. If the site is running on the host name defined in myHostName it should look similar to the image I posted originally. Hope that makes sense. Andrew
... View more
02-03-2016
08:28 AM
|
1
|
2
|
2988
|
|
POST
|
Florian, To answer your questions... If you concate the filename with the date, does it mean that your file don't gonna be updated two time in the same day ? The date is down to the second, so it should be a unique number every time you reload the page (on the server defined (myHostName), therefore a unique URL too. There is one exception; the date is down to the "day" only if the app is loaded your development box (this is why myHostName has to be defined) Do you know/imagine the limits/risks of this manipulation ? Why it doesn't work with the WAB 1.3 I don't see any limitations to this. I have not tested it on 1.3 yet and ESRI could have changed their WindgetManager.js file in that version. If i have time I will try and get 1.3 and modify the file to work the same - then post it here. Hope that helps answer your questions. Andrew
... View more
02-03-2016
08:03 AM
|
1
|
4
|
2988
|
|
POST
|
Hello Florian, If you wish to test it just add it on an application by application basis. If you find it works as you expect you can add it to the "stemapp" and it should get copied over for every application you create. Generally speaking, it just appends a date onto the HTTP Request URL to trick the browser into thinking it's a new file. If you know how to use your browser debugger you can preview it live in our map. Andrew
... View more
02-03-2016
07:34 AM
|
0
|
6
|
2988
|
|
POST
|
Lisa, when you visit the website using HTTPS does it look like you have a valid certificate? In Google Chrome you should see a lock in the address bar, just like GeoNet has right now as you read this message. You can click on that lock and get more information about the certificate. I believe once we got a signed certificate we were able to login fine. Drew
... View more
01-07-2016
06:24 AM
|
0
|
0
|
2930
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-04-2013 09:40 AM | |
| 1 | 12-11-2012 10:19 AM | |
| 1 | 05-25-2015 10:46 AM | |
| 1 | 05-10-2016 06:31 AM | |
| 1 | 01-17-2017 11:01 AM |
| Online Status |
Offline
|
| Date Last Visited |
12-31-2021
09:54 AM
|