Computes the bounds of the object itself. Because a marker has only single coordinates, we repeat them.
(self)
| 464 | ) |
| 465 | |
| 466 | def _get_self_bounds(self) -> TypeBoundsReturn: |
| 467 | """Computes the bounds of the object itself. |
| 468 | |
| 469 | Because a marker has only single coordinates, we repeat them. |
| 470 | """ |
| 471 | assert self.location is not None |
| 472 | return cast(TypeBoundsReturn, [self.location, self.location]) |
| 473 | |
| 474 | def render(self): |
| 475 | if self.location is None: |
nothing calls this directly
no outgoing calls
no test coverage detected