4.0.0 • Published 8 months ago

leaflet-search v4.0.0

Weekly downloads
3,150
License
MIT
Repository
github
Last release
8 months ago

Leaflet Control Search

npm version

A Leaflet control that search markers/features location by custom property. Support ajax/jsonp autocompletion and JSON data filter/remapping.

Licensed under the MIT license.

Copyright Stefano Cudini

Tested in Leaflet 0.7.x and 1.3.x

Image

Where

Demo: opengeo.tech/maps/leaflet-search

Source code: Github NPM

Install

npm install --save leaflet-search

Options

OptionDefaultDescription
url''url for search by ajax request, ex: "search.php?q={s}". Can be function to returns string for dynamic parameter setting
layernulllayer where search markers(is a L.LayerGroup)
sourceDatanullfunction to fill _recordsCache, passed searching text by first param and callback in second
jsonpParamnulljsonp param name for search by jsonp service, ex: "callback"
propertyLoc'loc'field for remapping location, using array: 'latname','lonname' for select double fields(ex. 'lat','lon' ) support dotted format: 'prop.subprop.title'
propertyName'title'property in marker.options(or feature.properties for vector layer) trough filter elements in layer,
formatDatanullcallback for reformat all data from source to indexed data object
filterDatanullcallback for filtering data from text searched, params: textSearch, allRecords
moveToLocationnullcallback run on location found, params: latlng, title, map
buildTipnullfunction to return row tip html node(or html string), receive text tooltip in first param
container''container id to insert Search Control
zoomnulldefault zoom level for move to location
minLength1minimal text length for autocomplete
initialtruesearch elements only by initial text
casesensitivefalsesearch elements in case sensitive text
autoTypetruecomplete input with first suggested result and select this filled-in text.
delayType400delay while typing for show tooltip
tooltipLimit-1limit max results to show in tooltip. -1 for no limit, 0 for no results
tipAutoSubmittrueauto map panTo when click on tooltip
firstTipSubmitfalseauto select first result con enter click
autoResizetrueautoresize on input change
collapsedtruecollapse search control at startup
autoCollapsefalsecollapse search control after submit(on button or on tips if enabled tipAutoSubmit)
autoCollapseTime1200delay for autoclosing alert and collapse after blur
textErr'Location not found'error message
textCancel'Canceltitle in cancel button
textPlaceholder'Search'placeholder value
hideMarkerOnCollapsefalseremove circle and marker on search control collapsed
position'topleft'position in the map
marker{}custom L.Marker or false for hide
marker.iconfalsecustom L.Icon for maker location or false for hide
marker.animatetrueanimate a circle over location found
marker.circleL.CircleMarker optionsdraw a circle in location found

Events

EventDataDescription
'search:locationfound'{latlng, title, layer}fired after moved and show markerLocation
'search:expanded'{}fired after control was expanded
'search:collapsed'{}fired after control was collapsed

Methods

MethodArgumentsDescription
setLayer()L.LayerGroup()set layer search at runtime
showAlert()'Text message'show alert message
searchText()'Text searched'search text by external code

Examples

(require src/leaflet-search.css)

Adding the search control to the map:

var searchLayer = L.layerGroup().addTo(map);
//... adding data in searchLayer ...
map.addControl( new L.Control.Search({layer: searchLayer}) );
//searchLayer is a L.LayerGroup contains searched markers

Short way:

var searchLayer = L.geoJson().addTo(map);
//... adding data in searchLayer ...
L.map('map', { searchControl: {layer: searchLayer} });

AMD module:

require(["leaflet", "leafletSearch"],function(L, LeafletSearch) {

	//... initialize leaflet map and dataLayer ...

	map.addControl( new LeafletSearch({
		layer: dataLayer
	}) );
});

Build

Therefore the deployment require npm installed in your system.

npm install
npx grunt

Use Cases

This list is intended to be of utility for all developers who are looking web mapping sample code to solve complex problems of integration with other systems using Leaflet Control Search.

Anyone can add the link of your website

(spamming urls will be automatically deleted)

4.0.0

8 months ago

3.0.10

9 months ago

3.0.11

9 months ago

3.0.9

1 year ago

3.0.4

1 year ago

3.0.3

2 years ago

3.0.5

1 year ago

3.0.2

3 years ago

3.0.1

3 years ago

3.0.0

3 years ago

2.9.11

3 years ago

2.9.9

3 years ago

2.9.8

5 years ago

2.9.7

6 years ago

2.9.6

6 years ago

2.9.5

6 years ago

2.9.0

6 years ago

2.8.0

6 years ago

2.4.3

6 years ago

2.4.2

6 years ago

2.4.0

6 years ago

2.3.7

6 years ago

2.3.6

7 years ago

2.3.5

7 years ago

2.3.3

7 years ago

2.3.2

7 years ago

2.3.0

7 years ago

2.7.2

7 years ago

2.7.0

8 years ago

2.6.1

8 years ago

2.6.0

8 years ago

2.5.0

8 years ago

2.1.0

8 years ago

2.0.1

8 years ago

1.9.8

8 years ago

1.9.7

8 years ago

1.9.6

8 years ago

1.9.5

8 years ago

1.9.2

8 years ago

1.9.1

8 years ago

1.9.0

8 years ago

1.8.5

8 years ago

1.8.4

9 years ago

1.8.1

9 years ago

1.7.8

9 years ago

1.7.5

9 years ago

1.7.3

9 years ago

1.6.1

9 years ago

1.6.0

9 years ago

1.5.9

9 years ago

1.5.8

9 years ago

1.5.7

9 years ago

1.5.5

10 years ago

1.5.3

10 years ago

1.5.2

10 years ago

1.5.1

10 years ago

1.5.0

10 years ago

1.4.7

10 years ago

1.4.6

10 years ago

1.4.5

11 years ago

1.4.2

11 years ago