mirror of
https://github.com/FoggedLens/iD.git
synced 2026-04-21 11:16:36 +02:00
update osmose service:
* change API requests to use `.geojson` ending * drop issue type 8360-1, which doesn't seem top be supported anymore fixes #9208
This commit is contained in:
@@ -61,6 +61,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
|
||||
* Fix missing styling when rendering of proposed footway/cycleway/path bridges ([#9172], thanks [@k-yle])
|
||||
* Fix some boundary lines (and preset) not hidden by the map features filter ([#9171], thanks [@k-yle])
|
||||
* Fix iD using invalid user selected imagery ([#8732], thanks [@renancleyson-dev])
|
||||
* Make osmose QA service work again by upgrading API calls to the newest API version ([#9208])
|
||||
#### :rocket: Presets
|
||||
* Disable taginfo suggestions for the `via` field ([#9140], thanks [@k-yle])
|
||||
* Treat `surface=chipseal` as a paved surface ([#9139], thanks [@k-yle])
|
||||
@@ -91,6 +92,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
|
||||
[#9169]: https://github.com/openstreetmap/iD/issues/9169
|
||||
[#9171]: https://github.com/openstreetmap/iD/pull/9171
|
||||
[#9172]: https://github.com/openstreetmap/iD/pull/9172
|
||||
[#9208]: https://github.com/openstreetmap/iD/issues/9208
|
||||
[@furkanmutlu]: https://github.com/furkanmutlu
|
||||
[@JackNUMBER]: https://github.com/JackNUMBER
|
||||
[@aaditya0000]: https://github.com/aaditya0000
|
||||
|
||||
@@ -118,7 +118,6 @@
|
||||
"8300-118": "fas-tachometer-alt",
|
||||
"8300-119": "fas-tachometer-alt",
|
||||
"8300-120": "fas-tachometer-alt",
|
||||
"8360-1": "temaki-bench",
|
||||
"8360-2": "maki-bicycle",
|
||||
"8360-3": "temaki-security_camera",
|
||||
"8360-4": "temaki-fire_hydrant",
|
||||
|
||||
@@ -123,7 +123,7 @@ export default {
|
||||
if (_cache.loadedTile[tile.id] || _cache.inflightTile[tile.id]) return;
|
||||
|
||||
let [ x, y, z ] = tile.xyz;
|
||||
let url = `${_osmoseUrlRoot}/issues/${z}/${x}/${y}.json?` + utilQsString(params);
|
||||
let url = `${_osmoseUrlRoot}/issues/${z}/${x}/${y}.geojson?` + utilQsString(params);
|
||||
|
||||
let controller = new AbortController();
|
||||
_cache.inflightTile[tile.id] = controller;
|
||||
|
||||
Reference in New Issue
Block a user