Metadata-Version: 2.3
Name: goodmap_nothingshere
Version: 0.1.7
Summary: goodmap plugin that shows popup if no point is visible in a view
License: MIT
Author: krzysztof.kolodzinski@problematy.pl
Requires-Python: >=3.12,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: goodmap (>=2.0.0a2,<3.0.0)
Description-Content-Type: text/markdown

# goodmap-nothingshere

goodmap plugin that shows popup if no point is visible in a view

## Installation

```sh
pip install goodmap_nothingshere
```

## Activation

Add the plugin to the `plugins` list in your Platzky database configuration.
The `name` must match the entry-point key declared in `pyproject.toml`:

```json
{
    "plugins": [
        {
            "name": "nothingshere",
            "config": {}
        }
    ]
}
```

## Development

This is a goodmap frontend plugin: the backend class subclasses a goodmap capability
base, and the frontend ships a React component per capability via Webpack Module
Federation. A plugin declares its capabilities by subclassing one or more of:

- `goodmap.plugin.MapOverlayPluginBase` — component mounted once over the map
  (exposed as `./MapOverlay`); this plugin's capability
- `goodmap.plugin.MarkerFieldPluginBase` — component rendering/wrapping a marker-popup
  field (exposed as `./MarkerField`)

goodmap derives each capability's Module Federation module from the base class name,
so the webpack `exposes` keys must match, and the webpack container `name` must equal
the entry-point key (`nothingshere`). See goodmap's `examples/plugins/silly-gif` for
the reference layout.

