f5d158dd1cf05c4c9399922f924439ddabb4aca3.svn-base
1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?
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>";
?>