Add asthma#235
Open
johnarban wants to merge 25 commits into
Open
Conversation
…diately (minimal fix for errors when service gets flaky)
…state which doesn't reflect the service availability
…ayer that get's added asynchronously and is missed. claude identified that these could get missed. so sync the current order on the event and during init, and (new) right after init with nextTick
…get reported but won't break
…er. reduced timeout to 10 seconds. this mis more imporant with services are down or flaky. we will completely disable an item if both it is totally unavailable or display a warning if partially. frankly, 10 seconds is a long chance. in practice if it is taking more than a second, the map viewer will be difficult to use
…k reloading datasets, which depends on these being set
this had broken the layer order control
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add an asthma layer. The creates a feature layer handler, but in the end we actually just use MapLibre's GeoJson Layer since ESRI Feature Layers are just geojson objects. The grab county level data first, and only grab tract level data when zoomed in.
This was mostly implemented with Claude Code