// JavaScript Document
var map = null;

function GetMap()
{
	map = new VEMap('myMap');
	map.LoadMap(new VELatLong(42.23805556, 13.48777778), 16 ,'r' ,false);

	var shape = new VEShape(VEShapeType.Pushpin, map.GetCenter());
	shape.SetTitle('Cristall Hotel');
	shape.SetDescription('Nelle vicinanze di Campo Felice, il caratteristico hotel di montagna con cucina tipica e confortevoli stanze.');
	map.AddShape(shape);
}

