Computes the bounds of the object itself (not including it's children) in the form [[lat_min, lon_min], [lat_max, lon_max]].
(self)
| 120 | self.options = remove_empty(**kwargs) |
| 121 | |
| 122 | def _get_self_bounds(self): |
| 123 | """ |
| 124 | Computes the bounds of the object itself (not including it's children) |
| 125 | in the form [[lat_min, lon_min], [lat_max, lon_max]]. |
| 126 | |
| 127 | """ |
| 128 | return get_bounds(self.data, lonlat=True) |
| 129 | |
| 130 | |
| 131 | class TimelineSlider(JSCSSMixin, MacroElement): |
nothing calls this directly
no test coverage detected