I was using this
if (ret = 1)
iconType = new google.maps.MarkerImage(\'@Url.Content(\"~/Content/images/image.png\")\');
else if (ret = 2)
iconType =
I usually put a block like this in the beginning of the page:
And then i refer to the ROOT variable in javascript:
if (ret = 1)
iconType = new google.maps.MarkerImage(ROOT + '/Content/images/image.png');
else if (ret = 2)
iconType = new google.maps.MarkerImage(ROOT + '/Content/images/image2.png');
else if (ret = 3)
iconType = new google.maps.MarkerImage(ROOT + '/Content/images/image3.png")');