Hi,
I am using custom popups for markers.But what happens popup opens on my marker image.Because of this i am not able to see my marker image.
Is it possible to set popup direction and its position related to marker? (like upper left,upper top).So image is remain visible.
I try Popup offsetXinPixels,offsetYinPixels properties but it doesnt work.
This is my code:
vehicleMarker = new Marker();
mainMap.MarkerOverlay.Markers.Add(vehicleMarker);
vehicleMarker.Position = pnt;
vehicleMarker.WebImage = markerImage; (My image which is 71 x 71)
vehicleMarker.Popup.ContentHtml = contentHtml.ToString();
vehicleMarker.Popup.AutoSize = true;
vehicleMarker.Popup.OffsetXInPixels = 24;
vehicleMarker.Popup.OffsetYInPixels = 24;
I thik it happens because my image is big, but not sure.Can you help me in this issue? Waiting for your reply.
Thanks.