Getting Search Widget response's lat long in ArcGIS API for Javascript 4.x?Loading Scene from ID into ArcGIS JavaScript API 4: “SyntaxError: Unexpected token ILLEGAL”ArcGIS Javascript API 4.2 basemap toggle thumbnail issueRotating Point Symbols in ArcGIS Javascript API 4.5 SceneLayerAvoiding Feature limit exceeded on layer in ArcGIS JavaScript API?Esri ArcGIS API for JavaScript: how to return polygon info for point within polygon in KMLLayerHow to add labels using featurelayer and sceneview in ArcGIS API for JavaScript 4.3ESRI Search Widget activeSourceIndex Usage (ArcGIS JS v4.8)ArcGIS API for JavaScript - Search widget with external geocode serviceAdding table (dgrid/OnDemandGrid) under map using ArcGIS API for JavaScript?Can I use the Search Widget on fields related to a featurelayer?
N.B. ligature in Latex
"which" command doesn't work / path of Safari?
How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)
DOS, create pipe for stdin/stdout of command.com(or 4dos.com) in C or Batch?
Can I interfere when another PC is about to be attacked?
Where to refill my bottle in India?
Why do we use polarized capacitor?
Download, install and reboot computer at night if needed
Why is an old chain unsafe?
What is the meaning of "of trouble" in the following sentence?
Why Is Death Allowed In the Matrix?
Is there really no realistic way for a skeleton monster to move around without magic?
Can town administrative "code" overule state laws like those forbidding trespassing?
Need help identifying/translating a plaque in Tangier, Morocco
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?
Is there a familial term for apples and pears?
How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?
How do you conduct xenoanthropology after first contact?
How is the relation "the smallest element is the same" reflexive?
Can you lasso down a wizard who is using the Levitate spell?
Email Account under attack (really) - anything I can do?
How can the DM most effectively choose 1 out of an odd number of players to be targeted by an attack or effect?
Why don't electron-positron collisions release infinite energy?
Getting Search Widget response's lat long in ArcGIS API for Javascript 4.x?
Loading Scene from ID into ArcGIS JavaScript API 4: “SyntaxError: Unexpected token ILLEGAL”ArcGIS Javascript API 4.2 basemap toggle thumbnail issueRotating Point Symbols in ArcGIS Javascript API 4.5 SceneLayerAvoiding Feature limit exceeded on layer in ArcGIS JavaScript API?Esri ArcGIS API for JavaScript: how to return polygon info for point within polygon in KMLLayerHow to add labels using featurelayer and sceneview in ArcGIS API for JavaScript 4.3ESRI Search Widget activeSourceIndex Usage (ArcGIS JS v4.8)ArcGIS API for JavaScript - Search widget with external geocode serviceAdding table (dgrid/OnDemandGrid) under map using ArcGIS API for JavaScript?Can I use the Search Widget on fields related to a featurelayer?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
How would I retrieve the lat/long of the city/location selected using the Search Widget? I do not need to display this location on a map. All examples I have so far come across attach the Widget to a SceneView or Mapview.
arcgis-javascript-api-4
New contributor
add a comment |
How would I retrieve the lat/long of the city/location selected using the Search Widget? I do not need to display this location on a map. All examples I have so far come across attach the Widget to a SceneView or Mapview.
arcgis-javascript-api-4
New contributor
add a comment |
How would I retrieve the lat/long of the city/location selected using the Search Widget? I do not need to display this location on a map. All examples I have so far come across attach the Widget to a SceneView or Mapview.
arcgis-javascript-api-4
New contributor
How would I retrieve the lat/long of the city/location selected using the Search Widget? I do not need to display this location on a map. All examples I have so far come across attach the Widget to a SceneView or Mapview.
arcgis-javascript-api-4
arcgis-javascript-api-4
New contributor
New contributor
edited 2 days ago
Katah
770510
770510
New contributor
asked Apr 3 at 19:10
JackJack
11
11
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You have to hook the select-result Event that fires when a search result is selected.
var searchWidget = new Search();
searchWidget.on("select-result", function(event)
// Do whatever you want with your result
var graphic = event.result.feature
var extent = event.result.extent
);
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "79"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Jack is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317693%2fgetting-search-widget-responses-lat-long-in-arcgis-api-for-javascript-4-x%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You have to hook the select-result Event that fires when a search result is selected.
var searchWidget = new Search();
searchWidget.on("select-result", function(event)
// Do whatever you want with your result
var graphic = event.result.feature
var extent = event.result.extent
);
add a comment |
You have to hook the select-result Event that fires when a search result is selected.
var searchWidget = new Search();
searchWidget.on("select-result", function(event)
// Do whatever you want with your result
var graphic = event.result.feature
var extent = event.result.extent
);
add a comment |
You have to hook the select-result Event that fires when a search result is selected.
var searchWidget = new Search();
searchWidget.on("select-result", function(event)
// Do whatever you want with your result
var graphic = event.result.feature
var extent = event.result.extent
);
You have to hook the select-result Event that fires when a search result is selected.
var searchWidget = new Search();
searchWidget.on("select-result", function(event)
// Do whatever you want with your result
var graphic = event.result.feature
var extent = event.result.extent
);
answered 2 days ago
KatahKatah
770510
770510
add a comment |
add a comment |
Jack is a new contributor. Be nice, and check out our Code of Conduct.
Jack is a new contributor. Be nice, and check out our Code of Conduct.
Jack is a new contributor. Be nice, and check out our Code of Conduct.
Jack is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317693%2fgetting-search-widget-responses-lat-long-in-arcgis-api-for-javascript-4-x%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown