Revise timeout limits for downloading map tiles 14/158114/1 accepted/tizen/4.0/unified/20171102.061805 submit/tizen_4.0/20171101.001203
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 02:00:17 +0000 (11:00 +0900)
Change-Id: Ie4f3f89ec31c017dbf805d019fec3ae1921847b3
Signed-off-by: chanywa <cbible.kim@samsung.com>
Conflicts:
maps-plugin-mapzen.changes
packaging/maps-plugin-mapzen.spec

Change-Id: I9d49fab8bf9ca98c4faa9bd6d35bf7b08ef2a61c

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

index 8109831..585f2d2 100644 (file)
@@ -1,3 +1,8 @@
+[Version]   maps-plugin-mapzen_0.0.6
+[Date]      30 Oct 2017
+[Title]     Revise timeout limits for downloading map tiles.
+[Developer] Seechan Kim <cbible.kim@samsung.com>
+
 [Version]   maps-plugin-mapzen_0.0.5
 [Date]      10 Oct 2017
 [Title]     fix warning messages
index 06853ab..bfc045d 100644 (file)
@@ -1,6 +1,6 @@
 Name:       maps-plugin-mapzen
 Summary:    Tizen Mapzen Maps Plug-in Library
-Version:    0.0.5
+Version:    0.0.6
 Release:    1
 Group:      Location/Libraries
 License:    Apache-2.0 and MIT
index f5925ff..d5fc728 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);