(
self,
data: dict,
feature_identifier: str,
geojson_obj: GeoJson,
)
| 881 | """ |
| 882 | |
| 883 | def __init__( |
| 884 | self, |
| 885 | data: dict, |
| 886 | feature_identifier: str, |
| 887 | geojson_obj: GeoJson, |
| 888 | ): |
| 889 | self.data = data |
| 890 | self.feature_identifier = feature_identifier |
| 891 | self.geojson_obj = geojson_obj |
| 892 | |
| 893 | def get_style_map(self, style_function: Callable) -> TypeStyleMapping: |
| 894 | """Return a dict that maps style parameters to features.""" |
nothing calls this directly
no outgoing calls
no test coverage detected