Releases: Esri/esri-leaflet-geocoder
Releases · Esri/esri-leaflet-geocoder
v2.0.1
v2.0.0
Added
- implemented a new 'countries' parameter for the
arcgisOnlineProvider
based on new capabilities of the World Geocoding Service #38 - implemented a new 'categories' parameter for the
arcgisOnlineProvider
based on new capabilities of the World Geocoding Service - added the ability to include 'categories' in requests using
L.esri.Geocoding.suggest
- updated result objects across providers to include the actual GeoJSON of candidates #81
Fixed
v2.0.0-beta.3
Fixed
- Missing files in NPM release.
v2.0.0-beta.2
Fixed
- Missing sourcemap in build.
v2.0.0-beta.1
Breaking
- Requires the 2.0.0-beta.4 release of Esri Leaflet.
- Require the 1.0.0-beta.1 release of Leaflet.
- Namespaces have changed all exports now sit directly under the
L.esri.Geocoding
namespace. This mean that things likeL.esri.Geocoding.Controls.Geosearch.Providers.FeatureLayer
can now be accessed likeL.esri.Geocoding.FeatureLayerProvider
. useArcgisWorldGeocoder
has been removed. Now you must passL.esri.Geocoding.arcGisOnlineProvider()
in theproviders
array. This will facilitate easily passing options to the ArcGIS Online geocoder.
Added
- Better build/test/release automation.
- Support for JSPM in package.json. Now you can
import geocode from 'esri-leaflet-geocoder/src/Tasks/Geocoder';
for more compact builds but, be aware of caveats - Support for browserify in the package.json. Now you can
var geocode = require('esri-leaflet-geocoder/src/Tasks/Geocoder');
for more compact builds, but be aware of caveats
1.0.2
1.0.1
- Fix incorrect version number in built files.
1.0.0
This represents the stable release of Esri Leaflet Geocoder compatible with Leaflet 0.7.3. All future 1.0.X releases will be compatible with Leaflet 0.7.3 and contain only bug fixes. New features will only be added in Esri Leaflet Geocoder 2.0.0 which will require Leaflet 1.0.0.
Changes
Release Candidate 4
Fix Bower distribution
Release Candidate 3
Breaking Changes
- Providers should now supply their
url
with theurl
key inside ofoptions
as opposed to a separate parameter. - Namespace has been reorganized. everything now sits under
L.esri.Geocoding
. SoL.esri.Tasks.Geocode
is nowL.esri.Geocoding.Tasks.Geocode
.
Changes
MapService
provider now supports being passed an array of layers to search. #48title
option will now set the title on the input to'Location Search'
by default. #51- When using many providers or when a provider returns lots of results with a high limit, the suggestions div will now scroll. #55
within()
andnearby()
now return the task and can be changed. #49- Bugfix for
MapService
provider #46