summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchanywa <cbible.kim@samsung.com>2017-12-06 10:42:22 +0900
committerchanywa <cbible.kim@samsung.com>2017-12-06 19:43:19 +0900
commit5c16f1a086e74d5af764226b89d1f7ca2e7cf942 (patch)
tree1bf605c082aa610bc2f5b9b7b7fc48b5c9ff6df9
parent81fb20d6e9b7e3e8941719bd85bcf008968dca06 (diff)
downloadmaps-plugin-mapzen-accepted/tizen_3.0_mobile.tar.gz
maps-plugin-mapzen-accepted/tizen_3.0_mobile.tar.bz2
maps-plugin-mapzen-accepted/tizen_3.0_mobile.zip
Change-Id: I48462683a382c098e19a941f4d7315e9f8accc3b
-rw-r--r--maps-plugin-mapzen.changes5
-rw-r--r--packaging/maps-plugin-mapzen.spec2
-rw-r--r--src/mapzen/tangram_view.cpp2
3 files changed, 8 insertions, 1 deletions
diff --git a/maps-plugin-mapzen.changes b/maps-plugin-mapzen.changes
index 4225e93..5dbf5a4 100644
--- a/maps-plugin-mapzen.changes
+++ b/maps-plugin-mapzen.changes
@@ -1,3 +1,8 @@
+[Version] maps-plugin-mapzen_0.0.10
+[Date] 06 Dec 2017
+[Title] Set the minimum size for map view
+[Developer] Seechan Kim <cbible.kim@samsung.com>
+
[Version] maps-plugin-mapzen_0.0.9
[Date] 04 Dec 2017
[Title] Fix crashes and blocking with curl threads
diff --git a/packaging/maps-plugin-mapzen.spec b/packaging/maps-plugin-mapzen.spec
index a0081a8..5f7a533 100644
--- a/packaging/maps-plugin-mapzen.spec
+++ b/packaging/maps-plugin-mapzen.spec
@@ -1,6 +1,6 @@
Name: maps-plugin-mapzen
Summary: Tizen Mapzen Maps Plug-in Library
-Version: 0.0.9
+Version: 0.0.10
Release: 1
Group: Location/Libraries
License: Apache-2.0 and MIT
diff --git a/src/mapzen/tangram_view.cpp b/src/mapzen/tangram_view.cpp
index d5fc728..2f7b9aa 100644
--- a/src/mapzen/tangram_view.cpp
+++ b/src/mapzen/tangram_view.cpp
@@ -62,6 +62,8 @@ mapzen_error_e TangramView::create(maps_view_h view, maps_plugin_map_view_ready_
if (maps_error != MAPS_ERROR_NONE) {
return (mapzen_error_e)convert_maps_error_to_mapzen_error(maps_error);
}
+ m_w = MAX(m_w, 1);
+ m_h = MAX(m_h, 1);
// Create an OpenGL context.
{