Extends L.esri.service
L.esri.map is an abstraction for interacting with Map Services running on ArcGIS Online and ArcGIS Server that allows you to make requests to the API, as well as query and identify published features.
Constructor
| Constructor | Description |
|---|---|
L.esri.map | options for configuring the ArcGIS Server or ArcGIS Online map service you would like to consume. Options includes a url parameter which refers to the ArcGIS Server or ArcGIS Online service you would like to consume. |
Options
L.esri.map accepts all L.esri.service options.
Events
L.esri.map fires all L.esri.service events.
Methods
| Method | Returns | Description |
|---|---|---|
query() | this | Returns a new L.esri.queryobject that can be used to query this service. |
identify() | this | Returns a new L.esri.identifyFeaturesobject that can be used to identify features contained within this service. |
find() | this | Returns a new L.esri.findobject that can be used to find features by text. |
Examples
Identify task
var map = new L.Map('map').setView([45.543, -122.621], 5);
var service = L.esri.mapService({
url: 'https://sampleserver6.arcgisonline.com/arcgis/rest/services/WorldTimeZones/MapServer'
});
service.identify()
.on(map)
.at([45.543, -122.621])
.layers('visible:1')
.run(function (error, featureCollection, response) {
if (error) {
console.log(error);
return;
}
console.log('UTC Offset: ' + featureCollection.features[0].properties.ZONE);
});Find task
var service = L.esri.mapService({
url: 'https://carto.nationalmap.gov/arcgis/rest/services/govunits/MapServer'
});
service.find()
.layers('18')
.text('Colorado')
.searchFields('GNIS_NAME')
.run(function (error, featureCollection, response) {
if (error) {
console.log(error);
return;
}
console.log('Found GNIS ID: ' + featureCollection.features[0].properties.GNIS_ID + ' for the state of ' + featureCollection.features[0].properties.STATE_NAME);
});