(self)
| 991 | |
| 992 | |
| 993 | def _ipython_display_(self): |
| 994 | bundle = { |
| 995 | 'application/geo+json': self.data, |
| 996 | 'text/plain': '<IPython.display.GeoJSON object>' |
| 997 | } |
| 998 | metadata = { |
| 999 | 'application/geo+json': self.metadata |
| 1000 | } |
| 1001 | display(bundle, metadata=metadata, raw=True) |
| 1002 | |
| 1003 | class Javascript(TextDisplayObject): |
| 1004 |