We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6a866a commit 259bac8Copy full SHA for 259bac8
Source/Widgets/Geocoder/Geocoder.js
@@ -70,6 +70,11 @@ value: searchText,\
70
valueUpdate: "afterkeydown",\
71
disable: isSearchInProgress,\
72
css: { "cesium-geocoder-input-wide" : keepExpanded || searchText.length > 0 }');
73
+ textBox.addEventListener('focus', function() {
74
+ setTimeout(function() {
75
+ textBox.select();
76
+ }, 0);
77
+ });
78
form.appendChild(textBox);
79
80
var searchButton = document.createElement('span');
0 commit comments