[gnome-maps/wip/aerial: 8/8] Terrain is not the same as aerial



commit 7035545be071841b841a7f1be8050ba495f3a639
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Sat Apr 6 04:35:06 2013 +0300

    Terrain is not the same as aerial
    
    Also 'Satellite' seems more appr. to show in UI.

 src/mapView.js    |    2 +-
 src/properties.js |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/mapView.js b/src/mapView.js
index dbcec71..24ad0ac 100644
--- a/src/mapView.js
+++ b/src/mapView.js
@@ -33,7 +33,7 @@ const _ = imports.gettext.gettext;
 
 const MapType = {
    STREET:  Champlain.MAP_SOURCE_OSM_MAPQUEST,
-   TERRAIN: Champlain.MAP_SOURCE_OSM_AERIAL_MAP,
+   AERIAL: Champlain.MAP_SOURCE_OSM_AERIAL_MAP,
    CYCLING: Champlain.MAP_SOURCE_OSM_CYCLE_MAP,
    TRANSIT: Champlain.MAP_SOURCE_OSM_TRANSPORT_MAP
 }
diff --git a/src/properties.js b/src/properties.js
index 38b4012..935c38f 100644
--- a/src/properties.js
+++ b/src/properties.js
@@ -67,7 +67,7 @@ const Properties = new Lang.Class({
                                        orientation: Gtk.Orientation.VERTICAL });
         propsGrid.add(radioGrid);
         var radio = this.addMapTypeRadio(null, radioGrid, _("Street"), MapView.MapType.STREET);
-        this.addMapTypeRadio(radio, radioGrid, _("Terrain"), MapView.MapType.TERRAIN);
+        this.addMapTypeRadio(radio, radioGrid, _("Satellite"), MapView.MapType.AERIAL);
         this.addMapTypeRadio(radio, radioGrid, _("Cycling"), MapView.MapType.CYCLING);
         this.addMapTypeRadio(radio, radioGrid, _("Transit"), MapView.MapType.TRANSIT);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]