GeoPandas
openlayers.geopandas.OLAccessor
Create a new OLAccessor
instance
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gdf
|
GeoDataFrame
|
The |
required |
Source code in openlayers/geopandas.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
|
explore(style=None, tooltip=True, controls=None, layer_id='geopandas', fit_bounds=True, webgl=True, **kwargs)
Create a vector layer and add it to a new Map
instance
Parameters:
Name | Type | Description | Default |
---|---|---|---|
style
|
FlatStyle | dict
|
The style applied to the layer.
If |
None
|
tooltip
|
bool | str
|
Whether a tooltip should be added to the map.
Either |
True
|
controls
|
list[ControlT | dict]
|
Controls initially added to the map |
None
|
layer_id
|
str
|
The ID of the layer |
'geopandas'
|
fit_bounds
|
bool
|
Whether to fit bounds |
True
|
webgl
|
bool
|
Whether the layer should be added to the map
as |
True
|
Returns:
Type | Description |
---|---|
MapWidget
|
A new |
Source code in openlayers/geopandas.py
to_layer(style=None, layer_id='geopandas', fit_bounds=True, webgl=True, **kwargs)
Return data frame as OL vector layer
Returns:
Type | Description |
---|---|
VectorLayer | WebGLVectorLayer
|
An OL vector layer |