Scaleline Control#
The Scaleline Control in ipyopenlayers displays a scale line on the map, providing users with a visual reference for the map’s scale. This helps users to understand the distances represented on the map at the current zoom level.
Example#
from ipyopenlayers import Map, ScaleLine, RasterTileLayer
# Create a map with initial zoom level and center coordinates
m = Map(center=[0, 0], zoom=2)
# Add layer
layer=RasterTileLayer()
m.add_layer(layer)
# Add a ScalelineControl to the map
scaleline_control = ScaleLine()
m.add_control(scaleline_control)
# Display the map
m