我正在使用Leaflet.js,并在用户交互(发生在地图div之外)上,我想获取当前位置(纬度,经度,缩放)。
我可以找到缩放比例,但是_lastCenter字段无法获取我的实际位置,而是从地图初始化中获取坐标。
如何获取当前坐标?
this.getZoom = function () { return map._zoom }
this.getLat = function () { return map._lastCenter.lat }
this.getLon = function () { return map._lastCenter.lng }