[Location] Upated the tutorial of Location Manager
authorYoung-Ae Kang <youngae.kang@samsung.com>
Mon, 11 Jan 2016 08:09:38 +0000 (17:09 +0900)
committerYoung-Ae Kang <youngae.kang@samsung.com>
Mon, 11 Jan 2016 08:11:45 +0000 (17:11 +0900)
Signed-off-by: Young-Ae Kang <youngae.kang@samsung.com>
Change-Id: I59463b4ce72833d1bef93c8a822c9a6035e4c3c2

org.tizen.tutorials/html/native/location/location_tutorial_n.htm

index 1b86fff..36982a6 100644 (file)
@@ -10,7 +10,7 @@
     <script type="text/javascript" src="../../scripts/common.js" charset="utf-8"></script>
     <script type="text/javascript" src="../../scripts/core.js" charset="utf-8"></script>
     <script type="text/javascript" src="../../scripts/search.js" charset="utf-8"></script>
-  <title>Location: Using Location Information and Service</title>
+  <title>Location Manager: Using Location Information and Service</title>
  </head>
 <body onload="prettyPrint()" style="overflow: auto;">
 
@@ -38,7 +38,7 @@
 </div>
 
 <div id="container"><div id="contents"><div class="content">
-<h1>Location: Using Location Information and Service</h1>
+<h1>Location Manager: Using Location Information and Service</h1>
 
 
 <p>This tutorial demonstrates how you can retrieve and use location information, and track routes.</p> 
@@ -76,7 +76,7 @@
 #include &lt;locations.h&gt;
 </pre></li>
 <li><p>Create a location manager handle using the <span style="font-family: Courier New,Courier,monospace">location_manager_create()</span> function before you use the location service.</p> 
-<p>In this example, the GPS is used as the source of the position data, so the first parameter is <span style="font-family: Courier New,Courier,monospace">LOCATIONS_METHOD_GPS</span>. You can use other values of the <span style="font-family: Courier New,Courier,monospace">location_method_e</span> enumeration (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__LOCATION__MANAGER__MODULE.html#gaec8a29c8b701753a7c9d91f4f8acfac5">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__LOCATION__MANAGER__MODULE.html#gaec8a29c8b701753a7c9d91f4f8acfac5">wearable</a> applications), such as <span style="font-family: Courier New,Courier,monospace;">LOCATIONS_METHOD_HYBRID</span> or <span style="font-family: Courier New,Courier,monospace;">LOCATIONS_METHOD_WPS</span>, but they are less accurate.</p>
+<p>In this example, the GPS is used as the source of the position data, so the first parameter is <span style="font-family: Courier New,Courier,monospace">LOCATIONS_METHOD_GPS</span>. You can use other values of the <span style="font-family: Courier New,Courier,monospace">location_method_e</span> enumeration (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__LOCATION__MANAGER__MODULE.html#gaec8a29c8b701753a7c9d91f4f8acfac5">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__LOCATION__MANAGER__MODULE.html#gaec8a29c8b701753a7c9d91f4f8acfac5">wearable</a> applications), such as <span style="font-family: Courier New,Courier,monospace;">LOCATIONS_METHOD_HYBRID</span> or <span style="font-family: Courier New,Courier,monospace;">LOCATIONS_METHOD_WPS</span>. <span style="font-family: Courier New,Courier,monospace;">LOCATIONS_METHOD_HYBRID</span> is use both <span style="font-family: Courier New,Courier,monospace;">LOCATIONS_METHOD_GPS</span> and <span style="font-family: Courier New,Courier,monospace;">LOCATIONS_METHOD_WPS</span>, but the latter is less accurate.</p>
 <pre class="prettyprint">
 location_manager_h manager;
 location_manager_create(LOCATIONS_METHOD_GPS, &amp;manager);
@@ -406,4 +406,4 @@ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga
 </script>
 
 </body>
-</html>
\ No newline at end of file
+</html>