(self)
| 271 | self.assertIn('ArcGIS', plot.get(0).data) |
| 272 | |
| 273 | def test_plot_with_specific_tile_obj(self): |
| 274 | plot = self.df.hvplot.points('x', 'y', geo=False, tiles=hv.element.tiles.EsriImagery()) |
| 275 | self.assertEqual(len(plot), 2) |
| 276 | self.assertIsInstance(plot.get(0), hv.Tiles) |
| 277 | self.assertIn('ArcGIS', plot.get(0).data) |
| 278 | |
| 279 | def test_plot_with_specific_tile_obj_with_geo(self): |
| 280 | plot = self.df.hvplot.points('x', 'y', geo=True, tiles=hv.element.tiles.EsriImagery()) |