updated HERE maps engine library 79/100679/1
authorchanywa <cbible.kim@samsung.com>
Tue, 29 Nov 2016 01:04:57 +0000 (10:04 +0900)
committerchanywa <cbible.kim@samsung.com>
Tue, 29 Nov 2016 02:44:32 +0000 (11:44 +0900)
Change-Id: I8dfd992e2231193a5a5b3c6ff17485904e62e7f1

lib/aarch64/libheremaps-engine.so.1
lib/aarch64/libheremaps-engine.so.1.0.6_24 [moved from lib/aarch64/libheremaps-engine.so.1.0.6_23 with 71% similarity]
lib/arm/libheremaps-engine.so.1
lib/arm/libheremaps-engine.so.1.0.6_24 [moved from lib/arm/libheremaps-engine.so.1.0.6_23 with 68% similarity]
lib/i586/libheremaps-engine.so.1
lib/i586/libheremaps-engine.so.1.0.6_24 [moved from lib/i586/libheremaps-engine.so.1.0.6_23 with 69% similarity]
lib/x86_64/libheremaps-engine.so.1
lib/x86_64/libheremaps-engine.so.1.0.6_24 [moved from lib/x86_64/libheremaps-engine.so.1.0.6_23 with 71% similarity]
maps-plugin-here.changes
packaging/maps-plugin-here.spec
src/here_view_objects.cpp

index 1146358..39e4c5c 120000 (symlink)
@@ -1 +1 @@
-libheremaps-engine.so.1.0.6_23
\ No newline at end of file
+libheremaps-engine.so.1.0.6_24
\ No newline at end of file
similarity index 71%
rename from lib/aarch64/libheremaps-engine.so.1.0.6_23
rename to lib/aarch64/libheremaps-engine.so.1.0.6_24
index a098503..e96865d 100755 (executable)
Binary files a/lib/aarch64/libheremaps-engine.so.1.0.6_23 and b/lib/aarch64/libheremaps-engine.so.1.0.6_24 differ
index 1146358..39e4c5c 120000 (symlink)
@@ -1 +1 @@
-libheremaps-engine.so.1.0.6_23
\ No newline at end of file
+libheremaps-engine.so.1.0.6_24
\ No newline at end of file
similarity index 68%
rename from lib/arm/libheremaps-engine.so.1.0.6_23
rename to lib/arm/libheremaps-engine.so.1.0.6_24
index cb0e933..6840a51 100755 (executable)
Binary files a/lib/arm/libheremaps-engine.so.1.0.6_23 and b/lib/arm/libheremaps-engine.so.1.0.6_24 differ
index 1146358..39e4c5c 120000 (symlink)
@@ -1 +1 @@
-libheremaps-engine.so.1.0.6_23
\ No newline at end of file
+libheremaps-engine.so.1.0.6_24
\ No newline at end of file
similarity index 69%
rename from lib/i586/libheremaps-engine.so.1.0.6_23
rename to lib/i586/libheremaps-engine.so.1.0.6_24
index 2abbd14..5dbdc18 100755 (executable)
Binary files a/lib/i586/libheremaps-engine.so.1.0.6_23 and b/lib/i586/libheremaps-engine.so.1.0.6_24 differ
index 1146358..39e4c5c 120000 (symlink)
@@ -1 +1 @@
-libheremaps-engine.so.1.0.6_23
\ No newline at end of file
+libheremaps-engine.so.1.0.6_24
\ No newline at end of file
similarity index 71%
rename from lib/x86_64/libheremaps-engine.so.1.0.6_23
rename to lib/x86_64/libheremaps-engine.so.1.0.6_24
index 16b9a70..b5b707a 100755 (executable)
Binary files a/lib/x86_64/libheremaps-engine.so.1.0.6_23 and b/lib/x86_64/libheremaps-engine.so.1.0.6_24 differ
index 1a0b97e..927d890 100644 (file)
@@ -1,3 +1,8 @@
+[Version]   maps-plugin-here_0.3.12
+[Date]      29 Nov 2016
+[Title]     updated HERE maps engine library
+[Developer] Seechan Kim <cbible.kim@samsung.com>
+
 [Version]   maps-plugin-here_0.3.11
 [Date]      24 Nov 2016
 [Title]     fixed some problems to support 64bit OS
index 6427511..f0d5929 100644 (file)
@@ -1,6 +1,6 @@
 Name:       maps-plugin-here
 Summary:    Tizen HERE Maps Plug-in Library
-Version:    0.3.11
+Version:    0.3.12
 Release:    1
 Group:      Location/Libraries
 License:    Apache-2.0 and HERE
index 9be5153..d42982a 100644 (file)
@@ -345,18 +345,21 @@ here_error_e HereViewObjects::__updatePolyline(maps_view_object_h hPolyline, Geo
 
        do {
                error = maps_view_object_polyline_foreach_point(hPolyline, __foreachForCoordinates, &coordList);
+MAPS_LOGD(".");
                if (error != MAPS_ERROR_NONE) break;
                herePolyline->SetPath(coordList);
-
+MAPS_LOGD(".");
                error = maps_view_object_polyline_get_color(hPolyline, &r, &g, &b, &a);
+MAPS_LOGD(".");
                if (error != MAPS_ERROR_NONE) break;
                herePolyline->SetStrokeColor(Color(r, g, b, a));
-
+MAPS_LOGD(".");
                error = maps_view_object_polyline_get_width(hPolyline, &nThickness);
+MAPS_LOGD(".");
                if (error != MAPS_ERROR_NONE) break;
                herePolyline->SetStrokeThickness(nThickness);
        } while (0);
-
+MAPS_LOGD(".");
        return (here_error_e)ConvertToHereError(error);
 }
 
@@ -370,15 +373,18 @@ here_error_e HereViewObjects::__updatePolygon(maps_view_object_h hPolygon, GeoMa
        unsigned char r, g, b, a;
 
        do {
+MAPS_LOGD(".");
                error = maps_view_object_polygon_foreach_point(hPolygon, __foreachForCoordinates, &coordList);
+MAPS_LOGD(".");
                if (error != MAPS_ERROR_NONE) break;
                herePolygon->SetPath(coordList);
-
+MAPS_LOGD(".");
                error = maps_view_object_polygon_get_fill_color(hPolygon, &r, &g, &b, &a);
+MAPS_LOGD(".");
                if (error != MAPS_ERROR_NONE) break;
                herePolygon->SetFillColor(Color(r, g, b, a));
        } while (0);
-
+MAPS_LOGD(".");
        return (here_error_e)ConvertToHereError(error);
 }
 
@@ -474,6 +480,7 @@ bool HereViewObjects::__foreachForCoordinates(int index, maps_coordinates_h poin
 
        GeoCoordinateList *coordList = (GeoCoordinateList*)user_data;
        coordList->push_back(GeoCoordinates(lat, lng));
+       MAPS_LOGD(".");
        return true;
 }