
/*
	funkcja do do okreslenia poziomu zoomowania na podstawie trafnosci ()oddzielnie, bo inne skrypty uzywaja tej samej,  wkleisz gdzie zechcesz)
	trafnosci sa tutaj:  http://code.google.com/apis/maps/documentation/reference.html#GGeoAddressAccuracy
*/
function getZoomByAccuracy( accuracy )
{
	accuracy *= 1;
    switch( accuracy )
    {
        case 8 : return 15;
        case 7 : return 15;
        case 6 : return 14;
        case 5 : return 13;
        case 4 : return 12;
        case 3 : return 12;
        case 2 : return 9;
        case 1 : return 6;
    }
}
