location guide updated 57/157357/2
authorkj7.sung <kj7.sung@samsung.com>
Tue, 24 Oct 2017 08:33:44 +0000 (17:33 +0900)
committerEditor Lionbridge <TizenEditor.SEL@lionbridge.com>
Wed, 25 Oct 2017 12:29:13 +0000 (15:29 +0300)
PS2: Reviewed

Signed-off-by: kj7.sung <kj7.sung@samsung.com>
Change-Id: I2e8186056a5617326e526cb1404d513ed8e976d5

org.tizen.guides/html/native/location_sensors/location_n.htm

index 73e9f96..6ee5206 100644 (file)
    <li>GPS, which uses the global positioning system</li>
    <li>WPS, which uses the Wi-Fi positioning system</li>
    <li>Hybrid, which selects the best method available at the moment</li>
+   <li>Passive, which passively receives location updates</li>
+   <li>Fused, which uses the fused location method</li>
   </ul>
 
 <p>Based on the desired method, the location manager provides best-effort location-based services, such as an asynchronous location update or region monitoring notification.</p>
 <p>To start the location service:</p>
 <ol>
 <li><p>Create a location manager handle using the <code>location_manager_create()</code> function before you use the location service.</p>
-<p>In this example, GPS is used as the source of the position data, so the first parameter is <code>LOCATIONS_METHOD_GPS</code>. You can use other values of the <code>location_method_e</code> 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 <code>LOCATIONS_METHOD_HYBRID</code> or <code>LOCATIONS_METHOD_WPS</code>. <code>LOCATIONS_METHOD_HYBRID</code> uses both <code>LOCATIONS_METHOD_GPS</code> and <code>LOCATIONS_METHOD_WPS</code>, but the latter is less accurate.</p>
+<p>In this example, GPS is used as the source of the position data, so the first parameter is <code>LOCATIONS_METHOD_GPS</code>. You can use other values of the <code>location_method_e</code> 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 <code>LOCATIONS_METHOD_HYBRID</code>, <code>LOCATIONS_METHOD_WPS</code>, <code>LOCATIONS_METHOD_PASSIVE</code>, or <code>LOCATIONS_METHOD_FUSED</code>. <code>LOCATIONS_METHOD_HYBRID</code> uses both <code>LOCATIONS_METHOD_GPS</code> and <code>LOCATIONS_METHOD_WPS</code>, but the latter is less accurate.</p>
 <pre class="prettyprint">
 location_manager_h manager;
 location_manager_create(LOCATIONS_METHOD_GPS, &amp;manager);