We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the geocode method on the IGeocode instance, a spinner is displayed showing the fetch attempt. This is not true if I use my suggest method.
geocode
suggest
This is easily hackable from outside:
const control = new L.Control.Geocoder({ .... }); control.on( 'startsuggest', function() { DomUtil.addClass( this._container, 'leaflet-control-geocoder-throbber' ); }, this ); control.on( 'finishsuggest', function() { DomUtil.removeClass( this._container, 'leaflet-control-geocoder-throbber' ); }, this );
But I think this should be a default behavior.
The text was updated successfully, but these errors were encountered:
Show throbber/spinner during suggest attempt
787290a
This close perliedman#242
ceeb796
No branches or pull requests
When using the
geocode
method on the IGeocode instance, a spinner is displayed showing the fetch attempt. This is not true if I use mysuggest
method.This is easily hackable from outside:
But I think this should be a default behavior.
The text was updated successfully, but these errors were encountered: