I cannot get an esri booklet for working with ReactJS & # 8594; basemapLayer undefined

After npm install packages esri-leafletand leafleti get the following error

enter image description here

This is my map component:

import React from 'react'
import ReactDOM , {render} from 'react-don'

import L from 'esri-leaflet'
// import L from 'leaflet'     <-- won't work as well


class Map extends React.Component{

    componentDidMount(){

        let element = this.refs.mapRef

        // let map = L.map(element).setView([-41.2858, 174.78682], 14);
        var map = L.map(this.refs.mapRef).setView([45.528, -122.680], 13)

        L.esri.basemapLayer("Streets").addTo(map);

        console.log("ESRI::",L.esri);

        var parks = L.esri.featureLayer({
            url: "https://services.arcgis.com/rOo16HdIMeOBI4Mb/arcgis/rest/services/Portland_Parks/FeatureServer/0",
            style: function() {
             return {
                 color: "#70ca49",
                 weight: 2
             };
            }
        }).addTo(map);
    }


    render(){
        return(
            <div>
                <h1>Maps page</h1>
                <div id='map' ref="mapRef" style={{height: "380px"}}></div>
            </div>
        )
    }

}

export default Map

What could be the problem?

+4
source share
1 answer

Install the 1.0.0-rc.1version leafletusing the command npm i leaflet@1.0.0-rc.1, esri-leafletdoes not require a version, so it’s simple npm i esri-leaflet. Here are your requirements for the component:

require('leaflet');
import esri from 'esri-leaflet';

And then use layers through esriand it should work:

esri.basemapLayer...
esri.featureLayer...
+2
source

Source: https://habr.com/ru/post/1648631/


All Articles