在React-leaflet映射中获取确切的比例值?

时间:2018-10-25 22:16:12

标签: leaflet maps mapbox react-leaflet

我需要获取scale地图的react-leaflet的确切值。我现有的实现看起来像这样:

<Map
  bounds={mapBounds}
  maxZoom={CustomerMap.LEAFLET_MAX_ZOOM}
  minZoom={2}
  zoomControl={false}
  ref={el => this.map = el}
 >
     <TileLayer                        
        url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
        useCache={false}
        crossOrigin={true}
     />              
    <ScaleControl
        position='bottomleft'
    />
</Map>

尽管ScaleControl元素在UI上给出了近似比例,但我需要找到所使用的确切值。我在文档中找不到任何此类内容。

引用了this个类似的问题,但仍未回答。

0 个答案:

没有答案