Hi,
I'm developing a Dnn(v.6.2.5) module using the map control from web edition (using MapSuiteCore and WebEdition 6.0.0.102), and when i apply a custom style for the markers, the path for the webImages is changed the "\" for "% 5 c"(without spaces) and the image don't showup, but if i don't set the image path it shows the default blue marker i'm setting the value like this:
string iconsDirectory = MapPath("~/theme/Icons/");
MarkerValueItem valItemIcon1 = new MarkerValueItem("Icono1");
WebImage imgIcon1 = new WebImage(iconsDirectory + @"Icono1.png", 35, 35);
valItemIcon1.DefaultMarkerStyle.WebImage = imgIcon1;
When the map si drawn the markers have that red "X" and in its properties shown the image address with the %N instead their set values is this and encoding issue?, i've checked in the debugger and everything in the code behind seems ok, but in the map the markers don't show the images and neither the labels, any suggestions?