Change default marker images
authorchanywa <cbible.kim@samsung.com>
Thu, 23 Feb 2017 01:17:14 +0000 (10:17 +0900)
committerchanywa <cbible.kim@samsung.com>
Thu, 23 Feb 2017 01:17:46 +0000 (10:17 +0900)
Change-Id: Ic3ed7004d2f2fafd76e6a0932f12d0194e030165

src/Tizen.Maps/Tizen.Maps/Marker.cs
src/Tizen.Maps/res/maps_marker_pin.png [deleted file]
src/Tizen.Maps/res/maps_marker_pin_48.png [new file with mode: 0755]
src/Tizen.Maps/res/maps_marker_pin_72.png [new file with mode: 0755]
src/Tizen.Maps/res/maps_marker_sticker.png [deleted file]
src/Tizen.Maps/res/maps_marker_sticker_48.png [new file with mode: 0755]
src/Tizen.Maps/res/maps_marker_sticker_72.png [new file with mode: 0755]

index fff9beb..13f9c36 100755 (executable)
@@ -179,7 +179,7 @@ namespace Tizen.Maps
     /// </summary>
     public class Pin : Marker
     {
-        private const string defaultImagePath = "/usr/share/dotnet.tizen/framework/res/maps_marker_pin.png";
+        private const string defaultImagePath = "/usr/share/dotnet.tizen/framework/res/maps_marker_pin_48.png";
 
         /// <summary>
         /// Creates Pin type parker
@@ -188,7 +188,6 @@ namespace Tizen.Maps
         public Pin(Geocoordinates coordinates)
             : base(coordinates, defaultImagePath, Interop.ViewMarkerType.Pin)
         {
-            Resize(new Size(48, 48));
         }
 
         /// <summary>
@@ -207,7 +206,7 @@ namespace Tizen.Maps
     /// </summary>
     public class Sticker : Marker
     {
-        private const string defaultImagePath = "/usr/share/dotnet.tizen/framework/res/maps_marker_sticker.png";
+        private const string defaultImagePath = "/usr/share/dotnet.tizen/framework/res/maps_marker_sticker_48.png";
 
         /// <summary>
         /// Creates Sticker type parker
@@ -216,7 +215,6 @@ namespace Tizen.Maps
         public Sticker(Geocoordinates coordinates)
             : base(coordinates, defaultImagePath, Interop.ViewMarkerType.Sticker)
         {
-            Resize(new Size(48, 48));
         }
 
         /// <summary>
diff --git a/src/Tizen.Maps/res/maps_marker_pin.png b/src/Tizen.Maps/res/maps_marker_pin.png
deleted file mode 100755 (executable)
index 5162bdb..0000000
Binary files a/src/Tizen.Maps/res/maps_marker_pin.png and /dev/null differ
diff --git a/src/Tizen.Maps/res/maps_marker_pin_48.png b/src/Tizen.Maps/res/maps_marker_pin_48.png
new file mode 100755 (executable)
index 0000000..a07d693
Binary files /dev/null and b/src/Tizen.Maps/res/maps_marker_pin_48.png differ
diff --git a/src/Tizen.Maps/res/maps_marker_pin_72.png b/src/Tizen.Maps/res/maps_marker_pin_72.png
new file mode 100755 (executable)
index 0000000..bc09c65
Binary files /dev/null and b/src/Tizen.Maps/res/maps_marker_pin_72.png differ
diff --git a/src/Tizen.Maps/res/maps_marker_sticker.png b/src/Tizen.Maps/res/maps_marker_sticker.png
deleted file mode 100755 (executable)
index 3ff0cd3..0000000
Binary files a/src/Tizen.Maps/res/maps_marker_sticker.png and /dev/null differ
diff --git a/src/Tizen.Maps/res/maps_marker_sticker_48.png b/src/Tizen.Maps/res/maps_marker_sticker_48.png
new file mode 100755 (executable)
index 0000000..93d3fb6
Binary files /dev/null and b/src/Tizen.Maps/res/maps_marker_sticker_48.png differ
diff --git a/src/Tizen.Maps/res/maps_marker_sticker_72.png b/src/Tizen.Maps/res/maps_marker_sticker_72.png
new file mode 100755 (executable)
index 0000000..c2e2060
Binary files /dev/null and b/src/Tizen.Maps/res/maps_marker_sticker_72.png differ