mirror of
https://github.com/sstent/aicyclingcoach-go.git
synced 2026-01-27 09:32:08 +00:00
9 lines
262 B
JavaScript
9 lines
262 B
JavaScript
export function updateCircle(layer, props, prevProps) {
|
|
if (props.center !== prevProps.center) {
|
|
layer.setLatLng(props.center);
|
|
}
|
|
if (props.radius != null && props.radius !== prevProps.radius) {
|
|
layer.setRadius(props.radius);
|
|
}
|
|
}
|