Skip to content

Commit 7a6d265

Browse files
Merge pull request plotly#434 from plotly/fix_issue_427
fix issue plotly#427
2 parents 01679c4 + 2cb8b41 commit 7a6d265

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

plotly/plotlyfig_aux/handlegraphics/UpdateGeoAxes.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ function UpdateGeoAxes(obj, geoIndex)
3434
geoaxes.framecolor = 'rgb(120,120,120)';
3535

3636
if strcmpi(geoData.Basemap, 'streets-light')
37-
geoaxes.oceancolor = 'rgba(20,220,220,1)';
38-
geoaxes.landcolor = 'rgba(20,220,220,0.2)';
37+
geoaxes.oceancolor = 'rgba(215,215,220,1)';
38+
geoaxes.landcolor = 'rgba(220,220,220,0.4)';
3939
elseif strcmpi(geoData.Basemap, 'colorterrain')
4040
geoaxes.oceancolor = 'rgba(118,165,225,0.6)';
4141
geoaxes.landcolor = 'rgba(190,180,170,1)';

plotly/plotlyfig_aux/handlegraphics/updateGeobubble.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ function updateGeobubble(obj,geoIndex)
155155
geoaxes.framecolor = 'rgb(120,120,120)';
156156

157157
if strcmpi(geoData.Basemap, 'streets-light')
158-
geoaxes.oceancolor = 'rgba(20,220,220,1)';
159-
geoaxes.landcolor = 'rgba(20,220,220,0.2)';
158+
geoaxes.oceancolor = 'rgba(215,215,220,1)';
159+
geoaxes.landcolor = 'rgba(220,220,220,0.4)';
160160
elseif strcmpi(geoData.Basemap, 'colorterrain')
161161
geoaxes.oceancolor = 'rgba(118,165,225,0.6)';
162162
geoaxes.landcolor = 'rgba(190,180,170,1)';

0 commit comments

Comments
 (0)