Undefined array key "reset_map"

Created on 2 May 2025, 4 days ago

Problem/Motivation

I get this warning: Undefined array key "reset_map" in Drupal\leaflet\LeafletService->leafletRenderMap() (line 157 of /drupal/web/modules/contrib/leaflet/src/LeafletService.php)

Solution:
change:

    if (is_array($map['settings']['reset_map']) && array_key_exists('control', $map['settings']['reset_map']) && $map['settings']['reset_map']['control']) {

into:
if (isset($map['settings']['reset_map']) && is_array($map['settings']['reset_map']) && array_key_exists('control', $map['settings']['reset_map']) && $map['settings']['reset_map']['control']) {

🐛 Bug report
Status

Active

Version

10.2

Component

Code

Created by

🇳🇱Netherlands promes

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024