ERROR

Unable to locate specified address.

Last Published: April 25, 2020

Error Message

Searching for a typed-in address fails in ArcGIS for Local Government's Election Polling Places app even using the default address, and displays the following error message:"Unable to locate specified address."The problem occurs in Internet Explorer (IE) versions earlier than IE 9, including compatibility mode: IE 9 compatibility, IE 8, IE 8 compatibility, IE 7, and so forth.This applies to earlier versions of the application. This issue is resolved in the November 2012 release, 10.1.1.1.

Cause

There is a bug in js\utils.js JavaScript that tries to set the height of a scrollbar to less than zero.

Solution or Workaround



  1. Change the following line in js\utils.js. This line is approximately line 179:

    Code:
    scrollbar_track.style.height = (containerHeight.h - 6) + "px";

    to

    Code:
    scrollbar_track.style.height = Math.max(0, containerHeight.h - 6) + "px";

Article ID:000011641

Software:
  • ArcGIS for Local Government

Get help from ArcGIS experts

Contact technical support

Download the Esri Support App

Go to download options

Discover more on this topic