﻿// Make sure the browser is compatible with Google maps
if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map"));
    map.setCenter(new GLatLng(57.511052, 12.062774), 15);
    map.addControl(new GSmallMapControl());
    var point = new GLatLng(57.51218, 12.068996);
    var icon = new GIcon();
    icon.image = "images/map_point.gif";
    icon.iconSize = new GSize(32, 32);
    icon.iconAnchor = new GPoint(10, 30);
    var marker = new GMarker(point, icon);
    map.addOverlay(marker);
}
