我需要获取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个类似的问题,但仍未回答。