地図の神様

Results 12 issues of 地図の神様

Was able to make the geometry simpler. I am using [OpenStreetMaps ocean data](https://osmdata.openstreetmap.de/data/water-polygons.html) that is broken into pieces and then tilizing them. So for every tile I have to stitch/union...

bug

fixes https://github.com/cloudflare/miniflare/issues/326 When a browser accepts a request, it first converts anything not within utf-8 like so: My request: `http://localhost:8788/ń.html` What the server sees: `http://localhost:8788/%C5%84.html` What miniflare looks for: `%C5%84.html`...

Closes https://github.com/cloudflare/miniflare/issues/322 * Adds function `flushAlarms(storage: StorageFactory, ids: DurableObjectID[])` to the Durable Object Plugin * Adds jest global function `flushDurableObjectAlarms(ids: DurableObjectId[]): Promise` If no `ids` are provided, all alarms are...

Fixes https://github.com/cloudflare/miniflare/issues/321

Fixes https://github.com/cloudflare/miniflare/issues/318 While `BUCKET.put` will never create this problem, I found adding large data manually to r2-cache using symbolic links failed. The size reported would be the size of the...

https://github.com/cloudflare/miniflare/blob/master/packages/storage-file/src/helpers.ts#L40 If a file is a symbolic link, the size of the symbolic link is returned rather than the actual file size. This can be fixed by using [realpath](https://nodejs.org/api/fs.html#fspromisesrealpathpath-options) I...

I might be doing this a bit wrong, but I want caps lock to be delete if pressed alone, but hyper key if pressed with other keys. When I play...

```js import esbuild from 'esbuild' import watPlugin from 'esbuild-plugin-wat' import aliasPlugin from 'esbuild-plugin-path-alias' import path from 'path' import { fileURLToPath } from 'url' import { minify } from 'uglify-js' const...

Resolves https://github.com/cloudflare/workers-sdk/issues/4383 TODO: - [x] QUANTILEWEIGHTED function - [x] parse "INTERVAL 'X' DAY" and build a function - [x] vitest tests - [x] jest tests - [x] move sql exec...

**maplibre-gl-js version**: latest (3.6.1) **browser**: any/all (Chrome, Firefox, Safari, etc.) ### Steps to Trigger Behavior 1. Use example (style most important): https://gist.github.com/CraigglesO/2c9a3f741c6f3c7d276dde282aa82e6e 2. Zoom in from 2 to 4 3....