A plugin that adds the ability to search (geocode) a Leaflet-powered map using Mapzen Search or your own hosted version of the Pelias Geocoder API.
Requires the Leaflet mapping library. Supports Leaflet v0.7.3 (and higher) and v1.0.0 (currently targeting Release Candidate 2). (Previous Leaflet versions may work, but are not actively tested or supported.)
Browser support is IE8+ (more details below).
To use the Mapzen Search service, you need a Mapzen Search API key. Get one from the Mapzen developers portal. It's free!
Step 1: In HTML, import the required Leaflet JavaScript and CSS files. Start quickly with hosted libraries on cdnjs!
<!-- Load Leaflet from CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.js"></script>
<!-- Load geocoding plugin after Leaflet -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet-geocoder-mapzen/1.4.1/leaflet-geocoder-mapzen.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-geocoder-mapzen/1.4.1/leaflet-geocoder-mapzen.js"></script>
Step 2: In JavaScript, initialize your Leaflet map.
// This is an example of Leaflet usage; you should modify this for your needs.
var map = L.map('map').setView([40.7259, -73.9805], 12);
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map);
Step 3: In JavaScript, add your geocoder with your Mapzen Search API key.
L.control.geocoder('<your-api-key>').addTo(map);
Step 4: Rejoice!
It has much more detailed walkthrough instructions and is very friendly for beginners. No coding experience is necessary! Check it out here.
Experienced developers can install with npm:
npm install leaflet-geocoder-mapzen
And then import it in your module system. For instance, with Browserify:
// Require Leaflet first
var L = require('leaflet');
// Requiring the geocoder extends Leaflet automatically
require('leaflet-geocoder-mapzen');
// Now you can do step 2 and 3 from "Basic usage" instructions, above
This plugin implements the Universal Module Definition so you can also use it in AMD and CommonJS environments.
To import this plugin in ES2015 environments, the import
syntax is supported:
import L from 'leaflet';
import 'leaflet-geocoder-mapzen';
You can optionally specify additional settings to the plugin by passing in an object as a second argument to the geocoder()
method, like so:
var options = {
bounds: true,
position: 'topright',
expanded: true
};
L.control.geocoder('<your-api-key>', options).addTo(map);
Here are a list all the settings and their default values.
Some options affect the Mapzen Search / Pelias query itself.
option | description | default value |
---|---|---|
url | String. Host endpoint for a Pelias-compatible search API. | 'https://search.mapzen.com/v1' |
bounds | Leaflet LatLngBounds object or Boolean. If true , search is bounded by the current map view. You may also provide a custom bounding box in form of a LatLngBounds object. Note: bounds is not supported by autocomplete. |
false |
focus | Leaflet LatLng object or Boolean. If true , search and autocomplete prioritizes results near the center of the current view. You may also provide a custom LatLng value (in any of the accepted Leaflet formats) to act as the center bias. |
true |
latlng | Deprecated. Please use focus instead. | |
layers | String or Array. Filters results by layers (documentation). If left blank, results will come from all available layers. | null |
params | Object. An object of key-value pairs which will be serialized into query parameters that will be passed to the API. This allows custom queries that are not already supported by the convenience options listed above. For a full list of supported parameters, please read the Mapzen Search documentation. IMPORTANT: some parameters only work with the /search endpoint, and do not apply to /autocomplete requests! All supplied parameters are passed through; this library doesn't know which are valid parameters and which are not. In the event that other options conflict with parameters passed passed through params , the params option takes precedence. |
null |
These options affect the plugin's appearance and interaction behavior.
option | description | default value |
---|---|---|
position | String. Corner in which to place the geocoder control. Values correspond to Leaflet control positions. | 'topleft' |
attribution | String. Attribution text to include. Set to blank or null to disable. |
'Geocoding by <a href="https://mapzen.com/projects/search/">Mapzen</a>' |
placeholder | String. Placeholder text to display in the search input box. Set to blank or null to disable. |
'Search' |
title | String. Tooltip text to display on the search icon. Set to blank or null to disable. |
'Search' |
panToPoint | Boolean. If true , highlighting a search result pans the map to that location. |
true |
pointIcon | Boolean or String. If true , an icon is used to indicate a point result, matching the "venue" or "address" layer types. If false , no icon is displayed. For custom icons, pass a string containing a path to the image. |
true |
polygonIcon | Boolean or String. If true , an icon is used to indicate a polygonal result, matching any non-"venue" or non-"address" layer type. If false , no icon is displayed. For custom icons, pass a string containing a path to the image. |
true |
markers | Leaflet Marker options object or Boolean. If true , search results drops Leaflet's default blue markers onto the map. You may customize this marker's appearance and behavior using Leaflet marker options. |
true |
fullWidth | Integer or Boolean. If true , the input box will expand to take up the full width of the map container. If an integer breakpoint is provided, the full width applies only if the map container width is below this breakpoint. |
650 |
expanded | Boolean. If true , the search input is always expanded. It does not collapse into a button-only state. |
false |
autocomplete | Boolean. If true , suggested results are fetched on each keystroke. If false , this is disabled and users must obtain results by pressing the Enter key after typing in their query. |
true |
place | Boolean. If true , selected results will make a request to the service /place endpoint. If false , this is disabled. The geocoder does not handle responses to /place , you will need to do handle it yourself in the results event listener (see below). |
false |
// Different position
L.control.geocoder('<your-api-key>', {
position: 'topright'
}).addTo(map);
// Searching nearby [50.5, 30.5]
L.control.geocoder('<your-api-key>', {
focus: [50.5, 30.5], // this can also written as {lat: 50.5, lon: 30.5} or L.latLng(50.5, 30.5)
placeholder: 'Search nearby [50.5, 30.5]'
}).addTo(map);
// Taking just the center of the map (lat/lon) into account
L.control.geocoder('<your-api-key>', {
focus: true,
placeholder: 'Search nearby'
}).addTo(map);
// Searching within a bounding box
var southWest = L.latLng(40.712, -74.227);
var northEast = L.latLng(40.774, -74.125);
var bounds = L.latLngBounds(southWest, northEast);
L.control.geocoder('<your-api-key>', {
bounds: bounds,
placeholder: 'Search within ' + bounds.toBBoxString()
}).addTo(map);
// Taking just the bounding box of the map view into account
L.control.geocoder('<your-api-key>', {
bounds: true,
placeholder: 'Search within the bounds'
}).addTo(map);
// Coarse Geocoder: search only admin layers
L.control.geocoder('<your-api-key>', {
layers: 'coarse',
placeholder: 'Coarse geocoder'
}).addTo(map);
// Address Geocoder: search only (street) address layers
L.control.geocoder('<your-api-key>', {
layers: 'address',
placeholder: 'Address geocoder'
}).addTo(map);
// POI Geocoder: search only points of interests
L.control.geocoder('<your-api-key>', {
layers: 'venue',
placeholder: 'Venues geocoder'
}).addTo(map);
// Street level Geocoder: search only venue and street addresses
L.control.geocoder('<your-api-key>', {
layers: ['venue', 'address'],
placeholder: 'Street Geocoder'
}).addTo(map);
// Custom filtering and bounding parameters
// For valid parameters, see Mapzen Search documentation for
// search (https://mapzen.com/documentation/search/search/)
// and autocomplete (https://mapzen.com/documentation/search/autocomplete/)
// Note that some parameters use dot notation and so must be quoted
// in JavaScript otherwise it will result in a syntax error
L.control.geocoder('<your-api-key>', {
params: {
sources: 'whosonfirst',
'boundary.country': 'AUS'
},
placeholder: 'Results via Who’s on First in Australia'
}).addTo(map);
// Customizing layer icons
L.control.geocoder('<your-api-key>', {
pointIcon: 'http://www.somewhereontheweb.com/download/img/point.png',
polygonIcon: 'https://cloud.com/polygon-icon.svg'
}).addTo(map);
// Disabling layer icons
L.control.geocoder('<your-api-key>', {
pointIcon: false,
polygonIcon: false
}).addTo(map);
// Disable zoom/pan to a point while browsing the results (up/down arrows)
L.control.geocoder('<your-api-key>', {
panToPoint: false
}).addTo(map);
// Set the geocoder to always be the full width of the map
// By default, the geocoder is only full width when the screen is less than 650 pixels wide
L.control.geocoder('<your-api-key>', {
fullWidth: true
}).addTo(map);
// Disable markers for search results
L.control.geocoder('<your-api-key>', {
markers: false
}).addTo(map);
// Force the geocoder to always be in the expanded state
L.control.geocoder('<your-api-key>', {
expanded: true
}).addTo(map);
// Changing attribution
// By default, adds "Geocoding by Mapzen" text with a link
// You can remove this if you like, or change the text.
L.control.geocoder('<your-api-key>', {
attribution: null
}).addTo(map);
Examples with running code can be found in the examples directory.
You can instantiate a geocoder with the new
keyword. Notice that the class names are capitalized. This is what actually happens under the hood of L.control.geocoder()
, so this syntax does not do anything different, but you may prefer it for clarity or stylistic reasons.
new L.Control.Geocoder('<your-api-key>').addTo(map);
When instantiating a geocoder, you may assign it to a variable. This will allow you to use its methods later on.
var geocoder = L.control.geocoder('<your-api-key>');
// or with `new` keyword
var geocoder = new L.Control.Geocoder('<your-api-key>');
// later
geocoder.addTo(map);
The plugin extends Leaflet's Control class, so you may use any of those methods to modify plugin behavior in your script.
// examples
geocoder.setPosition('topright');
var element = geocoder.getContainer();
geocoder.removeFrom(map); // or geocoder.remove() in Leaflet v1
You can retrieve the current version of the geocoder.
console.log(geocoder.version);
There are additional methods on the geocoder that you can use.
// Expand the geocoder.
// Fires the `expand` event.
geocoder.expand();
// Collapse the geocoder.
// This works even if the option `expanded` is set to true!
// Fires the `collapse` event.
geocoder.collapse();
// Focus on the geocoder input.
// This will also expand the geocoder if it's collapsed.
geocoder.focus();
// Removes focus from the geocoder input.
// This also clears results and collapses the geocoder (if enabled).
geocoder.blur();
// Clears inputs and results from the geocoder control.
// This does not affect collapse or expanded state, and does not remove focus.
// Fires the `reset` event.
geocoder.reset();
The geocoder includes all of Leaflet's events methods and adds additional events that you can subscribe to, so that you can customize what happens when users interact with the geocoder. When you instantiate a new geocoder, assign it to variable, as above, and then you can use the event methods to listen for the events that it's firing. For example:
geocoder.on('select', function (e) {
console.log('You’ve selected', e.feature.properties.label);
});
All of Leaflet's event methods are available, such as on
, off
, once
, and so on. The exact syntax and how it behaves are inherited from the version of Leaflet you are plugging into, so there are slight differences between the 0.7.x version line and the 1.0.0 version line.
The following events are fired:
event | description |
---|---|
results | Fired when search results are obtained. |
error | Fired if there was an error with a search request. |
select | Fired when a result is actively selected from the results list (not just highlighted.) |
highlight | Fired when a result is highlighted by the up/down arrow keys. |
expand | Fired when the geocoder is expanded. |
collapse | Fired when the geocoder is collapsed. |
reset | Fired when the geocoder is reset ("x" button is clicked). |
focus | Fired when the geocoder is focused on the input. |
blur | Fired when the geocoder loses focus on the input. |
Here is a demo of the events.
Certain events will pass data as the first argument to the event listener's callback function.
In addition to the base event object from Leaflet, the event object will contain these other useful properties:
property | description |
---|---|
endpoint | A string of the Mapzen Search API endpoint that was called. |
requestType | A string, either autocomplete , search , or place , depending on the request made. |
params | An object containing the parameters that have been passed to the Mapzen Search request. |
results | The original response object returned from Mapzen Search, including all feature geometries and properties. |
If there was an error with the request, the event object will contain the additional properties:
property | description |
---|---|
errorCode | The HTTP status code received. More information. |
errorMessage | The error message string that the geocoder will display. |
property | description |
---|---|
originalEvent | The original event object (MouseEvent or KeyboardEvent ) reported by the browser. |
latlng | A Leaflet LatLng object representing the coordinates of the result. |
feature | The GeoJSON feature object from Mapzen Search, including feature geometry and properties. |
property | description |
---|---|
originalEvent | The original FocusEvent event object reported by the browser. |
This plugin supports all Leaflet-supported browsers except for Internet Explorer 7. It makes a cross-domain request in Javascript to obtain search results, which is not supported in IE7 without JSONP. Mapzen Search does not support API requests in JSONP.
This project was renamed as of v1.3.0 to be more closely associated with Mapzen Search, the hosted geocoding service provided by Mapzen that requires an API key. You can still point the geocoder at a different service running Pelias, Mapzen's open-source geocoder, by changing the url
option (see Query behavior, above) to the desired endpoint. If an API key is not required, the parameter may be omitted or be set to undefined
or null
.
Properties and methods used internally by the geocoder are also available on the returned object. These are purposefully not private or obscured, but they are also not publicly documented right now, since functionality may fluctuate without notice. Depending on usage and demand we will lock down and document internal properties and methods for general use. Please let us know in the issues tracker if you have feedback.
Let us know if you have a project you'd like to share!