From 2cb8b411ddd4a55c133d8a2d63bc6927325b6204 Mon Sep 17 00:00:00 2001 From: Gilberto Galvis Date: Fri, 22 Oct 2021 17:36:07 -0400 Subject: [PATCH] fix issue #427 --- plotly/plotlyfig_aux/handlegraphics/UpdateGeoAxes.m | 4 ++-- plotly/plotlyfig_aux/handlegraphics/updateGeobubble.m | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plotly/plotlyfig_aux/handlegraphics/UpdateGeoAxes.m b/plotly/plotlyfig_aux/handlegraphics/UpdateGeoAxes.m index 62bfb7b6..8cd05d8b 100644 --- a/plotly/plotlyfig_aux/handlegraphics/UpdateGeoAxes.m +++ b/plotly/plotlyfig_aux/handlegraphics/UpdateGeoAxes.m @@ -34,8 +34,8 @@ function UpdateGeoAxes(obj, geoIndex) geoaxes.framecolor = 'rgb(120,120,120)'; if strcmpi(geoData.Basemap, 'streets-light') - geoaxes.oceancolor = 'rgba(20,220,220,1)'; - geoaxes.landcolor = 'rgba(20,220,220,0.2)'; + geoaxes.oceancolor = 'rgba(215,215,220,1)'; + geoaxes.landcolor = 'rgba(220,220,220,0.4)'; elseif strcmpi(geoData.Basemap, 'colorterrain') geoaxes.oceancolor = 'rgba(118,165,225,0.6)'; geoaxes.landcolor = 'rgba(190,180,170,1)'; diff --git a/plotly/plotlyfig_aux/handlegraphics/updateGeobubble.m b/plotly/plotlyfig_aux/handlegraphics/updateGeobubble.m index c4a74765..99e72af1 100644 --- a/plotly/plotlyfig_aux/handlegraphics/updateGeobubble.m +++ b/plotly/plotlyfig_aux/handlegraphics/updateGeobubble.m @@ -155,8 +155,8 @@ function updateGeobubble(obj,geoIndex) geoaxes.framecolor = 'rgb(120,120,120)'; if strcmpi(geoData.Basemap, 'streets-light') - geoaxes.oceancolor = 'rgba(20,220,220,1)'; - geoaxes.landcolor = 'rgba(20,220,220,0.2)'; + geoaxes.oceancolor = 'rgba(215,215,220,1)'; + geoaxes.landcolor = 'rgba(220,220,220,0.4)'; elseif strcmpi(geoData.Basemap, 'colorterrain') geoaxes.oceancolor = 'rgba(118,165,225,0.6)'; geoaxes.landcolor = 'rgba(190,180,170,1)';