(leafletMap)
| 235 | * @param {L.Map} leafletMap - Leaflet Map 对象。 |
| 236 | */ |
| 237 | export function LeafletMapCoordSys(leafletMap) { |
| 238 | this._LeafletMap = leafletMap; |
| 239 | this.dimensions = ['lng', 'lat']; |
| 240 | this._mapOffset = _getMapOffset(leafletMap); |
| 241 | } |
| 242 | |
| 243 | LeafletMapCoordSys.prototype.dimensions = ['lng', 'lat']; |
| 244 |
nothing calls this directly
no test coverage detected