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
if(prepareAppConfigInfo.appParams.includeOverviewMap){// Jump the overview map to candidate.obj.geometry after transforming to lat/long;// we've asked the server to give us the geometry in lat/long (outSR=4326) for Leafletif(candidate.obj.hasOwnProperty('geometry')){main.overviewMap.setView([candidate.obj.geometry.y,candidate.obj.geometry.x],prepareAppConfigInfo.appParams.overviewMapZoom);}else{main.overviewMap.setView([0,0],prepareAppConfigInfo.appParams.overviewMapZoom);}}
If the user has enabled the leaflet map the app crashes when a point has no geometry
We should probably just have the leaflet map default to 0,0 when it can't find a geometry on the point
The text was updated successfully, but these errors were encountered: