Find an address

547
2
Jump to solution
06-07-2014 12:47 PM
AysberqTundra
Occasional Contributor
Hello.
I want to create a web application for finding an address.
I have created a geocode service using ArcGis Server 10.1.
But I want that when a user types some characters of address, server offer some variants of correct addresses.
What I must do for solving this problem?
Must I create an additional web service or geocode service has this functionality?
Please help me to solve this problem.
Thanks in advance.
0 Kudos
1 Solution

Accepted Solutions
HectorChapa
Occasional Contributor II
This is my address it offers autocomplete as you can see below there is an option for autoComplete: true it has to say true.


var geocoder = new Geocoder({
          arcgisGeocoder: false,
          autoComplete: true,
    zoomScale:1000,
          geocoders: [ {
            url: "Your URL GOES HERE",
            name: "LRGVDC ",
            placeholder: "Locate",
            outFields: "*",
            singleLineFieldName: "SingleLine"

          }],

View solution in original post

0 Kudos
2 Replies
HectorChapa
Occasional Contributor II
This is my address it offers autocomplete as you can see below there is an option for autoComplete: true it has to say true.


var geocoder = new Geocoder({
          arcgisGeocoder: false,
          autoComplete: true,
    zoomScale:1000,
          geocoders: [ {
            url: "Your URL GOES HERE",
            name: "LRGVDC ",
            placeholder: "Locate",
            outFields: "*",
            singleLineFieldName: "SingleLine"

          }],
0 Kudos
AysberqTundra
Occasional Contributor
Thank you so much!
0 Kudos