f5d158dd1cf05c4c9399922f924439ddabb4aca3.svn-base 1.9 KB
<?
	header("Content-Type: text/html; charset=UTF-8");
?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/Admin.php" ;?>
<?
	$obj = new Admin($_REQUEST);
	
	//$count = $obj->req["count"];
	$cnt = $obj->req["cnt"];
	$type = $obj->req["type"];
	
	$count = $obj->getMinShopNo();
	
 	$list = $obj->getShopLocation($count);
 	
	//$result = $obj->reverseGeocode("서울시 강남구 논현동 57-18");
//  	echo json_encode($list);

	if(sizeof($list) == 0 || $cnt >= 40){
		exit;
	}
	if($type == 2){
		for($i = 0; $i < sizeof($list); $i++){
			
			$result = $obj->reverseGeocode2($list[$i]["addr_old"]);
			
			if($result["latitude"] == 0 && $result["longitude"] == 0){
				$result2 = $obj->reverseGeocode2($list[$i]["addr_new"]);
				
				if($result2["latitude"] == 0 && $result2["longitude"] == 0){
					$obj->updateShopLocation(-99, -99, $list[$i]["no"]);
				}
				else{
					$obj->updateShopLocation($result2["latitude"], $result2["longitude"], $list[$i]["no"]);
				}
				
				//echo json_encode($result2);
			}
			else{
				$obj->updateShopLocation($result["latitude"], $result["longitude"], $list[$i]["no"]);
				//echo json_encode($result);
			}
			
		}
	}
	else{
		for($i = 0; $i < sizeof($list); $i++){
				
			$result = $obj->reverseGeocode($list[$i]["addr_old"]);
				
			if($result["latitude"] == 0 && $result["longitude"] == 0){
				$result2 = $obj->reverseGeocode($list[$i]["addr_new"]);
		
				if($result2["latitude"] == 0 && $result2["longitude"] == 0){
					$obj->updateShopLocation(-99, -99, $list[$i]["no"]);
				}
				else{
					$obj->updateShopLocation($result2["latitude"], $result2["longitude"], $list[$i]["no"]);
				}
		
				//echo json_encode($result2);
			}
			else{
				$obj->updateShopLocation($result["latitude"], $result["longitude"], $list[$i]["no"]);
				//echo json_encode($result);
			}
				
		}
	}
	
	$cnt++;
	echo "<script>location.replace('./renewShopLocation.php?cnt={$cnt}&type={$type}');</script>";
	
?>