function startMap(){

//call the MQA.Tilemap constructor passing the div, zoom level, centerpoint and map type

myMap = new MQA.TileMap(document.getElementById('mapDiv'),9,new MQA.LatLng(27.998679,-80.660183),'map');

zoomctl = new MQA.LargeZoomControl();

myMap.addControl(zoomctl);

myMap.setZoomLevel(10);

myMap.addControl(new MQA.ViewControl());



var newCenterLL = new MQA.LatLng(27.998679,-80.660183);

myMap.setCenter(newCenterLL);

//Create a new MQA.Poi object and set its location

myPoint = new MQA.Poi(newCenterLL);

//set any rollover and pop-up text

myPoint.setValue('infoTitleHTML','Dr. Ray Adamcik, M.D.');

myPoint.setValue('infoContentHTML','580 Malabar Road SE Suite 2 Palm Bay,<br />Florida');

//you can set a Key value to help keep track of the POIs you put on the map

myPoint.setValue('key','1A');

//Add the POI to the map

myMap.addShape(myPoint);

}
