I try this example in my Blazor server application, but it throws this error:
leaflet.markercluster.js:6 Uncaught ReferenceError: L is not defined
at leaflet.markercluster.js:6
Error: Microsoft.JSInterop.JSException: Cannot read property 'mapbox' of undefined
TypeError: Cannot read property 'mapbox' of undefined
Source:
L.mapbox.accessToken = 'token';
var map = L.mapbox.map(mapId)
.setView([19.053534, 47.489706], 12)
.addLayer(L.mapbox.styleLayer('mapbox://styles/mapbox/streets-v11'));
var markers = new L.MarkerClusterGroup();
Thank you in advance.
question from:
https://stackoverflow.com/questions/65944894/mapbox-with-leaflet-markercluster-in-blazor-server-app 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…