summaryrefslogtreecommitdiff
path: root/inc/engine/maps/GeoTiledMap.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/engine/maps/GeoTiledMap.h')
-rwxr-xr-xinc/engine/maps/GeoTiledMap.h44
1 files changed, 34 insertions, 10 deletions
diff --git a/inc/engine/maps/GeoTiledMap.h b/inc/engine/maps/GeoTiledMap.h
index 126ad22..673e472 100755
--- a/inc/engine/maps/GeoTiledMap.h
+++ b/inc/engine/maps/GeoTiledMap.h
@@ -373,20 +373,31 @@ public:
*/
void SetUpdateMapSignal(UpdateMapSignalFunctor slot);
- /**
- * This method sets the map type.
- *
- * @param aMapType A value indicating the new map type.
- */
+ /**
+ * This method sets the map type.
+ *
+ * @param aMapType A value indicating the new map type.
+ */
void SetMapType(MapType aMapType);
- /**
- * This method retrieves the map type.
- *
- * @return A value indicating the current map type.
- */
+ /**
+ * This method retrieves the map type.
+ *
+ * @return A value indicating the current map type.
+ */
MapType GetMapType() const;
+#ifdef TIZEN_MIGRATION
+ /**
+ * This method retrieves the current language of the map.
+ *
+ * A language is specified as an ISO 3166 alpha-2 two letter country-code
+ * followed by ISO 639-1 for the two-letter language code.
+ * Each language tag is composed of one or more "subtags" separated by hyphens (-).
+ * Each subtag is composed of basic Latin letters or digits only.
+ * For example, "ko-KR" for Korean, "en-US" for American English.
+ */
+#else
/*
* Available language options are:
* L"ara", L"chi", L"cht", L"dut", L"eng", L"ger", L"gle", L"fre", L"ita", L"spa", L"rus", L"pol", L"gre", L"wel"
@@ -401,8 +412,20 @@ public:
* "ita" (Italian), "spa" (Spanish), "rus" (Russian), "pol" (Polish),
* "gre" (Greek), "wel" (Welsh)
*/
+#endif
void SetMapLanguage(const String& aMapLanguage);
+#ifdef TIZEN_MIGRATION
+ /**
+ * This method retrieves the current language of the map.
+ *
+ * A language is specified as an ISO 3166 alpha-2 two letter country-code
+ * followed by ISO 639-1 for the two-letter language code.
+ * Each language tag is composed of one or more "subtags" separated by hyphens (-).
+ * Each subtag is composed of basic Latin letters or digits only.
+ * For example, "ko-KR" for Korean, "en-US" for American English.
+ */
+#else
/**
* This method retrieves the current language of the map.
*
@@ -412,6 +435,7 @@ public:
* "gle" (Irish), "fre" (French), "ita" (Italian), "spa" (Spanish),
* "rus" (Russian), "pol" (Polish), "gre" (Greek), "wel" (Welsh)
*/
+#endif
const String& GetMapLanguage() const;
/**