var coords = new LatLon(25.833906, -80.324870);  
var map = new Map("mapContainer", "Solo Printing", coords, 7); 
map.addEventListener(Map.EVENT_INITIALIZE, onMapInit);

function onMapInit(event) {
	map.addTool( new PanTool(), true );
	map.addWidget( new SatelliteControlWidget(SatelliteControlWidget.HORIZONTAL));
	map.addWidget(new ZoomBarWidget(), true);

	var marker = new CustomPOIMarker('Solo Printing Inc.', '', '7860 NW 66th Street<br />Miami, FL 33166', '0x222222', '0xFFFFFF');
	map.addMarkerByAddress( marker, '7860 NW 66th Street, Miami, FL 33166');
}