Options for getPlace
.
Hide inherited properties
Property Type Notes authentication
inherited
string | IAuthenticationManager
The instance of ArcGISIdentityManager
, ApplicationCredentialsManager
or APIKeyManager
to use to authenticate this request. A token may also be passed directly as a string however using the built in authentication managers is encouraged.
credentials
inherited
RequestCredentials
A string indicating whether credentials (cookies) will be sent with the request. Used internally for authentication workflows.
headers
inherited
{ [key: string]:Â any }
Additional Headers to pass into the request.
hideToken
inherited
boolean
Prevents the token from being passed in a URL Query param that is saved in browser history. Instead, the token will be passed in POST request body or through X-Esri-Authorization header. NOTE: This will force POST requests in browsers since auth header is not yet supported by preflight OPTIONS check with CORS.
icon
IconOptions
maxUrlLength
inherited
number
If the length of a GET request's URL exceeds maxUrlLength
the request will use POST instead.
params
inherited
IParams
Additional parameters to pass in the request.
placeId
string
portal
inherited
string
Base url for the portal you want to make the request to. Defaults to authentication.portal if authentication exists, otherwise to 'https://www.arcgis.com/sharing/rest'.
rawResponse
inherited
boolean
Return the raw response
requestedFields
inherited
"all"Â |Â "additionalLocations"Â |Â "additionalLocations:dropOff"Â |Â "additionalLocations:frontDoor"Â |Â "additionalLocations:road"Â |Â "additionalLocations:roof"Â |Â "address"Â |Â "address:adminRegion"Â |Â "address:censusBlockId"Â |Â "address:country"Â |Â "address:designatedMarketArea"Â |Â "address:extended"Â |Â "address:locality"Â |Â "address:neighborhood"Â |Â "address:poBox"Â |Â "address:postcode"Â |Â "address:postTown"Â |Â "address:region"Â |Â "address:streetAddress"Â |Â "categories"Â |Â "contactInfo"Â |Â "contactInfo:email"Â |Â "contactInfo:fax"Â |Â "contactInfo:telephone"Â |Â "contactInfo:website"Â |Â "chains"Â |Â "description"Â |Â "hours"Â |Â "hours:opening"Â |Â "hours:openingText"Â |Â "hours:popular"Â |Â "location"Â |Â "name"Â |Â "rating"Â |Â "rating:price"Â |Â "rating:user"Â |Â "socialMedia"Â |Â "socialMedia:facebookId"Â |Â "socialMedia:instagram"Â |Â "socialMedia:twitter"[]
The array of fields that define the attributes to return for a place.
signal
inherited
AbortSignal
An AbortSignal object instance; allows you to abort a request and via an AbortController.
suppressWarnings
inherited
boolean
Suppress any ArcGIS REST JS related warnings for this request.
authenticationoptionalinherited
Interface Property credentialsoptionalinherited
Interface Propertycredentials: RequestCredentials
A string indicating whether credentials (cookies) will be sent with the request. Used internally for authentication workflows.
Inherited from Omit.credentials
headersoptionalinherited
Interface Propertyheaders: { [key: string]:Â any }
Additional Headers to pass into the request.
Type declarationInherited from Omit.headers
hideTokenoptionalinherited
Interface PropertyhideToken: boolean
Prevents the token from being passed in a URL Query param that is saved in browser history. Instead, the token will be passed in POST request body or through X-Esri-Authorization header. NOTE: This will force POST requests in browsers since auth header is not yet supported by preflight OPTIONS check with CORS.
Inherited from Omit.hideToken
iconoptional
Interface Property maxUrlLengthoptionalinherited
Interface PropertymaxUrlLength: number
If the length of a GET request's URL exceeds maxUrlLength
the request will use POST instead.
Inherited from Omit.maxUrlLength
paramsoptionalinherited
Interface Propertyparams: IParams
Additional parameters to pass in the request.
Inherited from Omit.params
placeId Interface PropertyplaceId: string
optionalinherited
Interface Propertyportal: string
Base url for the portal you want to make the request to. Defaults to authentication.portal if authentication exists, otherwise to 'https://www.arcgis.com/sharing/rest'.
Inherited from Omit.portal
rawResponseoptionalinherited
Interface PropertyrawResponse: boolean
Return the raw response
Inherited from Omit.rawResponse
requestedFieldsinherited
Interface PropertyrequestedFields: "all"Â |Â "additionalLocations"Â |Â "additionalLocations:dropOff"Â |Â "additionalLocations:frontDoor"Â |Â "additionalLocations:road"Â |Â "additionalLocations:roof"Â |Â "address"Â |Â "address:adminRegion"Â |Â "address:censusBlockId"Â |Â "address:country"Â |Â "address:designatedMarketArea"Â |Â "address:extended"Â |Â "address:locality"Â |Â "address:neighborhood"Â |Â "address:poBox"Â |Â "address:postcode"Â |Â "address:postTown"Â |Â "address:region"Â |Â "address:streetAddress"Â |Â "categories"Â |Â "contactInfo"Â |Â "contactInfo:email"Â |Â "contactInfo:fax"Â |Â "contactInfo:telephone"Â |Â "contactInfo:website"Â |Â "chains"Â |Â "description"Â |Â "hours"Â |Â "hours:opening"Â |Â "hours:openingText"Â |Â "hours:popular"Â |Â "location"Â |Â "name"Â |Â "rating"Â |Â "rating:price"Â |Â "rating:user"Â |Â "socialMedia"Â |Â "socialMedia:facebookId"Â |Â "socialMedia:instagram"Â |Â "socialMedia:twitter"[]
The array of fields that define the attributes to return for a place.
Use this parameter to define the attributes you would like returned, for example requestedFields=name,address:streetAddress
. However, you can also set this value to requestedFields=all
to return all of the attributes available for a place.
The placeId
attribute is always returned in addition to the other attributes you requested. If a valid attribute value is not available, null
, or an empty collection, is returned and you are not charged for it. To see the fields and pricing groups they belong to, go to the table above.
Inherited from queryParams.requestedFields
signaloptionalinherited
Interface Propertysignal: AbortSignal
An AbortSignal object instance; allows you to abort a request and via an AbortController.
Inherited from Omit.signal
suppressWarningsoptionalinherited
Interface PropertysuppressWarnings: boolean
Suppress any ArcGIS REST JS related warnings for this request.
Inherited from Omit.suppressWarnings
MethodsHide inherited methods
Method Returns Notes request(url,ârequestOptions)
inherited
Promise<any>
Override the default function for making the request. This is mainly useful for testing purposes (i.e. so you can pass in a spy).
requestoptionalinherited
Interface Methodrequest(url:Â string,ârequestOptions:Â InternalRequestOptions): Promise<any>
Override the default function for making the request. This is mainly useful for testing purposes (i.e. so you can pass in a spy).
ReturnsÂPromise<any>
Inherited from Omit.request
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4