How to use the esri-leaflet.featureLayer function in esri-leaflet

To help you get started, we’ve selected a few esri-leaflet examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github wq / wq.app / packages / map / src / mapserv.js View on Github external
map.addOverlayType('esri-feature', function(conf) {
    return esri.featureLayer(conf);
});
github wq / wq.app / packages / leaflet / src / overlays / EsriFeature.js View on Github external
createLeafletElement(props) {
        return featureLayer({ ...props });
    }
}
github digipolisantwerp / acpaas-ui_angular / packages / map / src / lib / leaflet / classes / leaflet-map.ts View on Github external
addFeatureLayer(config: any) {
		const featureLayer = new esri.featureLayer(config);
		this.map.addLayer(featureLayer);
		return featureLayer;
	}
github digipolisantwerp / acpaas-ui_angular / packages / map / lib / src / leaflet / classes / leaflet-map.ts View on Github external
addFeatureLayer(config: any) {
		const featureLayer = new esri.featureLayer(config);
		this.map.addLayer(featureLayer);
		return featureLayer;
	}