Revise timeout limits for downloading map tiles 01/158101/2 accepted/tizen/unified/20171030.161652 submit/tizen/20171030.015333
authorchanywa <cbible.kim@samsung.com>
Mon, 30 Oct 2017 00:36:35 +0000 (09:36 +0900)
committerchanywa <cbible.kim@samsung.com>
Mon, 30 Oct 2017 00:45:04 +0000 (09:45 +0900)
Change-Id: Ie4f3f89ec31c017dbf805d019fec3ae1921847b3

maps-plugin-mapzen.changes
packaging/maps-plugin-mapzen.spec
src/mapzen/tangram_view.cpp

index b6fa15e..cd244c7 100644 (file)
@@ -1,3 +1,8 @@
+[Version]   maps-plugin-mapzen_0.1.1
+[Date]      30 Oct 2017
+[Title]     Revise timeout limits for downloading map tiles.
+[Developer] Seechan Kim <cbible.kim@samsung.com>
+
 [Version]   maps-plugin-mapzen_0.1.0
 [Date]      18 Oct 2017
 [Title]     Enable to be built with Tangram-ES source repo.
index 03ad452..ed6b0bd 100644 (file)
@@ -1,6 +1,6 @@
 Name:       maps-plugin-mapzen
 Summary:    Tizen Mapzen Maps Plug-in Library
-Version:    0.1.0
+Version:    0.1.1
 Release:    1
 Group:      Location/Libraries
 License:    Apache-2.0 and MIT
index b37656e..5521d25 100644 (file)
@@ -113,6 +113,9 @@ mapzen_error_e TangramView::create(maps_view_h view, maps_plugin_map_view_ready_
                free(proxyAddress);
        }
 
+       urlOptions.connectionTimeoutMs = 0;
+       urlOptions.requestTimeoutMs = 120000;
+
        m_platform = std::make_shared<Tangram::TizenPlatform>(urlOptions);
 
        m_uiThreadId = syscall(SYS_gettid);