Ben Clark
Ben Clark
This is the first in a potential series of PRs to cut iD over to use the iD-SDK math library (https://www.npmjs.com/package/@id-sdk/math). The iD-SDK is an effort to reduce the amount...
### Description Over the past couple of years we've fielded requests to have folks add their own GPX trace data, geojson data, or vector tile data to the map. This...
This PR is a work-in-progress to demonstrate the following Proof-of-concept: locator overlays for Rapid Datasets. The procedure is as follows: 1) Create a public vector data endpoint for the heatmap...
### Description In the lines step, we're suggesting that the user click on an intersection to 'split' it and disconnect the way from the road network. However, our highlighting is...
Strangely, the map rendering slows way, way down when we zoom in to the map. Taking a trace shows that this is because of the pixi rendering pipeline- very little...
### Description OSM US Slack user 'Ward' reported that the chester county PA buildings/address points disappeared sometime last week. They are unable to see either the address points nor the...
Currently, the renderer for polygons draws both an outline and an area fill. The fill depends on whether we are using wireframe mode, partial fill mode, or full-fill mode: https://user-images.githubusercontent.com/1887955/207692685-9a3b5bf9-be71-42e1-b7ac-54d1a6b11a31.mov...
Currently our code is sprinkled with `import * as PIXI from 'pixi.js';` we should REALLY convert these to explicit imports a la: `import {Container, Rectangle} from 'pixi';` The latter will...