|
POST
|
We've found similar with our implementation. However, our issues come with our close integration with our 911 Dispatching software. That software requires each of those components be in separate fields so we simply added the fields and use the Attribute Assistant to populate those extra fields for us. The core schema remains unchanged, so components of the LGIM aren't affected.
... View more
08-15-2016
01:13 PM
|
1
|
2
|
1274
|
|
POST
|
Thanks for the response! Actually, I wound up changing the width for the Search Container in the browser.css file. Apparently, the number of pixels I had specified in the headers was more than was allowed by the style sheet.
... View more
08-01-2016
01:06 PM
|
0
|
0
|
1254
|
|
POST
|
I'm attempting to modify the widths of 4 columns displayed in a data container/table which I customized from the Tax Parcel Viewer (Tax Parcel Viewer | ArcGIS for Local Government ). Out of the box, the template had 2 columns displayed and I've added 2 additional columns. Now I cannot get the headers and results to line up with one another. I've attempted to modify the header and field and widths in locator.js. However, no matter what I input, field width seems to be overridden (CSS perhaps?). The actual column widths seem to be more driven by the table contents rather than the specified width. As you can see in the images, the field widths are different. Header code: var tableHeader = document.createElement("table");
tableHeader.className = "tblSearchHeader";
var tbodyHeader = document.createElement("tbody");
tableHeader.appendChild(tbodyHeader);
var trHeader = document.createElement("tr");
tbodyHeader.appendChild(trHeader);
trHeader.className = "trAddressGray";
var tdParcelId = document.createElement("td");
trHeader.appendChild(tdParcelId);
tdParcelId.style.width = "47px";
tdParcelId.innerHTML = "Record";
var spanUp = document.createElement("span");
spanUp.innerHTML = "▲";
spanUp.id = "spanUp";
spanUp.style.marginLeft = "5px";
tdParcelId.appendChild(spanUp);
var tdTaxMap = document.createElement("td");
tdTaxMap.innerHTML = "Tax Map";
tdTaxMap.style.width = "70px"
trHeader.appendChild(tdTaxMap);
var spanUpTaxMap = document.createElement("span");
spanUpTaxMap.innerHTML = "▲";
spanUpTaxMap.id = "spanTaxMap";
spanUpTaxMap.style.marginLeft = "5px";
tdTaxMap.appendChild(spanUpTaxMap);
var tdAddress = document.createElement("td");
tdAddress.innerHTML = "Location";
tdAddress.style.width = "70px"
trHeader.appendChild(tdAddress);
var spanUpAdd = document.createElement("span");
spanUpAdd.innerHTML = "▲";
spanUpAdd.id = "spanUpAdd";
spanUpAdd.style.marginLeft = "5px";
tdAddress.appendChild(spanUpAdd);
var tdOwnerId = document.createElement("td");
tdOwnerId.innerHTML = "Owner";
tdAddress.style.width = "20%"
trHeader.appendChild(tdOwnerId);
var spanUpOwn = document.createElement("span");
spanUpOwn.innerHTML = "▲";
spanUpOwn.id = "spanUpOwn";
spanUpOwn.style.marginLeft = "5px";
tdOwnerId.appendChild(spanUpOwn); Field/Attribute Code: var parcelID = attributes[displayFields[0]];
td.innerHTML = parcelID;
td.style.width = "61px";
var td1 = document.createElement("td");
var taxMapNo = attributes[displayFields[1]];
td1.innerHTML = taxMapNo;
td1.style.width = "70px";
var td2 = document.createElement("td");
var parcelLoc = attributes[displayFields[2]];
td2.innerHTML = parcelLoc;
td2.style.width = "85px";
var td3 = document.createElement("td");
var owner = attributes[displayFields[3]];
td3.innerHTML = owner;
//td3.style.width = "45px";
tr.setAttribute("addressValue", parcelLoc); Any assistance would be greatly appreciated!
... View more
07-28-2016
06:50 AM
|
0
|
2
|
2372
|
|
POST
|
This information is extremely helpful! Would you be willing to share your locator.js? I can't seem to get the placement of the code correct. Thanks!
... View more
07-26-2016
07:27 AM
|
0
|
0
|
1290
|
|
POST
|
I just wanted to follow up in case others have a similar issue. The problem was, of course, a syntax error in either config.js or proxy.config. What I wound up doing was going to back to square one, and publishing this application using the sample data provided. Once that was up and running smoothly, I replaced the sample services with my services on by one, testing after each change. I also commented out sections of config.js which did not apply to our deployment (assessment operations for example). Now it's up and running and I'm on to customizing the template.
... View more
07-26-2016
07:18 AM
|
0
|
0
|
979
|
|
POST
|
I'm attempting to deploy the Tax Parcel Viewer template as a replacement for our County's parcel viewer. At this point, I've got the application up and "running" but the Locate tool doesn't seem to be working. When I enter a tax parcel id or address, I just get the progress bar and never get a result. Also, I can zoom and pan within the map, which works great, but I can't click on a parcel and get the Info Window to pop up. I am using a slightly different schema than provided by the LGIM, but I (thought) made all the necessary changes in the config.js file to accommodate the schema. I'm sure it's something simple, I just can't figure it out! Ideas?
... View more
07-18-2016
11:10 AM
|
0
|
1
|
1765
|
|
POST
|
I heard from ESRI and it is neither required nor recommended to install Desktop on the same machine as the web adaptor.
... View more
05-03-2016
11:06 AM
|
0
|
0
|
1475
|
|
POST
|
Thanks. Do you think that installing desktop along with the web adaptor on the same machine is advisable or recommended? Is that a typical deployment?
... View more
04-28-2016
11:20 AM
|
0
|
1
|
1475
|
|
POST
|
I'm implementing our ArcGIS for Server Site and have a question about whether or not is is advisable/recommended to install ArcGIS for Desktop on the same machine as the web adaptor? Thanks!
... View more
04-28-2016
10:35 AM
|
1
|
5
|
3142
|
|
POST
|
Each year, we bill our customers a rate based on the acreage they own on 12/31 of that year. Due to situations beyond my control, plats are recorded slowly, and record numbers (our unique ID) are not applied in a timely and consistent fashion. This year, we received plats stamped in 2016 prior to receiving all of the 2015 plats. I know the parcel fabric history tab can be used to "roll back" time to a point where parcels have no system end date (NULL), which seems to be the best way to produce a temporal snapshot. However, due to the uneven nature of how they are delivered, we can't rely on the system end date to provide that snapshot. Any ideas how to best handle this situation so we can take that snapshot annually?
... View more
03-16-2016
05:22 AM
|
0
|
0
|
3139
|
|
POST
|
I stumbled onto this thread as I am also attempting to overwrite an existing service on ArcGIS Server with python. The script provided by stackexchange still doesn't work for me. I'm getting the following errors: Traceback (most recent call last): File "C:\scripts\PubStackExchange.py", line 35, in <module> con, True, None, summary, tags) File "C:\Program Files (x86)\ArcGIS\Desktop10.2\arcpy\arcpy\utils.py", line 18 1, in fn_ return fn(*args, **kw) File "C:\Program Files (x86)\ArcGIS\Desktop10.2\arcpy\arcpy\mapping.py", line 382, in CreateMapSDDraft return convertArcObjectToPythonObject(arcgisscripting._createMapSDDraft(*gp_ fixargs([map_document, out_sddraft, service_name, server_type, connection_file_p ath, copy_data_to_server, folder_name, summary, tags], True, False))) IOError: Missing raster band wavelength properties. Any ideas?Python
... View more
12-31-2015
07:43 AM
|
0
|
0
|
5080
|
|
POST
|
I appreciate your take on accepting the error, and would be fine with that myself. However, a local home builder pointed out this discrepancy to us and come to find out, an entire subdivision is affected. According to him, there is a perception of lifestyle and safety associated with one zip code vs. the other. I hate to tell him, but the house is still in the same place
... View more
12-17-2015
08:52 AM
|
0
|
1
|
3172
|
|
POST
|
I did find two resources which provide the correct zip code. Unfortunately, neither are GIS data. https://tools.usps.com/go/ZipLookupAction!input.action?mode=1&refresh=true is a tool via USPS which allows you to check if a zip code is correct to a specific existing street address. Note that the USPS tool Every Door Direct Mail shows ZCTAs. Free ZIP Code Map - US DataMart shows the most accurate zip code boundaries (verified by a single local post-master). With these resources, we'll just modify our process flow for addressing to include a check of these two resources. We may also look into purchasing GIS data for zip codes if we can do so with a regional government collective and share the costs. However, it would be nice to visually display the census blocks which fall under this category so we can manually check fewer addresses with the resources listed above.
... View more
12-17-2015
08:49 AM
|
0
|
0
|
3172
|
|
POST
|
I understand that ZCTA's and zip codes can be different in places. The ZCTAs represent zip code aggregations at the block level. Does anyone know if there is any way to determine which blocks had data points with more than 1 zip code?
... View more
12-17-2015
06:50 AM
|
0
|
6
|
6851
|
|
POST
|
No, I'm in an SDE environment with SQL Server 2008 R2 on the back end. I wondered about the storage format too. I'll change up the quotes and see if I can get anything to stick -- the obvious choice is to remove them completely, but that throws the syntax error. I'm wondering if the .replace function just isn't meant to function this way.
... View more
12-16-2015
08:32 AM
|
0
|
1
|
1777
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-08-2026 09:30 AM | |
| 1 | 06-14-2023 06:22 AM | |
| 1 | 08-15-2016 01:13 PM | |
| 1 | 05-14-2015 12:21 PM | |
| 3 | 09-11-2019 10:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
04-13-2026
10:37 AM
|