﻿var map = null;

function GetMap()
{
    map = new VEMap('StandortMap');
    if (map !== 'undefined')
    {
        map.LoadMap(new VELatLong(50.97, 7.09), 12, 'r', false);
        map.SetScaleBarDistanceUnit(VEDistanceUnit.Kilometers);
        //Add a pushpin to the new layer         
        var pin = new VEPushpin(1, new VELatLong(50.972322, 7.097486), null, 'Adresse', 'net4use<br />Gierather Str. 131<br />51069 Köln<br />Deutschland<br />');
        map.AddPushpin(pin);
    }
}     



