Commit Graph

13604 Commits

Author SHA1 Message Date
Quincy Morgan
43f5386dad Ignore unaffected nodes when determining if Disconnect is disabled due to lack of visibility (close #7944) 2020-09-02 13:14:19 -04:00
Quincy Morgan
b9005f85f1 Support cave entrances as vertices (close #7945) 2020-09-02 13:04:11 -04:00
Quincy Morgan
39e60e925f Add leisure=sports_hall preset (close #7818) 2020-09-02 12:05:22 -04:00
Quincy Morgan
6d9167920a Fix issue where inspector may not properly update after dragging a node (close #7386) 2020-09-02 11:46:39 -04:00
Quincy Morgan
6521184cf3 Properly use the "Continued an area" annotation for the second vertex in an area instead of "Started an area" (re: #7772) 2020-09-02 11:08:06 -04:00
Quincy Morgan
a1987e21d9 Fix issue where undoing the second-to-first vertex of a way when drawing would undo to the initial state of the way (close #7772) 2020-09-02 11:07:09 -04:00
Quincy Morgan
5ae62e1803 Support emergency water tanks as areas and add fields (close #7915) 2020-09-01 18:10:21 -04:00
Quincy Morgan
08e31006cd Add Dovecote preset (close #7916) 2020-09-01 17:50:18 -04:00
Quincy Morgan
d880c73456 Add Juice Fast Food preset (close #7904) 2020-09-01 17:44:11 -04:00
Quincy Morgan
e5d4fcfa44 Properly handle disambiguating tags on crossing multipolygons (close #7935) 2020-09-01 17:31:16 -04:00
Quincy Morgan
5ac315e460 Show Diet Types field by default on restaurants (close #7918) 2020-08-28 15:23:57 -04:00
Quincy Morgan
84c275c422 Add generic Telecom Feature fallback preset (close #7934) 2020-08-28 15:12:31 -04:00
Quincy Morgan
d56e677ed9 Merge pull request #7909 from brokemyspoke/add-parking-preset-for-parking-entrance
add parking preset for parking_entrance
2020-08-28 15:01:04 -04:00
Quincy Morgan
09592ccdcf Fix redundant instantiation of coreContext (close #7926) 2020-08-28 14:51:27 -04:00
Quincy Morgan
2d270f8ecd Merge pull request #7896 from ogbeche77/develop
Flat field added to apartment building
2020-08-20 14:27:43 -04:00
ogbeche77
289c340c3f Flat field added to apartment building 2020-08-20 20:04:46 +02:00
ogbeche77
cc992ab304 Units field added to Apartment Building 2020-08-20 10:34:05 +02:00
Quincy Morgan
fa03f99f32 Update shelter preset fields 2020-08-19 18:05:44 -04:00
Quincy Morgan
1237f99936 npm run imagery (close #7871) 2020-08-19 11:54:33 -04:00
ogbeche77
fd5365cd75 Units field to Apartment Building 2020-08-17 19:07:49 +02:00
Quincy Morgan
e312bcac99 Merge pull request #7875 from thibaultmol/Add-Website-and-Phone-to-office
Set Website and Phone as default flags on Office
2020-08-17 10:41:59 -04:00
Quincy Morgan
a27b652a16 Add derived data for #7912 2020-08-17 10:04:07 -04:00
Quincy Morgan
e86ea70424 Merge pull request #7912 from fakeharahman/wigs-preset
Wigs preset added
2020-08-17 09:52:10 -04:00
Fakeha Rahman
13410bd798 Wigs preset added 2020-08-17 17:10:53 +05:30
tim
dda0e40289 add parking preset for parking_entrance 2020-08-16 22:19:34 -04:00
Quincy Morgan
484f54f982 Don't copy building part or indoor tags to node when extracting point from a way or relation (close #7862) 2020-08-16 17:18:16 -04:00
Quincy Morgan
4224e39793 Deprecate some fast_food values 2020-08-16 16:54:07 -04:00
Quincy Morgan
59aa79548e Use tram crossing tags when connecting crossing tram tracks with roads/paths (close #7902) 2020-08-15 13:25:26 -04:00
Quincy Morgan
7c0e25e193 Add road and path tram crossing presets (re: #7902) 2020-08-15 13:15:02 -04:00
Quincy Morgan
ee114b5de1 Add oneway to moreFields of ferry routes 2020-08-15 12:58:04 -04:00
Quincy Morgan
b87e46fad9 Merge pull request #7874 from fakeharahman/scuba-search
added snorkel shop as search item for scuba shop
2020-08-14 14:53:59 -04:00
Fakeha Rahman
8a6ebdd38d fixed indents 2020-08-13 11:54:16 +05:30
Fakeha Rahman
126571c139 snorkel shop ammendments 2020-08-13 00:14:01 +05:30
Quincy Morgan
cbf6b151cf Merge pull request #7895 from til-schneider/patch-2
Fix geometries detection in preset_fields.js
2020-08-12 12:26:19 -04:00
Quincy Morgan
f1793c6b27 Merge pull request #7897 from peternewman/patch-7
Fix another changelog typo
2020-08-12 12:25:13 -04:00
Quincy Morgan
008eb22f4a Merge pull request #7894 from til-schneider/patch-1
Fix export of `geoVecLengthSquare`
2020-08-12 12:24:29 -04:00
Peter Newman
00989362d0 Fix another changelog typo 2020-08-12 17:19:10 +01:00
Quincy Morgan
bfd7779acd Merge pull request #7892 from peternewman/spelling-safe
Fix the safe typos
2020-08-12 11:52:09 -04:00
ogbeche77
5915270331 Flat field added to apartment building 2020-08-12 14:13:09 +02:00
Til Schneider
cf1c5085d1 Fix geometries detection in preset_fields.js
`renderDisclosureContent` in `preset_fields.js` tries to detect the geometry types of the selected entities, but the result is always `[]`.

Reason: The handler of `_entityIDs.reduce` always returns `true`. So the result of the `reduce` call is `true` as well. `Object.keys(true)` results in `[]`.

Fix: The handler of `_entityIDs.reduce` should return the map which collects the geometry types, so `geometries` will be be something like `["line", "vertex"]`.
2020-08-11 16:09:51 +02:00
Til Schneider
09cab72cf2 Fix export of geoVecLengthSquare 2020-08-11 11:47:04 +02:00
Peter Newman
cafb8cdbd5 Revert some more complicated typo fixes 2020-08-10 17:41:39 +01:00
Peter Newman
4205ca1d07 Fix the seemingly safe spellings found by codespell
Untested, only checked by inspection.

(cherry picked from commit 2c47a11008)
2020-08-10 17:32:37 +01:00
Quincy Morgan
248b29983d Add more fields to ferry routes 2020-08-06 20:36:22 -04:00
Thibault Molleman
6387af5067 Set Website and Phone as default flags on Office 2020-08-04 18:20:20 +02:00
Fakeha Rahman
2934508134 added snorkel shop as search item for scuba shop 2020-08-04 20:51:22 +05:30
Quincy Morgan
029f58f6e9 Set development version number 2020-07-31 10:34:28 -04:00
Quincy Morgan
1370160bc1 v2.18.4 2020-07-31 10:25:05 -04:00
Quincy Morgan
7b07010e94 npm run translations 2020-07-31 10:24:17 -04:00
Quincy Morgan
0e0148b8f2 Fix JS error caused by possible undefined uid of entities returned by OSM API (close #7858)
Add additional safety checks for undefined entity `version` or `changeset`
2020-07-30 15:45:56 -04:00