Select to view content in your preferred language

Can the documentation for 3.0 still be accessed?

993
1
Jump to solution
02-05-2013 07:29 AM
DougBrowning
MVP Esteemed Contributor
I can only get 2.5 or 3.1, 3.0 does not seem to be anywhere.

We have a 2.5 widget that uses locateTask.addressToLocations(myAddress, myOutFields, new AsyncResponder(onResult, onFault));
and this is totally different in 3.1 due to changes in 10.1. 

But I want to see if this is also different in 3.0 or not.  That might seal the deal on if we are going to use 3.0 or 3.1.


Thanks.
Tags (2)
0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus
Doug,

Right from the docs (which tell you what API release they changed in).

http://resources.arcgis.com/en/help/flex-api/apiref/com/esri/ags/tasks/Locator.html

addressesToLocations    ()    method
public function addressesToLocations(parameters:AddressToLocationsParameters, responder:IResponder = null):AsyncToken

Since :     ArcGIS API 3.0 for Flex

Sends a request to the ArcGIS REST geocode resource to find locations for a set of addresses specified in the address parameter. On completion, the addressesToLocationsComplete event is fired and the optional callback responder is invoked. Requires ArcGIS 10.1 or higher.

Parameters
    parameters:AddressToLocationsParameters ??? The AddressToLocationsParameters object contains the addresses.

    responder:IResponder (default = null) ??? The responder to call on result or fault. The result function will be given an array of AddressCandidate instances.

Returns
    AsyncToken ???

See also
com.esri.ags.tasks.supportClasses.AddressCandidate

View solution in original post

0 Kudos
1 Reply
RobertScheitlin__GISP
MVP Emeritus
Doug,

Right from the docs (which tell you what API release they changed in).

http://resources.arcgis.com/en/help/flex-api/apiref/com/esri/ags/tasks/Locator.html

addressesToLocations    ()    method
public function addressesToLocations(parameters:AddressToLocationsParameters, responder:IResponder = null):AsyncToken

Since :     ArcGIS API 3.0 for Flex

Sends a request to the ArcGIS REST geocode resource to find locations for a set of addresses specified in the address parameter. On completion, the addressesToLocationsComplete event is fired and the optional callback responder is invoked. Requires ArcGIS 10.1 or higher.

Parameters
    parameters:AddressToLocationsParameters ??? The AddressToLocationsParameters object contains the addresses.

    responder:IResponder (default = null) ??? The responder to call on result or fault. The result function will be given an array of AddressCandidate instances.

Returns
    AsyncToken ???

See also
com.esri.ags.tasks.supportClasses.AddressCandidate
0 Kudos