Ejemplo n.º 1
0
 internal static void LoadMapImagerySettings(this GeographicMapImagery geoImagery)
 {
     geoImagery.Opacity    = MapImagerySettings.Opacity;
     geoImagery.Visibility = MapImagerySettings.Visibility;
 }
Ejemplo n.º 2
0
 public GeoMapImagerySettings(GeographicMapImagery geoImagery)
 {
     this.Opacity    = geoImagery.Opacity;
     this.Visibility = geoImagery.Visibility;
 }
Ejemplo n.º 3
0
 internal static void SaveMapImagerySettings(this GeographicMapImagery geoImagery)
 {
     // if (geoImagery is GeographicMapImagery)
     MapImagerySettings = new GeoMapImagerySettings(geoImagery);
 }