2015-05-06 23:23:31 +02:00
2015-05-06 23:17:47 +02:00
2015-05-06 23:10:39 +02:00
2012-12-24 02:19:55 +01:00
2015-05-06 23:23:31 +02:00
2013-10-20 16:20:16 -07:00
2015-04-11 15:50:38 -04:00

#Leaflet.GeoSearch Adds support for address lookup (a.k.a. geocoding / geoseaching) to Leaflet.

Check out the demo

#About the control The control uses so called providers to take care of building the correct service url and parsing the retrieved data into an uniformal format. Thanks to this split-up, it is pretty easy to write your own providers, so you can use your own geocoding service(s).

The control comes with an default set of three providers:

  • L.GeoSearch.Provider.Esri
  • L.GeoSearch.Provider.Google
  • L.GeoSearch.Provider.OpenStreetMap

Using these are pretty simple.

#Using the control

For example, to use the Esri provider:

new L.Control.GeoSearch({
    provider: new L.GeoSearch.Provider.Esri()
}).addTo(map);

Or if you prefer using Google

new L.Control.GeoSearch({
    provider: new L.GeoSearch.Provider.Google()
}).addTo(map);

Some people are really loving open source and by that openstreetmap

new L.Control.GeoSearch({
    provider: new L.GeoSearch.Provider.OpenStreetMap()
}).addTo(map);

There are other configurable options like setting the position of the search input and whether or not a marker should be displayed at the position of the search result.

new L.Control.GeoSearch({
    provider: new L.GeoSearch.Provider.OpenStreetMap(),
    position: 'topcenter',
    showMarker: true,
    retainZoomLevel: false,
}).addTo(map);

If you want to have your custom GeoSearch control you can directly use one of the providers.

var googleGeocodeProvider = new L.GeoSearch.Provider.Google(),
  addressText = 'Amsterdam';

googleGeocodeProvider.GetLocations( addressText, function ( data ) {
  // in data are your results with x, y, label and bounds (currently availabel for google maps provider only)
});

I really can't make it any harder. Checkout the providers to see how easy it is to write your own.

Description
No description provided
Readme MIT 87 MiB
Languages
TypeScript 66.9%
JavaScript 26.2%
CSS 6.9%