/* livemaps.js (47%) */
var map=null;var pinLocation;function GetMap(vlat,vlong)
{map=new VEMap('my-map');map.AttachEvent("oncredentialserror",MyHandleCredentialsError);map.AttachEvent("oncredentialsvalid",MyHandleCredentialsValid);map.SetCredentials("AgqovBexz_ML7gbI_I2iv8z_nrcKFUeJnTyF2jMG3P00KYdRjVSpswAahgViHUX1");pinLocation=new VELatLong(vlat,vlong);map.LoadMap(pinLocation,14);var shape=new VEShape(VEShapeType.Pushpin,pinLocation);shape.SetTitle('Kaffa');map.AddShape(shape);map.AttachEvent("onobliqueenter",OnObliqueEnterHandler);}
function OnObliqueEnterHandler()
{if(map.IsBirdseyeAvailable())
{}}
function MyHandleCredentialsError()
{}
function MyHandleCredentialsValid()
{}
