(self)
| 722 | |
| 723 | |
| 724 | def _ipython_display_(self): |
| 725 | bundle = { |
| 726 | 'application/geo+json': self.data, |
| 727 | 'text/plain': '<IPython.display.GeoJSON object>' |
| 728 | } |
| 729 | metadata = { |
| 730 | 'application/geo+json': self.metadata |
| 731 | } |
| 732 | display_functions.display(bundle, metadata=metadata, raw=True) |
| 733 | |
| 734 | class Javascript(TextDisplayObject): |
| 735 |