File tree Expand file tree Collapse file tree
Providers/Maps/Google/Marker Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
2- "5diffEditor .ignoreTrimWhitespace" : true ,
2+ "diffEditor .ignoreTrimWhitespace" : true ,
33 "files.autoSave" : " off" ,
44 "editor.minimap.maxColumn" : 170 ,
55 "editor.wordWrapColumn" : 170 ,
6- "editor.formatOnSave" : false ,
6+ "editor.formatOnSave" : true ,
77 "editor.codeActionsOnSave" : {
88 "source.fixAll.eslint" : true
99 },
1010 "css.lint.fontFaceProperties" : " ignore" ,
11+ "scss.lint.fontFaceProperties" : " ignore" ,
1112 "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
1213 "[html]" : {
1314 "editor.defaultFormatter" : " vscode.html-language-features"
2122 "[json]" : {
2223 "editor.defaultFormatter" : " vscode.json-language-features"
2324 },
25+ "[scss]" : {
26+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
27+ },
2428 "[jsonc]" : {
2529 "editor.defaultFormatter" : " vscode.json-language-features"
2630 }
27- }
31+ }
Original file line number Diff line number Diff line change 1- @gnbm @ joselrio @ BenOsodrac @ bmarcelino-fe @ rugoncalves @ JoaoFerreira-FrontEnd @ OS-giulianasilva
1+ * @ gnbm @ joselrio @ BenOsodrac @ bmarcelino-fe @ rugoncalves @ JoaoFerreira-FrontEnd @ OS-giulianasilva
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ stages:
1818 - bash : |
1919 declare BRANCH
2020 BRANCH=$(system.pullRequest.sourceBranch)
21- echo "Map_Regressions_ ${BRANCH//[-]/}"
22- echo "##vso[task.setvariable variable=branch;]Map_Regressions_ ${BRANCH//[-]/}"
23- echo "##vso[task.setvariable variable=module;isoutput=true]Map_Regressions_ ${BRANCH//[-]/}"
21+ echo "Maps_Automation_ ${BRANCH//[-]/}"
22+ echo "##vso[task.setvariable variable=branch;]Maps_Automation_ ${BRANCH//[-]/}"
23+ echo "##vso[task.setvariable variable=module;isoutput=true]Maps_Automation_ ${BRANCH//[-]/}"
2424 name: branch_name
2525
2626 # Ping sample test page
Original file line number Diff line number Diff line change 11{
22 "name" : " outsystems-maps" ,
3- "version" : " 1.6.3 " ,
3+ "version" : " 1.6.4 " ,
44 "description" : " Outsystems Maps" ,
55 "license" : " Apache v2.0" ,
66 "scripts" : {
Original file line number Diff line number Diff line change 11// eslint-disable-next-line @typescript-eslint/no-unused-vars
22namespace OSFramework . Maps . Constants {
33 /* OutSystems Maps Version */
4- export const OSMapsVersion = '1.6.3' ;
4+ export const OSMapsVersion = '1.6.4' ;
5+
56}
Original file line number Diff line number Diff line change @@ -82,7 +82,6 @@ namespace Provider.Maps.Google.Marker {
8282 OSFramework . Maps . Enum . ErrorCodes . LIB_FailedGeocodingMarker ,
8383 `Location of the Marker can't be empty.`
8484 ) ;
85- return ;
8685 } else {
8786 // Let's return a promise that will be resolved or rejected according to the result
8887 return new Promise ( ( resolve , reject ) => {
@@ -201,6 +200,9 @@ namespace Provider.Maps.Google.Marker {
201200 map : this . map . provider
202201 } ) ;
203202
203+ // Call this method so icon respects the sizes that are on config
204+ this . _setIconSize ( ) ;
205+
204206 // We can only set the events on the provider after its creation
205207 this . _setMarkerEvents ( ) ;
206208
@@ -255,14 +257,12 @@ namespace Provider.Maps.Google.Marker {
255257 case OSFramework . Maps . Enum . OS_Config_Marker . allowDrag :
256258 return this . _provider . setDraggable ( value ) ;
257259 case OSFramework . Maps . Enum . OS_Config_Marker . iconHeight :
260+ case OSFramework . Maps . Enum . OS_Config_Marker . iconWidth :
258261 this . _setIconSize ( ) ;
259262 return ;
260263 case OSFramework . Maps . Enum . OS_Config_Marker . iconUrl :
261264 this . _setIcon ( value ) ;
262265 return ;
263- case OSFramework . Maps . Enum . OS_Config_Marker . iconWidth :
264- this . _setIconSize ( ) ;
265- return ;
266266 case OSFramework . Maps . Enum . OS_Config_Marker . label :
267267 return this . _provider . setLabel ( value ) ;
268268 case OSFramework . Maps . Enum . OS_Config_Marker . title :
You can’t perform that action at this time.
0 commit comments