esri-leaflet-geocoder
Advanced tools
Changelog
[2.2.6] - 2017-07-27
esri-leaflet-geocoder.js
file was missing in last npm releaseChangelog
[2.2.4] - 2017-03-22
findAddressCandidates
operation of geocoding services is now used exclusively, rather than alternating back and forth with find
Changelog
[2.2.3] - 2017-01-06
featureLayerProvider
search is instantiated after executing a previous search that failed to return a single candidate.Changelog
[2.2.2] - 2016-12-18
Changelog
[2.2.1] - 2016-11-22
Duplicate featureLayerProvider
suggestions with identical display text are no longer displayed. When more than one feature with identical suggestion text is returned, all are now available in the callback.
Correct results are now returned when a featureLayerProvider
search is instantiated by hitting enter
after a previous search result was selected from the list.
Changelog
[2.2.0] - 2016-11-06
featureLayerProvider
. the new method operates identically to L.esri.query.orderBy()
var flProvider = L.esri.Geocoding.featureLayerProvider({
label: 'States',
url: 'http://sampleserver6.arcgisonline.com/arcgis/rest/services/Census/MapServer/3',
searchFields: ['STATE_NAME']
})
// fieldname + ascending/descending flag
flProvider.orderBy('POP2007', 'ASC')
mapServiceProvider
text search is now slightly fuzzier. #149 thx @nickpeihl!
npm start
now launches a web server and recompiles the built source when a change is detected on Windows boxes as well. #156 thx @gavinr!
Placeholder text is now display immediately when the geosearch control is configured to be expanded on page load. #157