/*
    MAP FUNCTIONS - ZOOMING & COORDINATES
    --------------------------------------
    Copyright 2006(c)
    HD Protech
    5959 Corporate Drive, Suite 3015
    Houston, Texas 77036
*/

    /* ********************************************************************** */
    /* Map zoom level functions get & set */
    /* ********************************************************************** */
    /* set the map zoom level for current view */
    function setZoomLevel(zoomLevel){
        try{
            map.setZoom(zoomLevel);
        } catch (err){
            alert("Error setting zoom level.");
        }
    }

    /* get the current map zoom level */
    function getZoomLevel(){
        try{
            return map.getZoom();
        } catch (err){
            return -1;
        }
    }
    /* ********************************************************************** */


    /* ********************************************************************** */
    /* Map Coordinate functions */
    /* ********************************************************************** */    
    /* center map on coordinates */
    function centerMap(lat, lng){
        try{
            map.setCenter(new GLatLng(lat, lng));
        } catch (err) {
            alert("Error centering map.");
        }
    }

    /* return the current center coordinates formated "(lng,lat)" */
    function getMapCenter(){
        try{            
            return map.getCenter();
        } catch (err){
            return -1;
        }
    }

    /* returns the current map center longitude */
    function getMapCenterLng(){
        try{
            return map.getCenter().lng();
        } catch (err){
            return -1;
        }
    }

    /* returns the current map center latitude */
    function getMapCenterLat(){
        try{
            return map.getCenter().lat();
        } catch (err){
            return -1;
        }
    }
    /* ********************************************************************** */