(latLng)
| 68 | } |
| 69 | |
| 70 | const latLng2Obj = (latLng) => |
| 71 | isPlainObject(latLng) ? latLng : { lat: latLng[0], lng: latLng[1] }; |
| 72 | |
| 73 | const _checkMinZoom = (zoom, minZoom) => { |
| 74 | if (process.env.NODE_ENV !== 'production') { |
no test coverage detected
searching dependent graphs…