Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR improves the behavior of leaflet-control-geocoder on mobile. Testing is on iOS using iPhone 6 and iPad 2nd-gen.
options.expand
supports a new value:touch
This will use touchstart instead of click for a faster response when trying to expand the control from a collapsed state.expand: 'click'
if L.Browser.touch is detected. Could go either way; adding a new option seemed best for compatibility and fewest question marks._collapse()
adds a_input.blur()
so that on mobile the keyboard will be dismissed.Tapping the icon when
collapse: false
was given, now usestouchstart
if L.browser.touch was selected, so the geocoding happens with less delay.Some trivial cleanups to the className editing code, to use L.DomUtil.removeClass and L.DomUtil.hasClass in a few spots.