what3words / w3w-arcgis-javascript-samples

A collection of resources for developers using the ArcGIS API for JavaScript to integrate what3words ArcGIS Locator.
MIT License
0 stars 0 forks source link

Search examples are broken in version 4.24 #2

Open chriseyhorn opened 1 year ago

chriseyhorn commented 1 year ago

They run fine in version 4.21 but don't work in 4.24

chriseyhorn commented 1 year ago

Looks like 4.22 changed locator to url in the source. After changing this it works.

Before:

sources: [
  {
    name: "what3words",
    placeholder: "Please enter a what3words address",
    singleLineFieldName: "SingleLine",
    locator: locatorUrl
  }
]

After:

sources: [
  {
    name: "what3words",
    placeholder: "Please enter a what3words address",
    singleLineFieldName: "SingleLine",
    url: locatorUrl
  }
]