﻿// Create a base icon for all of our markers that specifies the
// shadow, icon dimensions, etc.
var regionIcon = new GIcon();
regionIcon.shadow = "http://maps.google.com/mapfiles/ms/micons/postoffice-us.shadow.png";
regionIcon.iconSize = new GSize(34,50);
regionIcon.shadowSize = new GSize(60, 60);
regionIcon.iconAnchor = new GPoint(16, 25);
regionIcon.infoWindowAnchor = new GPoint(16, 25);

var schoolIcon = new GIcon();
schoolIcon.shadow = "images/schoolshadow.png";
schoolIcon.iconSize = new GSize(32, 32);
schoolIcon.shadowSize = new GSize(59,32);
schoolIcon.iconAnchor = new GPoint(16, 16);
schoolIcon.infoWindowAnchor = new GPoint(16, 16);
schoolIcon.image = "images/school.png";

var infocenterIcon = new GIcon();
infocenterIcon.image = "podklady/logo-icFraus.png";
infocenterIcon.iconSize = new GSize(53, 36);
infocenterIcon.shadowSize = new GSize(59, 32);
infocenterIcon.iconAnchor = new GPoint(16, 16);
infocenterIcon.infoWindowAnchor = new GPoint(16, 16);
