You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting URL to an address that delivers valid JSON doesn't work. As in the demo, you'll only get some 'undefined' stuff. Debugging turned out the following error in line 736 of file src/leaflet-search.js:
self._recordsCache = self._formatData(self, data)
should be self._recordsCache = self._formatData(data)
The text was updated successfully, but these errors were encountered:
Setting URL to an address that delivers valid JSON doesn't work. As in the demo, you'll only get some 'undefined' stuff. Debugging turned out the following error in line 736 of file src/leaflet-search.js:
self._recordsCache = self._formatData(self, data)
should be
self._recordsCache = self._formatData(data)
The text was updated successfully, but these errors were encountered: