-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right click identification #839
base: rgis-develop
Are you sure you want to change the base?
Conversation
addon/components/flexberry-map.js
Outdated
prevTab: '' | ||
}); | ||
|
||
let identifyTool = leafletMap.flexberryMap.tools.getEnabled(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Вот это сочетание немного спорное, т.к. логика по открыванию сайдбара и вкладкам - это больше к прикладному коду относится, а ты дорабатываешь технологию.
Есть возможность идентификацию включать и по кнопке в тулбаре, это у нас она там выключена и унесена в сайдбар.
Поэтому идентификацию (соответствующий tool) хорошо бы включать по имени, а не через вызов из прикладного кода
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Исправил, вызываю identify-visible-rectangle напрямую
addon/components/flexberry-map.js
Outdated
} | ||
|
||
this.set('prevEnabledTools', null); | ||
leafletMap.flexberryMap.tools.enable('drag'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
а тут бы может запоминать где-то предыдущий инструмент и включать именно предыдущий, а не просто drag
может быть проверять что он и списка "нормально включаемых" ) если нет, тогда уже drag
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Исправлено, определено в rightClickAvailiblePrevMapTools
addon/components/flexberry-map.js
Outdated
@type String | ||
@default null | ||
*/ | ||
rightClickToolName: null, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Давай поставим значение по умолчанию зачем издеваться над прикладными проектами, и заставлять гадать, если у нас пока по сути один инструмент предполагается?)
Возможность переопределения - это отлично. но вот необходимость гадать - это уже плохо.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Исправил, всё тут
ember-flexberry-gis/addon/services/maptool-options.js
Lines 3 to 20 in 7617335
export default Ember.Service.extend({ | |
/** | |
Flag: indicates whether tool is performed when right-clicking on map. | |
@property isRightClickToolAvailable | |
@type Bool | |
@default false | |
*/ | |
isRightClickToolAvailable: false, | |
/** | |
Map tool that should be enabled when right clicking | |
@property rightClickToolName | |
@type String | |
@default 'identify-visible-rectangle' | |
*/ | |
rightClickToolName: 'identify-visible-rectangle', |
addon/components/flexberry-map.js
Outdated
@property rightClickAvailiblePrevMapTools | ||
@type String [] | ||
*/ | ||
rightClickAvailiblePrevMapTools: [], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
И тут тоже можно значение по умолчанию задать. хотя бы тот же drag и zoom-in/zoom-out
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Исправил, всё тут
ember-flexberry-gis/addon/services/maptool-options.js
Lines 3 to 30 in 7617335
export default Ember.Service.extend({ | |
/** | |
Flag: indicates whether tool is performed when right-clicking on map. | |
@property isRightClickToolAvailable | |
@type Bool | |
@default false | |
*/ | |
isRightClickToolAvailable: false, | |
/** | |
Map tool that should be enabled when right clicking | |
@property rightClickToolName | |
@type String | |
@default 'identify-visible-rectangle' | |
*/ | |
rightClickToolName: 'identify-visible-rectangle', | |
/** | |
Right click map tool options | |
@property rightClickToolProperties | |
@type Object | |
@default null | |
*/ | |
rightClickToolProperties: null, | |
addon/components/flexberry-map.js
Outdated
|
||
// ПКМ обработчик карты пока умеет работать только с identify-visible-rectangle | ||
// this.rightClickToolProperties должен содержать перечень слоев для идентификации | ||
if (this.get('rightClickToolName') !== 'identify-visible-rectangle' || !this.get('rightClickToolProperties')) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
давай все таки тут имя зашивать не будем, иначе какой смысл от того, что мы дали его определять? пусть будет на совести прикладного разработчика
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Исправил
Quality Gate passedIssues Measures |
Идентификация по правой кнопке. РГИС ПК 5 очередь. 5 этап