Joshua Chamberlain

Results 8 issues of Joshua Chamberlain

~~This is a first draft to demonstrate an approach to solving for #944 (Dynamic loading of maps). This is not meant to be ready for merge, but I've run it...

As a newcomer to the project, the mixed use of "provider" and "register" in the code base took me some time to grok. ## Meanings of "Provider" 1. **A wrapper...

Hello! This ticket is trying to do two things: 1) consolidate some details of prior requests for dynamic configuration, 2) specify the requirements of my current project at GeoStrategies. I...

## Problem [RangeFamilyAt](https://github.com/go-spatial/geom/blob/3cd2f5a9a082dd4f827c9f9b69ba5d736d2dcb12/slippy/tile.go#L106) was rewritten in PR #99 and its behavior fundamentally changed. Previously, it returned: 1. The tile itself, plus 2. If zoom is less than the tile's zoom,...

## Problem [`PixelsToNative`](https://github.com/go-spatial/geom/blob/3cd2f5a9a082dd4f827c9f9b69ba5d736d2dcb12/slippy/projections.go#L8) should convert the accepted `pixels` number into projected/native units. Instead, it doesn't use the variable at all and merely returns the ratio of native to projected. ##...

## Expected `Grid.ToNative()` should return the top-left point of the given tile: ```go grid, _ := slippy.NewGrid(3857) tile := slippy.NewTile(5, 0, 0) point, _ := grid.ToNative(tile) fmt.Println(point) // [-2.003750834e+07 2.003750834e+07]...

When using ui-sortable with connected lists, a drag can only be cancelled in the first call to `update()`. However, the first time `update()` is called one often does not have...

enhancement
question
PRs welcome!

### Is your feature request related to a problem? Please describe. I would like to use MUI's `Select` component, but with the `multiple` flag enabled. See https://mui.com/material-ui/react-select/#multiple-select. Unfortunately, the `MuiSelect`...