3b2627703f5e468e9bbaf3fd95b8d3fabafc2d87.svn-base 192 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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547

/*---------------------------------------------------------GlobalDefine.js---------------------------------------------------------*/
//#region 图层自动配置模块
/// 自动配置是否完成
OpenLayers.Map.prototype.isSucceedAutoConfig = false;
///是否为自动配置地图参数
OpenLayers.Map.prototype.isAutoConfig = false;
///配置成功时的回调方法
OpenLayers.Map.prototype.autoConfigSucceedCallback = null;
///根据基图层来设置范围等 只有是基图层才能设置
OpenLayers.Map.prototype.setConfigByLayer = function (layer, complete, error) {
    var url, callback, info;
    var map = this;
    if (layer instanceof Zondy.Map.Doc) {
        url = "http://" + layer.ip + ":" + layer.port + "/igs/rest/mrcs/docs/" + layer.docName + "/0?f=json&include={includeDetails:true,includeSubs:true}";
        callback = function (json) {
            if (json) {
                var range = json.range;
                map.maxExtent = new OpenLayers.Bounds(range.split(',')[0], range.split(',')[1], range.split(',')[2], range.split(',')[3]);
                var xDelta = map.maxExtent.right - map.maxExtent.left;
                var yDelta = map.maxExtent.top - map.maxExtent.bottom;
                map.maxResolution = (xDelta < yDelta ? yDelta : xDelta) / 256;
            }
            complete && complete();
        };
        layer.ajax(url, null, callback, "GET", null, "json", error, { async: false });
    } else if (layer instanceof Zondy.Map.TileLayer) {
        url = "http://" + layer.ip + ":" + layer.port + "/igs/rest/mrcs/tiles/" + layer.hdfName + "?f=json&v=2.0";
        callback = function (json) {
            if (json) {
                if (json.TileInfo1) {
                    info = json.TileInfo1;
                    map.maxExtent = new OpenLayers.Bounds(info.XMin, info.YMin, info.XMax, info.YMax);
                    layer.fullExtent = map.maxExtent;
                    var xDelta = info.XMax - info.XMin;
                    var yDelta = info.YMax - info.YMin;
                    map.maxResolution = (xDelta > yDelta ? xDelta : yDelta) / 256;
                } else if (json.TileInfo2) {
                    info = json.TileInfo2;
                    var range = info.fullExtent;
                    map.maxExtent = new OpenLayers.Bounds(range.xmin, range.ymin, range.xmax, range.ymax);
                    var lod = info.tileInfo.lods;
                    map.maxResolution = lod[0].resolution;
                    var ress = [];
                    for (var i = 0; i < lod.length; i++) {
                        ress.push(lod[i].resolution);
                    }
                    layer.fullExtent = map.maxExtent;
                    layer.tileOrigin = new OpenLayers.LonLat(range.xmin, range.ymax);
                    layer.serverResolutions = ress;
                } else {
                    alert("无法获取瓦片信息,请使用手动配置 !");
                }
                complete && complete();
            }
        };
        layer.ajax(url, null, callback, "GET", null, "json", error, { async: false });
    } else if (layer instanceof Zondy.Map.Layer) {
        url = "http://" + layer.ip + ":" + layer.port + "/igs/rest/mrcs/layerinfo?gdbpUrl=" + layer.gdbps[0];
        callback = function (json) {
            if (json && json.Range) {
                var r = json.Range;
                map.maxExtent = new OpenLayers.Bounds(r.xmin, r.ymin, r.xmax, r.ymax);
                var xDelta = map.maxExtent.right - map.maxExtent.left;
                var yDelta = map.maxExtent.top - map.maxExtent.bottom;
                map.maxResolution = (xDelta < yDelta ? yDelta : xDelta) / 256;
            }
            complete && complete();
        };
        layer.ajax(url, null, callback, "GET", null, "json", error, { async: false });
    }
};

OpenLayers.Map.prototype.addLayer = function (layer) {
    for (var i = 0, len = this.layers.length; i < len; i++) {
        if (this.layers[i] == layer) {
            var msg = OpenLayers.i18n('layerAlreadyAdded', { 'layerName': layer.name });
            OpenLayers.Console.warn(msg);
            return false;
        }
    }
    if (this.allOverlays) {
        layer.isBaseLayer = false;
    }

    var map = this;

    var addLayerFun = function () {
        //addLayer
        (function () {
            if (this.events.triggerEvent("preaddlayer", { layer: layer }) === false) {
                return;
            }
            layer.div.className = "olLayerDiv";
            layer.div.style.overflow = "";
            this.setLayerZIndex(layer, this.layers.length);

            if (layer.isFixed) {
                this.viewPortDiv.appendChild(layer.div);
            } else {
                this.layerContainerDiv.appendChild(layer.div);
            }
            this.layers.push(layer);
            layer.setMap(this);

            if (layer.isBaseLayer || (this.allOverlays && !this.baseLayer)) {
                if (this.baseLayer == null) {
                    // set the first baselaye we add as the baselayer
                    this.setBaseLayer(layer);
                } else {
                    layer.setVisibility(false);
                }
            } else {
                layer.redraw();
            }
            this.events.triggerEvent("addlayer", { layer: layer });
            layer.events.triggerEvent("added", { map: this, layer: layer });
            layer.afterAdd();
        }).call(map);
    };

    var configCallBack = function () {
        map.isSucceedAutoConfig = true;
        addLayerFun();
        //解决IE跨域访问时,无法实现同步调用的问题,将常用的方法延迟执行
        if (map.zoomToMaxExtentArgs) {
            map.zoomToMaxExtent.apply(map, map.zoomToMaxExtentArgs);
        }
        if (map.zoomToExtentArgs) {
            map.zoomToExtent.apply(map, map.zoomToExtentArgs);
        }
        if (map.setCenterArgs) {
            map.setCenter.apply(map, map.setCenterArgs);
        }
        if (map.zoomToArgs) {
            map.zoomTo.apply(map, map.zoomToArgs);
        }
        map.autoConfigSucceedCallback && map.autoConfigSucceedCallback();
    };

    var configError = function () {
        map.isSucceedAutoConfig = false;
        addLayerFun();
    };

    if (layer.isBaseLayer === true && this.isAutoConfig === true) {
        this.isSucceedAutoConfig = false;
        this.setConfigByLayer(layer, configCallBack, configError);
    } else {
        addLayerFun();
    }
};

OpenLayers.Map.prototype.zoomToMaxExtent = function (options) {
    if ($.browser.msie && this.isAutoConfig === true && this.isSucceedAutoConfig === false) {
        this.zoomToMaxExtentArgs = arguments;
        return;
    }
    //restricted is true by default
    var restricted = (options) ? options.restricted : true;

    var maxExtent = this.getMaxExtent({
        'restricted': restricted
    });
    this.zoomToExtent(maxExtent);
};

OpenLayers.Map.prototype.zoomToExtent = function (bounds, closest) {
    if ($.browser.msie && this.isAutoConfig === true && this.isSucceedAutoConfig === false) {
        this.zoomToExtentArgs = arguments;
        return;
    }
    var center = bounds.getCenterLonLat();
    if (this.baseLayer.wrapDateLine) {
        var maxExtent = this.getMaxExtent();
        bounds = bounds.clone();
        while (bounds.right < bounds.left) {
            bounds.right += maxExtent.getWidth();
        }
        center = bounds.getCenterLonLat().wrapDateLine(maxExtent);
    }
    this.setCenter(center, this.getZoomForExtent(bounds, closest));
};

OpenLayers.Map.prototype.setCenter = function (lonlat, zoom, dragging, forceZoomChange) {
    if ($.browser.msie && this.isAutoConfig === true && this.isSucceedAutoConfig === false) {
        this.setCenterArgs = arguments;
        return;
    }
    this.panTween && this.panTween.stop();
    this.moveTo(lonlat, zoom, {
        'dragging': dragging,
        'forceZoomChange': forceZoomChange
    });
};

OpenLayers.Map.prototype.zoomTo = function (zoom) {
    if ($.browser.msie && this.isAutoConfig === true && this.isSucceedAutoConfig === false) {
        this.zoomToArgs = arguments;
        return;
    }
    if (this.isValidZoomLevel(zoom)) {
        this.setCenter(null, zoom);
    }
};
//#endregion
window.Zondy = {};
Zondy.Map = OpenLayers.Class(Zondy, {
});
Zondy.Service = OpenLayers.Class(Zondy, {
});
Zondy.Service.Catalog = OpenLayers.Class(Zondy.Service, {
});
Zondy.Object = OpenLayers.Class(Zondy, {
});
Zondy.Format = OpenLayers.Class(Zondy, {
});
Zondy.Util = OpenLayers.Class(Zondy, {
});
Zondy.Control = OpenLayers.Class(Zondy, {
});
Zondy.Util.Hashtable = OpenLayers.Class({
    items: new Array,
    itemsCount: 0,
    initialize: function () {
    },
    add: function (key, value) {
        if (!this.containsKey(key)) {
            this.items[key] = value;
            this.itemsCount++;
        } else
            throw "key '" + key + "'已经存在";
    },
    get: function (key) {
        if (this.containsKey(key))
            return this.items[key];
        else
            return null;
    },
    remove: function (key) {
        if (this.containsKey(key)) {
            delete this.items[key];
            this.itemsCount--;
        } else
            throw "key '" + key + "' does not exists.";
    },
    containsKey: function (key) {
        return typeof (this.items[key]) != "undefined";
    },
    containsValue: function containsValue(value) {
        for (var item in this.items) {
            if (this.items[item] == value)
                return true;
        }
        return false;
    },
    contains: function (keyOrValue) {
        return this.containsKey(keyOrValue) || this.containsValue(keyOrValue);
    },
    clear: function () {
        this.items = new Array();
        itemsCount = 0;
    },
    size: function () {
        return this.itemsCount;
    },
    isEmpty: function () {
        return this.size() == 0;
    }
});

/**全局变量定义******/
// {Zondy.Util.HashTable}
Zondy.ATT_STURCT_CACHE = new Zondy.Util.Hashtable();

/**********************************************************常量(枚举)定义************************************************/
Zondy.Enum = {};
Zondy.Enum.FeatureType = {};
Zondy.Enum.FeatureType.Unknown = 0;
Zondy.Enum.FeatureType.Pnt = 1;
Zondy.Enum.FeatureType.Lin = 2;
Zondy.Enum.FeatureType.Reg = 3;

/// <summary>线的动态注记的线方位类型</summary>
Zondy.Enum.LabelLinType = {};

/// <summary>弯曲注记</summary>
Zondy.Enum.LabelLinType.Curved = 0;

/// <summary>笔直注记</summary>
Zondy.Enum.LabelLinType.Forward = 1;

/// <summary>水平注记</summary>
Zondy.Enum.LabelLinType.Horizontal = 2;

/// <summary>正交注记</summary>
Zondy.Enum.LabelLinType.Tangent = 3;

/// <summary>区的动态注记的区方位类型</summary>
Zondy.Enum.LabelRegType = {};
/// <summary>沿骨架线弯曲注记</summary>
Zondy.Enum.LabelRegType.Curved = 0;
/// <summary>沿骨架线笔直注记</summary>
Zondy.Enum.LabelRegType.Forward = 1;
/// <summary>水平注记</summary>
Zondy.Enum.LabelRegType.Horizontal = 2;
/// <summary>边界线注记</summary>
Zondy.Enum.LabelRegType.Boundray = 3;
/// <summary>区域外注记</summary>
Zondy.Enum.LabelRegType.Outside = 4;

/// <summary>点的动态注记的方位类型</summary>
Zondy.Enum.LabelPntType = {};
/// <summary>任意方位</summary>
Zondy.Enum.LabelPntType.PntAnyDir = 0;
/// <summary>八方位</summary>
Zondy.Enum.LabelPntType.PntEightDir = 1;
/// <summary>压点</summary>
Zondy.Enum.LabelPntType.PntOnFea = 2;

/// <summary>线重复注记策略</summary>
Zondy.Enum.RepeatType = {};

/// <summary>自动重复注记(当线长度超过注记长度的2倍时重复注记,否则不重复注记)</summary>
Zondy.Enum.RepeatType.Auto = 0;

/// <summary>从不重复注记</summary>
Zondy.Enum.RepeatType.NoRep = 1;

/// <summary>分段注记</summary>
Zondy.Enum.RepeatType.OnStep = 2;

/// <summary> 注记分布的策略</summary>
Zondy.Enum.LabelSpreadType = {};
/// <summary>自动分布策略(全是数字或字符采用集中注记方式,注记中带有汉字采用分散分布注记)</summary>
Zondy.Enum.LabelSpreadType.AutoSpread = 0;
/// <summary>字符集中分布</summary>
Zondy.Enum.LabelSpreadType.Centralization = 1;
/// <summary>字符分散分布</summary>
Zondy.Enum.LabelSpreadType.Decentralization = 2;

/// <summary>偏离线约束</summary>
Zondy.Enum.LineConstrain = {};

/// <summary>注记在线的左边</summary>
Zondy.Enum.LineConstrain.Left = 0;

/// <summary>注记在线的右边</summary>
Zondy.Enum.LineConstrain.Right = 1;

/// <summary>注记在线的上方</summary>
Zondy.Enum.LineConstrain.Above = 2;

/// <summary>注记在线的下方</summary>
Zondy.Enum.LineConstrain.Below = 3;

/// <summary>注记在线的两边</summary>
Zondy.Enum.LineConstrain.Both = 4;

/// <summary>没有约束</summary>
Zondy.Enum.LineConstrain.NoRes = 5;

/// <summary>点八方位注记类型</summary>
Zondy.Enum.EightDirType = {};
/// <summary>东</summary>
Zondy.Enum.EightDirType.East = 0;
/// <summary>北</summary>
Zondy.Enum.EightDirType.North = 1;
/// <summary>东北</summary>
Zondy.Enum.EightDirType.NorthEast = 2;
/// <summary>西北</summary>
Zondy.Enum.EightDirType.NorthWest = 3;
/// <summary>南</summary>
Zondy.Enum.EightDirType.South = 4;
/// <summary>东南</summary>
Zondy.Enum.EightDirType.SouthEast = 5;
/// <summary>西南</summary>
Zondy.Enum.EightDirType.SouthWest = 6;
/// <summary>西</summary>
Zondy.Enum.EightDirType.West = 7;
/// <summary>无方位</summary>
Zondy.Enum.EightDirType.NoDir = 8;

/// <summary>是否显示弧段</summary>
Zondy.Enum.ISShowArc = {};

/// <summary>只显示填充区域</summary>
Zondy.Enum.ISShowArc.Reg = 0;

/// <summary>只显示弧段</summary>
Zondy.Enum.ISShowArc.Arc = 1;

/// <summary>两者都显示</summary>
Zondy.Enum.ISShowArc.All = 2;

//Zondy.Enum.TileOriginDir = {};
//Zondy.Enum.TileOriginDir.LeftBottom = "LeftBottom";
//Zondy.Enum.TileOriginDir.LeftTop = "LeftTop";
//Zondy.Enum.TileOriginDir.RightBottom = "RightBottom";
//Zondy.Enum.TileOriginDir.RightTop = "RightTop";

//Zondy.Enum.TileType = {};
//Zondy.Enum.TileType.MapGIS = 0;
//Zondy.Enum.TileType.TianDiTu = 1;

Zondy.Enum.TianDiTu = {};
Zondy.Enum.TianDiTu.Vecotr = 0;
Zondy.Enum.TianDiTu.Raster = 1;
Zondy.Enum.TianDiTu.Annotation = 2;

//扩展jQuery对json字符串的转换 
jQuery.extend({
    /** * @see 将json字符串转换为对象 * @param json字符串 * @return 返回object,array,string等对象 */
    evalJSON: function (strJson) {
        return eval("(" + strJson + ")");
    }
});

jQuery.extend({
    /// <summary>将javascript数据类型转换为json字符串</summary>
    /// <param name="object" type="{Object}">待转换对象,支持object,array,string,function,number,boolean,regexp</param>
    /// <param name="exclude" type="{Array}">要排除的属性名称数组,在次数组里的属性将不会被加入到json字符串中</param>
    /// <param name="splitor" type="String">指明属性间用什么符号分割,默认为‘,’</param>
    /// <param name="containQuot" type="Bool">属性名和属性值是否包含引号,如果为false,那么即使是字符串也不会被引号包裹</param>
    toJSON: function (object, exclude, splitor, containQuot) {
        if (object == null)
            return null;
        var type = typeof object;
        var results, value;
        if ('object' == type) {
            if (Array == object.constructor) type = 'array';
            else if (RegExp == object.constructor) type = 'regexp';
            else type = 'object';
        }
        switch (type) {
            case 'undefined':
            case 'unknown':
                return;
            case 'function':
                return;
            case 'boolean':
            case 'regexp':
                return object.toString();
            case 'number':
                return isFinite(object) ? object.toString() : 'null';
            case 'string':
                if (containQuot || containQuot == undefined) {
                    return '"' + object.replace(/(\\|\")/g, "\\$1").replace(/\n|\r|\t/g, function () {
                        var a = arguments[0];
                        return (a == '\n') ? '\\n' : (a == '\r') ? '\\r' : (a == '\t') ? '\\t' : "";
                    }) + '"';
                }
                else {
                    return object;
                }
            case 'object':
                results = [];
                for (var property in object) {
                    if (exclude != undefined | exclude != null) {
                        if ($.inArray(property, exclude) > -1)
                            continue;
                    }
                    value = jQuery.toJSON(object[property], null, null, containQuot);
                    if (value !== undefined) results.push(jQuery.toJSON(property, null, null, containQuot) + ':' + value);
                }
                if (splitor != undefined) {
                    return '{' + results.join(splitor) + '}';
                }
                else {
                    return '{' + results.join(',') + '}';
                }
            case 'array':
                results = [];
                for (var i = 0; i < object.length; i++) {
                    value = jQuery.toJSON(object[i], null, null, containQuot);
                    if (value !== undefined) {
                        if (value == null) {
                            value = 'null';
                        }
                        results.push(value);
                    }
                }
                return '[' + results.join(',') + ']';
        }
    }
});

//***********************************************Helper 方法************************************************
Zondy.Util.getTopAnalysisResult = function(enumNum) {
    /// <summary>解析拓扑分析的服务器REST返回结果,以更友好的形式返回给客户端</summary>
    switch (enumNum) {
    case 0:
        return "Intersect";
    case 1:
        return "Disjoin";
    case 2:
        return "Include";
    case 3:
        return "Adjacent";
    default:
        return "Unknown";
    }
};

Zondy.Util.newGuid = function () {
    /// <summary>生成一个guid</summary>
    var guid = "";
    for (var i = 1; i <= 32; i++) {
        var n = Math.floor(Math.random() * 16.0).toString(16);
        guid += n;
        if ((i == 8) || (i == 12) || (i == 16) || (i == 20))
            guid += "-";
    }
    return guid;
};

Zondy.Util.objectDeleteUnuseful = function (obj, array) {
    /// <summary>删除对象的指定属性</summary>
    /// <param name="obj" type="Object">操作对象</param>
    /// <param name="array" type="String in an Array">需要删除的属性名称</param>
    $.each(array, function (i, value) {
        delete obj[value];
    });
    return obj;
};

Zondy.Util.toUrlParameters = function (obj) {
    if (obj) {
        var rltStr = '';
        $.each(obj, function (key, value) {
            rltStr = rltStr + '&' + key + '=' + value;
        });
        rltStr = rltStr.substring(1, rltStr.length);
        return rltStr;
    } else {
        return '';
    }
};
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------HttpRequest.js---------------------------------------------------------*/
Zondy.Service.HttpRequest = OpenLayers.Class({
    /**
    * 查询服务器地址
    * {String}
    */
    ip: "localhost",

    /**
    * 查询服务器端口
    * {String}
    */
    port: "8089",

    /**
    * 查询服务的基地址
    * {String}
    */
    baseUrl: null,

    partUrl: null,

    initialize: function () {
    },

    /**
    * 查询函数,用于向REST服务发送请求,Get方式发送
    * onSuccess(required): 查询成功的回调,此函数接将接受要素类 - {Function}
    */
    ajax: function (restUrl, dataObject, onSuccess, type, contentType, resultFormat, onError, options) {
        /// <summary>ajax调用REST服务</summary>
        /// <param name="restUrl" type="String">REST服务地址</param>
        /// <param name="dataObject" type="Object">服务器发送的数据,如果为Get则该参数为参数对象</param>
        /// <param name="onSuccess" type="Function">回调函数</param>
        /// <param name="type" type="{String}">请求类型"Get","Post"</param>
        /// <param name="contentType" type="String">get方式默认为‘application/x-www-form-urlencoded’,post默认为text/plain</param>
        /// <param name="resultFormat" type="String">回调结果的包装形式,取值为'json','xml','kml','gml',georss',默认为‘json’,对于resultFormat参数为xml,kml,
        ///   gml或者georss格式的类xml类型将以text文本返回,如需要可以调用$.parseXML(text)得到其xml包装</param>
        if (restUrl == null) {
            restUrl = "http://" + this.ip + ":" + this.port + "/" + this.baseUrl + "/" + this.partUrl;
        }
        $.support.cors = true;

        if (!type) {
            type = "GET";
        }
        if (type.toUpperCase() == "POST") {
            if (typeof (dataObject) === "object") {
                var jsonStr = $.toJSON(dataObject);
                dataObject = jsonStr;
            }
        }
        if (contentType === undefined || contentType === null) {
            if (dataObject != null && type.toUpperCase() == "POST")
                contentType = "text/plain";
            else {
                contentType = 'application/x-www-form-urlencoded';
            }
        }
        var dataType = this.analysisResultType(resultFormat);
        if (OpenLayers.ProxyHost != "") {
            this.ajaxForProxy(restUrl, dataObject, onSuccess, type, contentType, dataType, onError, options);
        }
        else {
            this.ajaxNormal(restUrl, dataObject, onSuccess, type, contentType, dataType, onError, options);
        }
    },

    analysisCrossDomain: function (url) {
        if (url.indexOf('http') < 0 && url.indexOf('https') < 0) {
            return false;
        }
        else {
            var domainHost = window.location.protocol + '://' + window.location.host;
            if (url.indexOf(domainHost) == 0) {
                return false;
            }
        }
        return true;
    },

    analysisResultType: function (requestFormat) {
        if (!requestFormat)
            return "json";
        if (requestFormat != "json")
            return "text";
        return requestFormat;
    },

    ajaxForProxy: function (restUrl, dataObject, onSuccess, type, contentType, dataType, onError, options) {
        /// <summary>通过代理服务调用IGServer</summary>
        var reUrl = OpenLayers.ProxyHost;
        if (type.toUpperCase() == "GET") {
            dataObject = { 'url': restUrl + "?" + Zondy.Util.toUrlParameters(dataObject) };
        }
        else {
            reUrl += '?url=' + encodeURI(restUrl);
        }
        var thisObj = this;
        var ajaxParam = {
            type: type,
            url: reUrl,
            dataType: dataType,
            data: dataObject,
            context: thisObj,
            contentType: contentType,
            success: function (jsonObj, status, xrequest) {
                onSuccess.call(this, jsonObj);
            },
            error: function (s) {
                onError && onError();
                alert("请求失败,请检查参数");
            }
        };
        OpenLayers.Util.extend(ajaxParam, options);
        $.ajax(ajaxParam);
    },

    ajaxNormal: function (restUrl, dataObject, onSuccess, type, contentType, dataType, onError, options) {
        /// <summary>不经过代理服务,直接调用REST服务</summary>
        var thisObj = this;
        var crossDomain = this.analysisCrossDomain(restUrl);
        if ($.browser.msie && window.XDomainRequest && crossDomain) {
            // window.XDomainRequest 要求服务器输出header信息,所以如果不是跨域的请求即使是IE也不要使用XDomainRequest
            this.ajaxForIE(restUrl, dataObject, onSuccess, type, thisObj, dataType, onError);
        }
        else {
            var ajaxParam = {
                type: type,
                url: restUrl,
                dataType: dataType,
                data: dataObject,
                context: thisObj,
                contentType: contentType,
                success: function (jsonObj, status, xrequest) {
                    onSuccess.call(this, jsonObj);
                },
                error: function (s) {
                    onError && onError();
                    alert("请求失败,请检查参数");
                }
            };
            OpenLayers.Util.extend(ajaxParam, options);
            $.ajax(ajaxParam);
        }
    },

    ajaxForIE: function (url, data, callback, type, context, resultFormat, onError) {
        /// <summary>IE实现跨域,只支持IE8.0beta版本以上的浏览器,8.0以下版本无法实现跨域</summary>
        var xdr = new window.XDomainRequest();
        xdr.timeout = 60000;
        var ontimeout = function () {
            alert("IE跨域访问超时");
        };
        //解决IE跨越访问不稳定的问题,需要监听该事件
        var onprogress = function () {
        };
        var onload = function () {
            var rlt;
            if (resultFormat != "text") {
                rlt = $.parseJSON(this.responseText);
            } else {
                rlt = this.responseText;
            }
            callback.call(context, rlt);
        };
        var onerror = function () {
            onError && onError();
            alert("IE跨域请求请求失败");
        };
        if (type.toUpperCase() == "GET") {
            var params = '';
            if (data) {
                for (var key in data) {
                    params = params + '&' + key + '=' + data[key];
                }
                params = params.substring(1, params.length);
                if (OpenLayers.String.contains(url, '?'))
                    url += params;
                else
                    url = url + "?" + params;
            }
            url = decodeURI(url);
            url = encodeURI(url);
            xdr.onload = onload;
            xdr.onerror = onerror;
            xdr.ontimeout = ontimeout;
            xdr.onprogress = onprogress;
            xdr.open('get', url);
            xdr.send();

        }
        if (type.toUpperCase() == "POST") {
            url = decodeURI(url);
            url = encodeURI(url);
            xdr.onload = onload;
            xdr.onerror = onerror;
            xdr.ontimeout = ontimeout;
            xdr.onprogress = onprogress;
            xdr.open("post", url);
            xdr.send(data);
        }
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------DocLayer.js---------------------------------------------------------*/



Zondy.Service.DocLayer = OpenLayers.Class({
    /**
    *  地图文档名
    * {String}
    */
    mapName: null,

    /**
    *  地图图层序号
    * {Interger}
    */
    layerIndex: null,

    /**
    *  地图序号
    * {Interger}
    */
    mapIndex: 0,

    initialize: function() {
    }
 });
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------Doc.js---------------------------------------------------------*/
Zondy.Map.Doc = OpenLayers.Class(OpenLayers.Layer.Grid, Zondy.Service.HttpRequest, {
    /// <summary>用于显示一个地图文档的图像</summary>

    /// <summary>当重叠层与基础层的空间参考系不一致时,可设置其与基础层一致
    ///     {Boolean} Try to reproject this layer if its coordinate reference system
    ///     is different than that of the base layer.  Default is false.  
    ///     Set this in the layer options.   
    /// </summary>
    reproject: false,

    isBaseLayer: true,

    /// <summary>
    ///     {Boolean} Should the BBOX commas be encoded? The WMS spec says 'no', 
    ///     but some services want it that way. Default false.
    /// </summary>
    encodeBBOX: false,

    /// <summary>文档名称</summary>
    docName: null,

    /// <summary>图像类型:jpg,png,gif</summary>
    f: "png",

    /// <summary>
    ///     指示需要显示的地图图层号
    ///     show,hide,include,exclude 4种形式
    ///     eg:  'layers=show:1,2,3','layers=include:4,5,7'
    /// </summary>
    layers: null,

    /// <summary>
    ///     用户指定的图层过滤条件,它由多个键值对组成,值为您所要设定的过滤条件。
    ///     eg:'filters=1:ID>4,3:ID>1'
    ///     中文请使用UTF-8编码后再传入参数
    ///     javascitpt中请使用encodeURI()函数编码后再代入filters参数中
    ///     注意,在此函数中“:”和“,”是保留字符,用于表示键值对概念和分隔不同图层的条件,请不要将这2个字符用于自定义条件中
    /// </summary>
    filters: null,

    /// <summary>
    ///     显示参数
    ///     Zondy.Object.CDisplayStyle
    /// </summary>
    style: null,

    /// <summary>
    ///     动态投影参数,设置地图文档在服务器端重新投影所需的空间参考系对象
    ///     Zondy.Object.CGetImageBySRSID
    /// </summary>
    proj: null,

    /// <summary>是否使用动态裁图</summary>
    cache: false,

    /// <summary>是否重新裁图</summary>
    update: false,

    /// <summary>动态裁图范围,OpenLayers.Bounds,如果null,默认取map最大范围</summary>
    cacheBox: null,

    /// <summary></summary>
    p_cacheOrigin: null,

    /// <summary>裁图宽度</summary>
    cacheWidth: 256,

    /// <summary>裁图高度</summary>
    cacheHeight: 256,

    /// <summary>客户端标识,用以服务器缓存地图,此属性不应作为公有属性</summary>
    guid: null,

    initialize: function (name, docName, options) {
        /// <summary>构造函数</summary>
        /// <param name="name" type="String">此地图文档控件的显示名称</param>
        /// <param name="docName" type="String">地图文档名</param>
        /// <param name="options" type="String">其他属性键值对</param>
        var newArguments = [];
        if (this.baseUrl == null)
            this.baseUrl = "igs/rest/mrms";
        if (this.partUrl == null)
            this.partUrl = "docs";
        OpenLayers.Util.extend(this, options);
        this.docName = docName;
        var url = "http://" + this.ip + ":" + this.port + "/" + this.baseUrl + "/" + this.partUrl + "/" + this.docName;
        var params = {};

        newArguments.push(name, url, params, {});
        OpenLayers.Layer.Grid.prototype.initialize.apply(this, newArguments);
        if (options != null) {
            if (options.isBaseLayer == false) {
                this.isBaseLayer = false;
            }
        }

        if (this.guid == null) {
            this.guid = Zondy.Util.newGuid();
        }

        if (!this.cache) {
            this.singleTile = true;
        }
    },

    setDocUniqueName: function (guid) {
        /// <summary>设置文档在服务器的名称</summary>
        /// <param name="guid" type="String">唯一文档名称</param>
        this.guid = guid;
    },

    getDocUniqueName: function () {
        /// <summary>获取文档在服务器的名称</summary>
        return this.guid;
    },

    destroy: function () {
        // for now, nothing special to do here. 
        OpenLayers.Layer.Grid.prototype.destroy.apply(this, arguments);
    },

    clone: function (obj) {
        if (obj == null) {
            obj = new OpenLayers.Layer.WMS(this.name,
                                           this.url,
                                           this.params,
                                           this.getOptions());
        }
        //get all additions from superclasses
        obj = OpenLayers.Layer.Grid.prototype.clone.apply(this, [obj]);

        // copy/set any non-init, non-simple values here
        return obj;
    },

    reverseAxisOrder: function () {
        return (parseFloat(this.params.VERSION) >= 1.3 &&
            !!this.yx[this.map.getProjectionObject().getCode()]);
    },

    getURL: function (bounds) {
        var newParams = {};
        newParams.f = this.f;
        newParams.cache = this.cache;

        bounds = this.adjustBounds(bounds);

        if (this.cache) {
            if (this.cacheBox == null) {
                this.cacheBox = this.map.maxExtent;
            }

            if (this.p_cacheOrigin == null) {
                this.p_cacheOrigin = new OpenLayers.LonLat(this.cacheBox.left, this.cacheBox.bottom);
            }
            var res = this.map.getResolution();
            newParams.col = Math.round((bounds.left - this.p_cacheOrigin.lon) / (res * this.tileSize.w));
            newParams.row = Math.round((bounds.bottom - this.p_cacheOrigin.lat) / (res * this.tileSize.h)); //默认按左下角为原点计算
            newParams.level = this.getZoomForResolution(res, true);

            newParams.w = this.cacheWidth;
            newParams.h = this.cacheHeight;
            newParams.bbox = this.map.maxExtent.toString();
            newParams.update = this.update;
        }
        else {
            var imageSize = this.getImageSize();

            var reverseAxisOrder = this.reverseAxisOrder();
            newParams.bbox = this.encodeBBOX ?
            bounds.toBBOX(null, reverseAxisOrder) :
            bounds.toArray(reverseAxisOrder);

            newParams.w = imageSize.w;
            newParams.h = imageSize.h;
            newParams.filters = this.filters;
            newParams.layers = this.layers;
            newParams.style = $.toJSON(this.style);
            newParams.proj = $.toJSON(this.proj);
            newParams.guid = this.guid;
        }
        var requestString = this.getFullRequestString(newParams);
        return requestString;
    },

    mergeNewParams: function (newParams) {
        var upperParams = OpenLayers.Util.upperCaseObject(newParams);
        var newArguments = [upperParams];
        return OpenLayers.Layer.Grid.prototype.mergeNewParams.apply(this, newArguments);
    },

    getFullRequestString: function (newParams, altUrl) {
        if (typeof this.params.TRANSPARENT == "boolean") {
            newParams.TRANSPARENT = this.params.TRANSPARENT ? "TRUE" : "FALSE";
        }
        return OpenLayers.Layer.Grid.prototype.getFullRequestString.apply(this, arguments);
    },

    CLASS_NAME: "Zondy.Map.Doc"
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------Layer.js---------------------------------------------------------*/
Zondy.Map.Layer = OpenLayers.Class(OpenLayers.Layer.Grid, Zondy.Service.HttpRequest, {

    // An Array of String,一组需要叠加显示的图层gdbp
    gdbps: null,
    f: 'png',
    style: null,
    filters: null,
    singleTile: true,
    initialize: function (name, gdbps, options) {
        this.gdbps = gdbps;
        if (this.baseUrl == null)
            this.baseUrl = "igs/rest/mrms";
        if (this.partUrl == null)
            this.partUrl = "layers";
        OpenLayers.Util.extend(this, options);
        var url = "http://" + this.ip + ":" + this.port + "/" + this.baseUrl + "/" + this.partUrl;

        var newArguments = [];
        var params = {};
        newArguments.push(name, url, params, {});
        OpenLayers.Layer.Grid.prototype.initialize.apply(this, newArguments);
    },

    getURL: function (bounds) {
        bounds = this.adjustBounds(bounds);
        var params = {};
        var imgSize = this.getImageSize();
        params.bbox = this.encodeBBOX ?
            bounds.toBBOX(null) :
            bounds.toArray();
        params.w = imgSize.w;
        params.h = imgSize.h;
        params.style = $.toJSON(this.style);
        params.filters = this.filters;

        var gdbpStr = '';
        $.each(this.gdbps, function (i, value) {
            gdbpStr += (',' + value);
        });
        params.gdbps = gdbpStr.substring(1, gdbpStr.length);
        params.r = Math.random().toFixed(3);
        return this.getFullRequestString(params);
    },

    CLASS_NAME: "Zondy.Map.Layer"
});
    
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------TileLayer.js---------------------------------------------------------*/

Zondy.Map.TileLayer = OpenLayers.Class(OpenLayers.Layer.Grid, Zondy.Service.HttpRequest, {

    fullExtent: null,
    /**
    * APIProperty: serviceVersion
    * {String}
    */
    serviceVersion: "1.0.0",

    /**
    * APIProperty: isBaseLayer
    * {Boolean}
    */
    isBaseLayer: true,

    /**
    * APIProperty: tileOrigin
    * {<OpenLayers.LonLat>}
    */
    tileOrigin: null,

    /**
    * APIProperty: serverResolutions
    * {Array} A list of all resolutions available on the server.  Only set this 
    *     property if the map resolutions differs from the server.
    */
    serverResolutions: null,

    /**
    * APIProperty: zoomOffset
    * {Number} If your cache has more zoom levels than you want to provide
    *     access to with this layer, supply a zoomOffset.  This zoom offset
    *     is added to the current map zoom level to determine the level
    *     for a requested tile.  For example, if you supply a zoomOffset
    *     of 3, when the map is at the zoom 0, tiles will be requested from
    *     level 3 of your cache.  Default is 0 (assumes cache level and map
    *     zoom are equivalent).  Using <zoomOffset> is an alternative to
    *     setting <serverResolutions> if you only want to expose a subset
    *     of the server resolutions.
    */
    zoomOffset: 0,

    /// <summary>瓦片缓存名</summary>
    hdfName: null,

    /// <summary>是否压缩瓦片</summary>
    compress: false,

    /// <summary>压缩比例</summary>
    rate: 1.0,

    initialize: function (name, hdfName, options) {
        /// <summary>构造函数</summary>
        /// <param name="name" type="String">图层的显示名称</param>
        /// <param name="hdfName" type="String">hdf名</param>
        /// <param name="options" type="Object">属性赋值键值对</param>
        var newArguments = [];

        this.hdfName = hdfName;
        newArguments.push(name, null, {}, options);
        OpenLayers.Layer.Grid.prototype.initialize.apply(this, newArguments);

        if (this.baseUrl == null)
            this.baseUrl = "igs/rest/mrms";

        this.setLevelExtent();
    },

    destroy: function () {
        /// <summary>销毁此图层</summary>
        // for now, nothing special to do here. 
        OpenLayers.Layer.Grid.prototype.destroy.apply(this, arguments);
    },

    clone: function (obj) {
        /// <summary>克隆此图层</summary>
        if (obj == null) {
            obj = new Zondy.Map.TileLayer(this.name,
                                           this.hdfName,
                                           this.getOptions());
        }

        //get all additions from superclasses
        obj = OpenLayers.Layer.Grid.prototype.clone.apply(this, [obj]);

        // copy/set any non-init, non-simple values here

        return obj;
    },

    getURL: function (bounds) {
        bounds = this.adjustBounds(bounds);
        var res = this.map.getResolution();
        var x = Math.round((bounds.left - this.tileOrigin.lon) / (res * this.tileSize.w));
        var y;
        var latCenter = (this.map.maxExtent.top - this.map.maxExtent.bottom) / 2 + this.map.maxExtent.bottom;
        if (this.tileOrigin.lat >= latCenter) {
            y = Math.round((this.tileOrigin.lat - bounds.top) / (res * this.tileSize.h)); //按左上角为原点计算
        } else {
            y = Math.round((bounds.bottom - this.tileOrigin.lat) / (res * this.tileSize.h)); //按左下角为原点计算
        }
        var z = this.getZoomForResolution(res, true) + this.zoomOffset;
        var path = "/" + this.hdfName + "/" + z + "/" + y + "/" + x;
        var url = "http://" + this.ip + ":" + this.port + "/" + this.baseUrl + "/" + "tile";
        //        if (url instanceof Array) {
        //            url = this.selectUrl(path, url);
        //        }
        return url + path;
    },

    setMap: function (map) {
        OpenLayers.Layer.Grid.prototype.setMap.apply(this, arguments);
        if (!this.tileOrigin) {
            this.tileOrigin = new OpenLayers.LonLat(this.map.maxExtent.left,
                                                this.map.maxExtent.bottom);
        }
    },

    //验证
    setLevelExtent: function () {
        var url = "http://" + this.ip + ":" + this.port + "/igs/rest/mrcs/tiles/" + this.hdfName + "?f=json";
        var thisTile = this;
        this.ajax(url, {}, function (data) {
            data = eval(data);
            if (data && data.tileInfo && data.tileInfo.lods && data.tileInfo.lods.length > 0) {//新版本瓦片信息
                for (var i = 0; i < data.tileInfo.lods.length; i++) {
                    if (data.tileInfo.lods[i] && data.tileInfo.lods[i].scale != 0) {
                        var minlevel = data.tileInfo.lods[0].level;
                        var maxLevel = data.tileInfo.lods[data.tileInfo.lods.length - 1].level;
                        if (thisTile.map) {
                            if (thisTile.map.zoom > maxLevel)
                                thisTile.map.zoom = maxLevel;
                            if (thisTile.map.zoom < minlevel)
                                thisTile.map.zoom = minlevel;
                        }
                        break;
                    }
                }
            }
            else {
                if (data.TileInfo1 && data.TileInfo1.BeginLevel && thisTile.map) {//旧瓦片
                    if (thisTile.map.zoom > data.TileInfo1.BeginLevel)
                        thisTile.map.zoom = data.TileInfo1.BeginLevel;
                }
            }
        });
    },

    CLASS_NAME: "Zondy.Map.TileLayer"
});

/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------TianDiTu.js---------------------------------------------------------*/

Zondy.Map.TianDiTu = OpenLayers.Class(OpenLayers.Layer.Grid, {

    /**
    * APIProperty: serviceVersion
    * {String}
    */
    serviceVersion: "1.0.0",

    /**
    * APIProperty: isBaseLayer
    * {Boolean}
    */
    isBaseLayer: true,

    /**
    * APIProperty: tileOrigin
    * {<OpenLayers.LonLat>}
    */
    tileOrigin: null,

    ip: null,

    port: null,

    //图层类型,默认为矢量图
    layerType: "vec",

    //空白处显示的空白图片
    emptyImgURL: OpenLayers._getScriptLocation() + "/img/empty.png",

    /**
    * APIProperty: resolutions
    * {Array} A list of all resolutions available on the server.  Only set this 
    *     property if the map resolutions differs from the server.
    */
    resolutions: [
        1.40625,
        0.703125,
        0.3515625,
        0.17578125,
        0.087890625,
        0.0439453125,
        0.02197265625,
        0.010986328125,
        0.0054931640625,
        0.00274658203125,
        0.001373291015625,
        0.0006866455078125,
        0.00034332275390625,
        0.000171661376953125,
        0.0000858306884765625,
        0.00004291534423828125,
        0.00002145767211914062,
        0.00001072883605957031,
        0.00000536441802978515
     ],

    /**
    * APIProperty: zoomOffset
    * {Number} If your cache has more zoom levels than you want to provide
    *     access to with this layer, supply a zoomOffset.  This zoom offset
    *     is added to the current map zoom level to determine the level
    *     for a requested tile.  For example, if you supply a zoomOffset
    *     of 3, when the map is at the zoom 0, tiles will be requested from
    *     level 3 of your cache.  Default is 0 (assumes cache level and map
    *     zoom are equivalent).  Using <zoomOffset> is an alternative to
    *     setting <serverResolutions> if you only want to expose a subset
    *     of the server resolutions.
    */
    zoomOffset: 0,

    imgUrls: [
                "http://t0.tianditu.cn/img_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t1.tianditu.cn/img_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t2.tianditu.cn/img_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t3.tianditu.cn/img_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t4.tianditu.cn/img_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t5.tianditu.cn/img_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t6.tianditu.cn/img_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t7.tianditu.cn/img_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles"
            ],
    vecUrls: [
                "http://t0.tianditu.cn/vec_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=vec&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t1.tianditu.cn/vec_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=vec&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t2.tianditu.cn/vec_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=vec&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t3.tianditu.cn/vec_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=vec&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t4.tianditu.cn/vec_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=vec&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t5.tianditu.cn/vec_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=vec&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t6.tianditu.cn/vec_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=vec&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t7.tianditu.cn/vec_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=vec&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles"
            ],
    cvaUrls: [
                "http://t0.tianditu.cn/cva_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cva&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t1.tianditu.cn/cva_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cva&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t2.tianditu.cn/cva_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cva&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t3.tianditu.cn/cva_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cva&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t4.tianditu.cn/cva_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cva&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t5.tianditu.cn/cva_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cva&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t6.tianditu.cn/cva_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cva&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t7.tianditu.cn/cva_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cva&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles"
            ],
    ciaUrls: [
                "http://t0.tianditu.cn/cia_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cia&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t1.tianditu.cn/cia_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cia&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t2.tianditu.cn/cia_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cia&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t3.tianditu.cn/cia_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cia&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t4.tianditu.cn/cia_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cia&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t5.tianditu.cn/cia_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cia&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t6.tianditu.cn/cia_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cia&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles",
                "http://t7.tianditu.cn/cia_c/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cia&STYLE=default&TILEMATRIXSET=c&FORMAT=tiles"
            ],


    /// <summary>构造函数</summary>
    /// <param name="name" type="String">地图在浏览器上的显示名称</param>
    initialize: function (name, options) {
        /// <summary>构造函数</summary>
        /// <param name="name" type="String">地图在浏览器上的显示名称</param>
        $.extend(this, options);
        var newArguments = [];
        newArguments.push(name, {}, {});
        OpenLayers.Layer.Grid.prototype.initialize.apply(this, newArguments);

        if (this.ip && this.port) {
            this.serverAddress = "http://" + this.ip + ":" + this.port + "/igs/rest/cts/tianditu";
        }
    },

    destroy: function () {
        /// <summary>销毁此图层</summary>
        // for now, nothing special to do here. 
        OpenLayers.Layer.Grid.prototype.destroy.apply(this, arguments);
    },


    clone: function (obj) {
        /// <summary>克隆此图层</summary>
        if (obj == null) {
            obj = new OpenLayers.Layer.TileLayer(this.name, this.getOptions());
        }

        //get all additions from superclasses
        obj = OpenLayers.Layer.Grid.prototype.clone.apply(this, [obj]);

        // copy/set any non-init, non-simple values here

        return obj;
    },


    getURL: function (bounds) {
        var res = this.map.getResolution();
        var l = this.resolutions != null ?
            OpenLayers.Util.indexOf(this.resolutions, res) :
            this.map.getZoom() + this.zoomOffset;
        var d = 360 / Math.pow(2, l);
        var i = (bounds.bottom + 90) / d;
        var j = (bounds.left + 180) / d;
        var row = parseInt(i);
        var c = parseInt(j);
        var r = parseInt(Math.pow(2, l - 1) - 1 - row);

        return this.getTiandiUrl(this.layerType, c, r, l);
    },

    getTiandiUrl: function (type, c, r, l) {
        var tileUrl = "";
        var m = parseInt(Math.random() * 8);
        if(type==="vec")//天地图矢量数据
            tileUrl = this.vecUrls[m]+"&TILECOL=" + c + "&TILEROW=" + r + "&TILEMATRIX=" + l;  
        else if(type==="img") //天地图影像数据
            tileUrl = this.imgUrls[m]+"&TILECOL=" + c + "&TILEROW=" + r + "&TILEMATRIX=" + l;  
        else if(type==="cva") //天地图矢量注记数据
            tileUrl = this.cvaUrls[m]+"&TILECOL=" + c + "&TILEROW=" + r + "&TILEMATRIX=" + l;  
        else if(type==="cia") //天地图影像注记数据
            tileUrl = this.ciaUrls[m]+"&TILECOL=" + c + "&TILEROW=" + r + "&TILEMATRIX=" + l;  
        else if(type==="vec_igs") //天地图矢量数据
            tileUrl = this.serverAddress + "/vector/" + c + "/" + r + "/" + l;
        else if(type==="img_igs") //天地图影像数据
            tileUrl = this.serverAddress + "/raster/" + c + "/" + r + "/" + l;
        else if(type==="cva_igs") //天地图矢量注记数据
            tileUrl = this.serverAddress + "/vectorAnno/" + c + "/" + r + "/" + l;
        else if (type === "cia_igs") //天地图影像注记数据
            tileUrl = this.serverAddress + "/rasterAnno/" + c + "/" + r + "/" + l;
        return tileUrl;
    },

    setMap: function (map) {
        OpenLayers.Layer.Grid.prototype.setMap.apply(this, arguments);
        if (!this.tileOrigin) {
            this.tileOrigin = new OpenLayers.LonLat(this.map.maxExtent.left, this.map.maxExtent.bottom);
        }
    },

    CLASS_NAME: "OpenLayers.Layer.TiandituTileLayer"
});

/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------AnyLine.js---------------------------------------------------------*/

Zondy.Object.AnyLine = OpenLayers.Class({

    /// <summary>{Array},一组{Zondy.Object.Arc}类型</summary>
    Arcs: null,

    initialize: function (arcs) {
        /// <summary>构造函数</summary>
        /// <param name="arcs" type="Array,Zondy.Object.Arc in an Array">一组Zondy.Object.Arc,用以描述弧段</param>
        this.Arcs = arcs;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------Arc.js---------------------------------------------------------*/


Zondy.Object.Arc = OpenLayers.Class({
    /// <summary>描述一个弧段</summary>

    /// <summary>表示一个弧段的ID编号,不需要为其赋值</summary>
    ArcID: 0,

    /// <summary>{Array},一组{Zondy.Object.Point2D}类型</summary>
    Dots: null,

    initialize: function (dots) {
        /// <summary>构造函数</summary>
        /// <param name="dots" type="Array,Zondy.Object.Point2D in an Array">一组点用以构造弧段</param>
        this.Dots = dots;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------FeatureGraphicBase.js---------------------------------------------------------*/
Zondy.Object.FeatureGraphicBase = OpenLayers.Class({

    GID: 0,

    initialize: function () {
    },

    setGID: function (id) {
        /// <summary>设置此类的id</summary>
        /// <param name="id" type="Interger">id号</param>
        this.GID = id;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------GLine.js---------------------------------------------------------*/
Zondy.Object.GLine = OpenLayers.Class(Zondy.Object.FeatureGraphicBase, {

    /// <summary>{Zondy.Object.AnyLine}类型</summary>
    Line: null,

    initialize: function (line) {
        /// <summary>构造函数</summary>
        /// <param name="line" type="Zondy.Object.AnyLine">构造GLine的参数</param>
        /// <param name="gid" type="Interger">该线条的要素编号</param>
        this.Line = line;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------GRegion.js---------------------------------------------------------*/
Zondy.Object.GRegion = OpenLayers.Class(Zondy.Object.FeatureGraphicBase, {

    /// <summary>Array,Zondy.Object.AnyLine in an Array</summary>
    Rings: null,

    initialize: function (rings) {
        /// <summary>构造函数</summary>
        /// <param name="rings" type="Array,Zondy.Object.AnyLine in an Array">一组AnyLine</param>
        this.Rings = rings;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CAttDataRow.js---------------------------------------------------------*/


Zondy.Object.CAttDataRow = OpenLayers.Class({


    FID: 0,

    Values: null,

    initialize: function (values, fid) {
        /// <summary>构造函数</summary>
        /// <param name="values" type="Array,String in an Array">属性数据</param>
        /// <param name="fid" type="Interger">要素的ID</param>
        this.FID = fid;
        this.Values = values;
    }
}
);
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CAttStruct.js---------------------------------------------------------*/


Zondy.Object.CAttStruct = OpenLayers.Class({

    
    /// <summary>
    /// 属性名
    /// Array,String in an Array
    ///</summary>
    FldName: null,

    /// <summary>
    /// 属性个数
    /// Interger
    ///</summary>
    FldNumber:0,


    /// <summary>
    /// 属性类型数组
    /// Array,String in an Array
    /// Type: string,boolean,double,integer,long,short,datetime,time,stamp
    ///</summary>
    FldType: null,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性字段赋值对象</param>
        $.extend(this, options);//扩展属性的函数
    }
}
);
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CLineInfo.js---------------------------------------------------------*/

Zondy.Object.CLineInfo = OpenLayers.Class({

    /// <summary>定义线要素的相关参数</summary>

    /// <summary>线颜色</summary>
    Color: 1,

    /// <summary>线型ID</summary>
    LinStyleID: 1,

    /// <summary>辅助线型ID</summary>
    LinStyleID2: 0,

    /// <summary>线宽度</summary>
    LinWidth: 1,

    /// <summary>x比例系数</summary>
    Xscale: 1,

    /// <summary>y比例系数</summary>
    Yscale:1,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性键值对</param>

        OpenLayers.Util.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CPointInfo.js---------------------------------------------------------*/

Zondy.Object.CPointInfo = OpenLayers.Class({
    /// <summary>定义点要素的相关参数</summary>

    /// <summary>子图角度</summary>
    Angle: 1,

    /// <summary>子图颜色</summary>
    Color: 1,

    /// <summary>子图高度</summary>
    SymHeight: 1,

    /// <summary>子图ID</summary>
    SymID: 1,

    /// <summary>子图宽度</summary>
    SymWidth: 1,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性键值对</param>

        OpenLayers.Util.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CRegionInfo.js---------------------------------------------------------*/

Zondy.Object.CRegionInfo = OpenLayers.Class({
    /// <summary>定义线要素的相关参数</summary>

    /// <summary>结束填充色</summary>
    EndColor: 1,

    /// <summary>填充颜色</summary>
    FillColor: 1,

    /// <summary>填充模式</summary>
    FillMode: 0,

    /// <summary>填充图案笔宽</summary>
    OutPenWidth: 1,

    /// <summary>填充图案角度</summary>
    PatAngle: 1,

    /// <summary>填充图案颜色</summary>
    PatColor: 1,

    /// <summary>填充图案高度</summary>
    PatHeight: 1,

    /// <summary>填充图案ID</summary>
    PatID: 1,

    /// <summary>填充图案宽度</summary>
    PatWidth: 1,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性键值对</param>

        OpenLayers.Util.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CGDBInfo.js---------------------------------------------------------*/


Zondy.Object.CGDBInfo = OpenLayers.Class({
    /// <summary>表示一个GDB的相关信息</summary>

    GDBName: null,//数据库名称
    GDBSvrName: null,//数据源名称
    Password: null,//除MapGISLocal数据源,其它的都设置
    User: null, //除MapGISLocal数据源,其它的都设置
    
    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性字段赋值对象</param>
        $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CGetImageBySRSID.js---------------------------------------------------------*/

Zondy.Object.CGetImageBySRSID = OpenLayers.Class({
    /// <summary>取图投影参数信息</summary>

    /// <summary>Zondy.Object.CGDBInfo</summary>
    GdbInfo: null,

    /// <summary>投影参数ID</summary>
    SRSID: -1,

    initialize: function (srsID, gdbInfo) {
        /// <summary>构造函数</summary>
        /// <param name="srsID" type="Interger">投影ID</param>
        /// <param name="gdbInfo" type="Zondy.Object.CGDBInfo">投影系数的GDB信息</param>
        this.GdbInfo = gdbInfo;
        this.SRSID = srsID;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------DynShowStyle.js---------------------------------------------------------*/
 
Zondy.Object.DynShowStyle = OpenLayers.Class({

    /// <summary>透明度</summary>
    Alpha: 0,

    /// <summary>是否使用错误处理符号</summary>
    BugSpare: false,

    /// <summary>是否自绘驱动</summary>
    CustomRender: false,

    /// <summary>
    /// String
    /// 自绘驱动路径设置
    /// </summary>
    CustomRenderPath: null,

    /// <summary>显示的线方向线符号(只适用于其颜色)</summary>
    DirectionLineClr: 0,

    /// <summary>是否动态注记</summary>
    DynNoteFlag: false,

        
    /// <summary>
    ///  动态注记参数
    /// Zondy.Object.CDynNoteInfo
    /// </summary>
    DynNoteInfo: null,

    /// <summary>
    ///  Zondy.Enum.ISShowArc,枚举类型
    ///   是否显示填充区域的弧段
    /// </summary>
    IsShowArc: 0,

    /// <summary>是否显示线方向</summary>
    ISShowLineDirection:false,

    /// <summary>
    ///  显示的弧段样式(只适用于其颜色)
        /// Zondy.Object.CLineInfo
        /// </summary>
    LineInfo: null,

    /// <summary>最大显示比率</summary>
    MaxScale: 0.00,

    /// <summary>最小显示比率</summary>
    MinScale: 0.00,

    /// <summary>显示坐标点</summary>
    ShowCoordPnt: false,

    /// <summary>
    /// Zondy.Object.CLineInfo
    ///  错误处理线符号
    ///</summary>
    SpareLineInfo: null,


    /// <summary>
    ///  错误处理点符号
    ///  Zondy.Object.CPointInfo
    /// </summary>
       SparePointInfo:null,



    /// <summary>
    ///  错误处理区符号
    /// Zondy.Object.CRegionInfo
    ///</summary>
    SpareRegInfo:null,

    /// <summary>符号显示比例</summary>
    SymbleScale: 0.00,


    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性键值对</param>
        $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------LabelLinInfo.js---------------------------------------------------------*/


Zondy.Object.LabelLinInfo = OpenLayers.Class({

    /// <summary> 不完全注记</summary>
    ClientOutLabel: false,

    /// <summary>偏离线约束 偏移线的距离</summary>
    DistFromLine: 0.00,

    /// <summary>Zondy.Enum.LineConstrain,枚举类型,偏离线约束</summary>
    FromLineConstrain: 0,

    /// <summary>线重复注记 每段的长度</summary>
    Interval: 0.00,

    /// <summary>Zondy.Enum.LabelLinType,枚举类型, 线方位</summary>
    LinType: 0,

    /// <summary>Zondy.Enum.RepeatType,枚举类型,线重复注记策略</summary>
    Repeat: 0,

    /// <summary>Zondy.Enum.LabelSpreadType,枚举类型,注记分布的策略</summary>
    SpreadType: null,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性键值对</param>
        $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------LabelPntInfo.js---------------------------------------------------------*/



Zondy.Object.LabelPntInfo = OpenLayers.Class({
    /// <summary>点任意方位的角度值,Array,Double in an Array</summary>
        Ang:null,

        /// <summary>不完全注记</summary>
        ClientOutLabel: false,

        /// <summary>偏移距离,单位为像素</summary>
        Distance:0.00,

        /// <summary>点八方位注记类型,Array,Zondy.Enum.EightDirType in an Array</summary>
        EightDirLableType:null,

        /// <summary>点方位,Zondy.Enum.LabelPntType</summary>
        PntType:0,

        initialize: function (options) {
            /// <summary>构造函数</summary>
            /// <param name="options" type="Object">属性键值对</param>
            $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------LabelRegInfo.js---------------------------------------------------------*/


Zondy.Object.LabelRegInfo = OpenLayers.Class({
    /// <summary>区方位属性</summary>

    /// <summary>不完全注记</summary>
    ClientOutLabel: false,

    /// <summary>
    ///是否尝试水平注记微小区
    /// short
    ///</summary>
    LabelMiniRegion: 0,

    /// <summary>
    ///  自适应策略 区内不能注记时,是否可以注记在外部
    ///  short
    /// </summary>
    MayPlaceOutside: 0,

    /// <summary>
    ///  微小区最大面积
    ///  short
    /// </summary>
    MiniRegionArea: 0,

    /// <summary>区域外注记时,注记偏移的距离</summary>
    Offset: 0.00,

    /// <summary>区方位,Zondy.Enum.LabelRegType,枚举类型</summary>
    RegType: 0,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性键值对</param>
        $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CDisplayStyle.js---------------------------------------------------------*/


Zondy.Object.CDisplayStyle = OpenLayers.Class({
    /// <summary>地图显示参数</summary>

    /// <summary>注记符号大小固定</summary>
    AnnSizeFixed: false,

    /// <summary>图像质量</summary>可选值为:1(低)、2(中)、3(高)
    DriverQuality: 0,

    /// <summary>是否动态投影</summary>
    DynProjFlag: false,

    /// <summary>符号是否跟随显示放大(该属性已过时,请使用各个要素类的大小固定及线宽固定)</summary>
    FollowScale: false,

    /// <summary>线状符号线宽固定</summary>
    LinPenWidFixed: false,

    /// <summary>线状符号大小固定</summary>
    LinSizeFixed: false,

    /// <summary>点状符号线宽固定</summary>
    PntPenWidFixed: false,

    /// <summary>点状符号大小固定</summary>
    PntSizeFixed: false,

    /// <summary>填充符号线宽固定</summary>
    RegPenWidFixed: false,

    /// <summary> 填充符号大小固定</summary>
    RegSizeFixed: false,

    /// <summary>显示坐标点</summary>
    ShowCoordPnt: false,

    /// <summary>显示元素的外包矩形</summary>
    ShowElemRect: false,

    /// <summary>
    ///     图层显示参数
    ///     Array,Zondy.Object.DynShowStyle in Array
    /// </summary>
    ShowStyle: null,

    /// <summary>是否进行还原显示</summary>
    SymbleShow:false,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性字段赋值对象</param>
        $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CDynNoteInfo.js---------------------------------------------------------*/

Zondy.Object.CDynNoteInfo = OpenLayers.Class({

    /// <summary>动态注记字符串角度</summary>
    Angle: 0.00,

    /// <summary>背景颜色</summary>取值请参照MapGIS颜色库中颜色编号
    Backclr: 0,

    /// <summary>轮廓宽度</summary>
    Backexp: 0.00,

    /// <summary>加粗</summary>
    Bold: 0,

    /// <summary>注记字段名称</summary>
    FieldName: null,

    /// <summary>字体角度</summary>
    FontAngle: 0.00,

    /// <summary>注记颜色</summary>
    FontColor: 0,

    /// <summary>注记大小</summary>
    FontSize: 0,

    /// <summary>注记字体</summary>
    FontStyle: 0,

    /// <summary>中文字体</summary>
    Ifnt: 0,

    /// <summary>字形</summary>
    Ifnx: 0,

    /// <summary>是否填充背景</summary>
    IsFilled: false,

    /// <summary>是否水平显示</summary>
    IsHzpl: false,

    /// <summary>覆盖方式(表明透明还是覆盖)</summary>
    IsOvprnt: false,

    /// <summary>Description</summary>
    LabelLevel: 0,

    /// <summary>
    ///   Zondy.Object.DynNoteLableType
    /// </summary>
    LableType: null,

    /// <summary> x方向的偏移</summary>
    Offsetx: 0.00,

    /// <summary>y方向的偏移</summary>
    Offsety: 0.00,

    /// <summary>字间距</summary>
    Space: 0.00,

    /// <summary>删除线</summary>
    StrikeThrough: 0,

    /// <summary>下划线</summary>
    UnderLine: 0,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性字段赋值对象</param>
        $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------WebGraphicsInfo.js---------------------------------------------------------*/


Zondy.Object.WebGraphicsInfo = OpenLayers.Class({
    /// <summary>定义要素的图形参数</summary>


    /// <summary>枚举类型,取值范围: 1(PntInfo),2(LinInfo),3(RegInfo)</summary>
    InfoType: 0,

    /// <summary>线信息对象,Zondy.Object.CLineInfo类型</summary>
    LinInfo: null,

    /// <summary>点信息对象,Zondy.Object.CPointInfo类型</summary>
    PntInfo: null,

    /// <summary>区信息对象,Zondy.Object.CRegionInfo类型</summary>
    RegInfo: null,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性赋值键值对</param>
        $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------FeatureGeometry.js---------------------------------------------------------*/

Zondy.Object.FeatureGeometry = OpenLayers.Class({

    /*
    *Array类型
    *一组Zondy.Object.GLine对象in Array
    */
    LinGeom: null,

    /*
    *Array类型
    *一组Zondy.Object.GPoint 对象in Array
    */
    PntGeom: null,

    /*
    *Array类型
    *一组Zondy.Object.GRegion 对象in Array
    */
    RegGeom: null,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性键值对</param>
        $.extend(this, options);
    },

    setLine: function (lines) {
        /// <param name="lines" type="Zondy.Object.GLine in Array">线参数设置</param>
        this.LinGeom = lines;
    },
    setPntGeom: function (pnts) {
        /// <param name="pnts" type="Zondy.Object.GPoint in Array">点参数设置</param>
        this.PntGeom = pnts;
    },
    setRegGeom: function (Regs) {
        /// <param name="Regs" type="Zondy.Object.GRegion in Array">区参数设置</param>
        this.RegGeom = Regs;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------Tangram.js---------------------------------------------------------*/


Zondy.Object.Tangram = OpenLayers.Class({

    setByOL: function (openlayersObj) {
        /// <summary> * 实现将openlayers的geomerty转换为zondy类型
        ///此方法由子类实现</summary>
        return null;
    },

    toString: function () {
        return "";
    },

    getGeometryType: function () {
        /// <summary>获取几何类型名称,由子类实现</summary>
        return;
    }
});

   



    
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------Point2D.js---------------------------------------------------------*/
Zondy.Object.Point2D = OpenLayers.Class(Zondy.Object.Tangram, {

    /// <summary>x轴坐标</summary>
    x: null,

    /// <summary>y轴坐标</summary>
    y: null,


    setByOL: function (point) {
        /// <summary>通过传入Openlayers的OpenLayers.Geometry.Point类型来设置参数</summary>
        /// <param name="point" type="OpenLayers.Geometry.Point">Openlayers定义的点类型</param>
       this.x = point.x;
       this.y = point.y;

   },

   toString: function () {
       /// <summary>返回一个以字符串形式表示的点</summary>
        if (this.x == null || this.y == null)
            return "";
        var str = this.x + ',' + this.y;
        return str;
    },

    getGeometryType: function () {
        /// <summary>获取几何类型名称</summary>
        return "Point2D";
    },


    initialize: function (x, y) {
        /// <summary>构造函数</summary>
        /// <param name="x" type="Double">x轴坐标</param>
        /// <param name="y" type="Double">y轴坐标</param>
        this.x = x;
        this.y = y;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------PointForQuery.js---------------------------------------------------------*/
Zondy.Object.PointForQuery = OpenLayers.Class(Zondy.Object.Point2D, {

    initialize: function (x, y) {
        /// <summary>构造函数</summary>
        /// <param name="x" type="Double">x轴坐标</param>
        /// <param name="y" type="Double">y轴坐标</param>
        Zondy.Object.Point2D.prototype.initialize.apply(this, arguments);
    },

    /// <summary>设置点的搜索半径</summary>
    nearDis: 0.0,

    getGeometryType: function () {
        /// <summary>获取几何类型名称</summary>
        return "Point";
    },

    toString: function () {
        var str = Zondy.Object.Point2D.prototype.toString.apply(this);
        return str + ";" + this.nearDis;
    }
});  
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------Rectangle.js---------------------------------------------------------*/
Zondy.Object.Rectangle = OpenLayers.Class(Zondy.Object.Tangram, {
    /// <summary>表示一个矩形</summary>

    xmin: 0.0,

    xmax: 0.0,

    ymin: 0.0,

    ymax: 0.0,

    setByOL: function (openlayersRect) {
        /// <summary>使用一个由Openlayers定义的矩形来构造本对象</summary>
        /// <param name="openlayersRect" type="OpenLayers.Geometry.Polygon">由OpenLayers定义的矩形对象</param>
        this.xmin = openlayersRect.components[0].components[3].x;
        this.ymin = openlayersRect.components[0].components[3].y;
        this.xmax = openlayersRect.components[0].components[1].x;
        this.ymax = openlayersRect.components[0].components[1].y;
    },

    toString: function () {
        /// <summary>返回一个字符串来表示此矩形</summary>
        return "" + this.xmin + ',' + this.ymin + ',' + this.xmax + ',' + this.ymax;
    },

    getGeometryType: function () {
        /// <summary>获取几何类型名称</summary>
        return "Rect";
    },

    convertToBound: function () {
        /// <summary>将本对象转换为一个OpenLayers.Bound对象</summary>
        /// <returns type="OpenLayers.Bound" />
        var bounds = new OpenLayers.Bounds(this.xmin, this.ymin, this.ymax, this.xmax);
        return bounds;
    },

    initialize: function (argument1, argument2, argument3, argument4) {
        /// <summary>构造函数</summary>
        /// <param name="argument1" type="String">接受一个形如:xmin,ymin,xmax,ymax的字符串,也可以接受4个float类型的变量来初始化此对象</param>

        if (arguments.length == 1) {
            this.xmin = OpenLayers.Util.toFloat(argument1.split(",")[0]);
            this.ymin = OpenLayers.Util.toFloat(argument1.split(",")[1]);
            this.xmax = OpenLayers.Util.toFloat(argument1.split(",")[2]);
            this.ymax = OpenLayers.Util.toFloat(argument1.split(",")[3]);

        }
        if (arguments.length == 4) {
            this.xmin = argument1;
            this.ymin = argument2;
            this.xmax = argument3;
            this.ymax = argument4;
        }
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------Feature.js---------------------------------------------------------*/



Zondy.Object.Feature = OpenLayers.Class({
    /// <summary>表示一个要素类</summary>
    
    
    /// <summary>
    ///  属性值
    ///  Array,String in an Array
    /// </summary>
    AttValue: null,

    /// <summary>
    /// 要素id号
    /// Interger
    /// </summary>
    FID: 0,


    /// <summary>
    /// 要素的外包矩形
    /// Zondy.Object.Rectangle
    ///</summary>
    bound: null,

    /// <summary>
    ///  要素的几何图形描述
    ///  Zondy.Object.FeatureGeometry
    /// </summary>
    fGeom: null,


    /// <summary>
    ///  要素几何类型
    ///  Zondy.Enum.FeatureType类型,取值范围:1(Pnt)、2(Lin)、3(Reg)
    /// </summary>
    ftype: 0,


    /// <summary>
    ///  几何图形参数
    ///  Zondy.Object.WebGraphicsInfo
    /// </summary>
    GraphicInfo: null,

    initialize: function (feature) {
        /// <summary>构造函数</summary>
        /// <param name="name" type="Object">一个包含feature数据的对象</param>
        $.extend(this, feature);
    },



    getAttValue: function (attKey) {
        /// <summary>获取当前要素的属性值</summary>
        /// <param name="attKey" type="Interger">属性字段关键字或者属性序号</param>
        /// <returns type="String" />
        if (this.AttValue === null)
            return null;
        var attLength = this.AttValue.length;

        if (typeof (attKey) == 'number') {
            if (attKey >= attLength)
                return null;
            return this.AttValue[attKey];
        }
    },

    getGraphicInfo: function () {
        /// <summary>获取当前要素的几何图形参数</summary>
        /// <returns type="Zondy.Object.WebGraphicsInfo" />
        if (this.GraphicInfo === null) {
            return null;
        }
        else {
            return new Zondy.Object.WebGraphicsInfo(this.GraphicInfo);
        }
    },

    getAttValueArray: function () {
        /// <summary>获取当前要素的所有字段属性值</summary>
        /// <returns type="Array contains String" />
        return this.AttValue;
    },
    getRectBound: function () {
        /// <summary>获取当前要素的外包矩形</summary>
        /// <returns type="Zondy.Object.Rectangle" />
        var bound = this.bound;
        if (bound != null) {
            return new Zondy.Object.Rectangle(bound);
        }
        else
            return bound;
    },

    getGeometry: function () {
        /// <summary>获取当前要素的几何描述</summary>
        /// <returns type="String" />
    },

    getFID: function () {
        /// <summary>获取当前要素的FID</summary>
        /// <returns type="Interger" />
        return this.FID;
    },

    setAttValues: function (values) {
        /// <summary>设置当前要素的所有属性值</summary>
        /// <param name="values" type="Array / Object">属性值数组 /或者属性键值对</param>
        this.AttValue = values;
    },

    setBound: function (bound) {
        /// <summary>设置当前要素的外包矩形</summary>
        /// <param name="bound" type="String:'xmin,ymin,xmax,ymax' | Zondy.Object.Rectangle
        ///  | {OpenLayers.Geometry.Rectangle}">外包矩形描述,可以是字符串,zondy矩形或者openlayers矩形</param>
        var rect = null;
        if (typeof (bound) == "string") {
            rect = new Zondy.Object.Rectangle(bound);
        }
        if (bound instanceof String) {
            rect = new Zondy.Object.Rectangle(bound);
        }
        if (bound instanceof Zondy.Object.Rectangle) {
            rect = bound;
        }
        if (bound instanceof OpenLayers.Geometry.Rectangle) {
            rect = new Zondy.Object.Rectangle();
            rect.setByOL(bound);
        }
        this.bound = rect;
    },

    setFID: function (fid) {
        /// <summary>设置当前要素的FID</summary>
        /// <param name="fid" type="Interger">要素id号</param>
        this.FID = fid;
    },

    setFType: function (type) {
        /// <summary>设置几何图形的类型</summary>
        /// <param name="type" type="Zondy.Enum.FeatureType">几何类型</param>
        this.ftype = type;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------FeatureSet.js---------------------------------------------------------*/

/// <reference path="../../jquery-1.4.4.min.js" />


Zondy.Object.FeatureSet = OpenLayers.Class({
    /// <summary> 
    /// 简单要素类集合,用于相关要素操作
    /// @requires Feature.js
    ///</summary>

    /*********************************************Private*******************************/

    /******************************************** Public********************************
    /**
    * 属性结构
    * {Array}
    * {Zondy.Object.CAttStruct}
    */
    AttStruct: null,

    /**
    * 要素数组
    * {Array}
    * {Zondy.Object.Feature} in Array
    */
    SFEleArray: new Array(),

    /// <summary>{Interger},一次查询的总要素个数,仅在做要素查询时有意义
    ///   ReadOnly
    /// </summary>
    TotalCount:0,


    initialize: function () {
    },


    clear: function () {
        /// <summary>还原主参数为默认值</summary>
        this.AttStruct = null;
        this.SFEleArray = new Array();
    },

    addFeature: function (features) {
        /// <summary>添加一组或者一个要素</summary>
        /// <param name="name" type="{Array} | {Zondy.Object.Feature} | {Object}(代表Feature的属性键值对)">一组要素,或者一个要素</param>
        if (features instanceof Array) {
            this.SFEleArray.concat(features);
        }
        else {
            this.SFEleArray.push(features);
        }
    },


    getFeaturesLength: function () {
        /// <summary>获取要素集要素的记录条数</summary>
        /// <returns type="Integer" />
        if (this.SFEleArray instanceof Array) {
            return this.SFEleArray.length;
        }
        else {
            return 0;
        }
    },

    getFeatureByIndex: function (i) {
        /// <summary>获取指定要素类</summary>
        /// <returns type="{Zondy.Object.Feature}" />
        if (i >= this.getFeaturesLength() ){
            return null;
        }
        else {
            var feature = this.SFEleArray[i];
            if (feature instanceof Zondy.Object.Feature)
                return feature;
            else {
                return new Zondy.Object.Feature(this.SFEleArray[i]);
            }
        }
    },

    getAttType: function (attKey) {
        /// <summary>获取某属性字段的类型</summary>
        /// <param name="attkey" type="String">属性字段关键字,可以是{String}字段名,可以是序号{Interger}</param>
        /// <returns type="String" />
        var index;
        if (this.AttStruct == null)
            return null;
        if (typeof (attKey) == 'number')
            index = attKey;
        else
            index = this.getAttIndexByAttName(attKey);
        if (index == null)
            return null;
        else
            return this.AttStruct.FldType[index];
    },

    getAttIndexByAttName: function (name) {
        /// <summary>通过属性的名称获取属性的序号</summary>
        /// <param name="name" type="String">属性名</param>
        /// <returns type="Interger" />
        if (this.AttStruct == null)
            return null;
        if (this.AttStruct.FldName == null)
            return null;
        var length = this.AttStruct.FldName.length;
        for (var i = 0; i < length; i++) {
            if (this.AttStruct.FldName[i] == name)
                return i;
        }
        return null;
    },

    getAttNameByIndex: function (index) {
        /// <summary>通过属性的序号获取属性名称</summary>
        /// <param name="index" type="Interger">属性序号</param>
        /// <returns type="String" />
        if (this.AttStruct == null)
            return null;
        if (this.AttStruct.FldName == null)
            return null;
        if (this.AttStruct.FldName.length <= index)
            return null;
        return this.AttStruct.FldName[index];
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------GPoint.js---------------------------------------------------------*/
Zondy.Object.GPoint = OpenLayers.Class(Zondy.Object.FeatureGraphicBase, {

    /// <summary>Zondy.Object.Point2D</summary>
    Dot: null,

    initialize: function (x, y) {
        /// <summary>构造函数</summary>
        /// <param name="x" type="Float">圆心x坐标</param>
        /// <param name="y" type="Float">圆心y坐标</param>
        this.Dot = new Zondy.Object.Point2D(x, y);
    },

    setDot: function (pnt) {
        /// <summary>设置圆心点</summary>
        /// <param name="pnt" type="Zondy.Object.Point2D">圆心</param>
        this.Dot = pnt;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------Circle.js---------------------------------------------------------*/


Zondy.Object.Circle = OpenLayers.Class(Zondy.Object.Tangram, {
    /// <summary>表示一个圆</summary>

    /// <summary>
    ///  圆心点
    ///  Zondy.Object.Point2D
    /// </summary>
    point: null,

    /// <summary>
    ///  半径
    ///  Float
    /// </summary>
    radious: null,

    setByOL: function (openlayersCircle) {
        /// <summary>通过传入Openlayers的OpenLayers.Geometry类型来设置参数</summary>
        /// <param name="openlayersCircle" type="由Openlayers定义的圆类型">Description</param>
        var geoObj = openlayersCircle.components;
        var linearRing = new OpenLayers.Geometry.LinearRing(geoObj[0].components);
        //圆心
        var centerPoint = linearRing.getCentroid();
        //圆半径
        var radious = Math.abs(geoObj[0].components[0].x - centerPoint.x);
        this.point = new Zondy.Object.Point2D(centerPoint.x, centerPoint.y);
        this.radious = radious;
    },

    toString: function () {
        /// <summary>返回一个字符串来表示此圆</summary>
        if (this.point == null || this.radious == null)
            return "";
        return this.point.x + ',' + this.point.y + ',' + this.radious;
    },

    getGeometryType: function () {
        /// <summary>获取几何类型名称</summary>
        return "Circle";
    },

    initialize: function (point, radious) {
        /// <summary>构造函数</summary>
        /// <param name="point" type="Zondy.Object.Point2D">圆心点</param>
        /// <param name="radious" type="Float">半径</param>
        this.point = point;
        this.radious = radious;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------Polygon.js---------------------------------------------------------*/
Zondy.Object.Polygon = OpenLayers.Class(Zondy.Object.Tangram, {

    /// <summary>Array ,Zondy.Object.Point2D in an Array</summary>
    pointArr: null,

    setByOL: function (openlayersPoly) {
        /// <summary> 通过传入Openlayers的OpenLayers.Geometry类型来设置参数</summary>
        /// <param name="openlayersPoly" type="OpenLayers.Geometry">由Openlayers定义的多边形</param>
        var pointArr = openlayersPoly.components[0].components;
        var len = pointArr.length;
        var i;
        for (i = 0; i < len; i++) {
            this.pointArr[i] = new Zondy.Object.Point2D(pointArr[i].x, pointArr[i].y);
        }
    },

    toString: function () {
        /// <summary>返回一个字符串来表示该多边形</summary>
        if (this.pointArr == null || this.pointArr.length == 0)
            return "";
        var i;
        var str = "";
        for (i = 0; i < this.pointArr.length; i++) {
            str += this.pointArr[i].x + ',' + this.pointArr[i].y + ',';
        }
        return str.substring(0, str.length - 1);

    },

    getGeometryType: function () {
        /// <summary>获取几何类型名称</summary>
        return "Polygon";
    },

    initialize: function (pointArr) {
        /// <summary>构造函数</summary>
        /// <param name="pointArr" type="Array,Zondy.Object.Point2D in an Array">一组点类型</param>
        this.pointArr = new Array();
        if (pointArr != undefined) {
            this.pointArr = pointArr;
        }
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------PolyLine.js---------------------------------------------------------*/
Zondy.Object.PolyLine = OpenLayers.Class(Zondy.Object.Tangram, {

    /// <summary>Array ,Zondy.Object.Point2D in an Array</summary>
    pointArr: null,

    setByOL: function (openlayersLine) {
        /// <summary> 通过传入Openlayers的OpenLayers.Geometry类型来设置参数</summary>
        /// <param name="openlayersPoly" type="OpenLayers.Geometry">由Openlayers定义的折线</param>
        // var len = openlayersLine.components[0].components.length;
        var len = openlayersLine.components.length;
        var i;
        for (i = 0; i < len; i++) {
            this.pointArr[i] = new Zondy.Object.Point2D(openlayersLine.components[i].x, openlayersLine.components[i].y);
        }
    },

    toString: function () {
        /// <summary>返回一个字符串来表示该折线</summary>
        if (this.pointArr == null||this.pointArr.length==0)
            return "";
        var i;
        var str = "";
        for (i = 0; i < this.pointArr.length; i++) {
            str += this.pointArr[i].x + ',' + this.pointArr[i].y + ",";
        }
        return str.substring(0,str.length-1);
    },

    getGeometryType: function () {
        /// <summary>获取几何类型名称</summary>
        return "Line";
    },


    initialize: function (pointArr) {
        /// <summary>构造函数</summary>
        /// <param name="pointArr" type="Array,Zondy.Object.Point2D in an Array">一组点类型</param>
        this.pointArr = new Array();
        if (pointArr != undefined) {
            this.pointArr = pointArr;
        }
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------PolyLineForQuery.js---------------------------------------------------------*/
Zondy.Object.PolyLineForQuery = OpenLayers.Class(Zondy.Object.PolyLine, {

    initialize: function (pntArray) {
        /// <summary>构造函数</summary>
        /// <param name="pntArray" type="Array">一组 Zondy.Object.Point2D类型的对象</param>
        Zondy.Object.PolyLine.prototype.initialize.apply(this, arguments);
    },

    /// <summary>设置点的搜索半径</summary>
    nearDis: 0.0,

    toString: function () {
        var str = Zondy.Object.PolyLine.prototype.toString.apply(this);
        return str + ";" + this.nearDis;
    }
});  
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------AnalysisBase.js---------------------------------------------------------*/

Zondy.Service.AnalysisBase = OpenLayers.Class(Zondy.Service.HttpRequest, {

    /// <summary>分析服务基类</summary>

    /// <summary>工作流ID号,Interger</summary>
    flowID: null,

    initialize: function () {
    },

    execute: function (onSuccess, way, isAsy, f) {
        /// <summary>执行分析语句</summary>
        /// <param name="onSuccess" type="{Function}">必要参数,执行成功后的回调函数</param>
        /// <param name="way" type="{String}">
        ///     'POST' or 'GET',默认为'Get',当所需要发送的数据量比较大时,请选择'Post',否则可能会执行失败
        ///</param>
        /// <param name="isAsy" type="{Boolean}">是否异步执行,默认为false</param>
        /// <param name="f" type="{String}">'json' or 'xml' 指明执行返回结果的格式</param>
        var data = {};
        if (!way)
            way = "get";

        if (f == undefined)
        //  如果f 未定义,或者f为非法字符串时,默认为json
            f = "json";
        else {
            if (f.toLowerCase() != 'xml')
                f = 'json';
        }
        if (isAsy == undefined) {
            isAsy = false;
        }

        if (this.partUrl == null)
            this.partUrl = "execute/" + this.flowID;
        if (this.baseUrl == null)
            this.baseUrl = "igs/rest/mrfws";

        if (way.toLowerCase() == "get") {
            data.f = f;
            data.isAsy = isAsy;
            var jsonStr = $.toJSON(this, ['port', 'ip', 'baseUrl', 'partUrl'], ';', false);
            data.paraValues = jsonStr.substring(1, jsonStr.length - 1);
        }

        if (way.toLowerCase() == "post") {
            this.partUrl += "?isAsy=" + isAsy.toString() + "&f=" + f;
            jsonStr = $.toJSON(this, ['port', 'ip', 'baseUrl', 'partUrl'], ',');
            var obj = $.parseJSON(jsonStr);
            var keyValueArray = new Array();
            for (var o in obj) {
                var keyValue = {};
                keyValue.Key = o;
                keyValue.Value = obj[o].toString();
                keyValueArray.push(keyValue);
            }
            data = $.toJSON(keyValueArray);
        }

        this.ajax(null, data, onSuccess, way, null, f);
    }
})
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ClassBufferBase.js---------------------------------------------------------*/


Zondy.Service.ClassBufferBase = OpenLayers.Class(Zondy.Service.AnalysisBase, {
    /// <summary>类缓冲分析基类</summary>
    
   srcInfo:null,
   desInfo:null,
   idstr:"1,2,3,4,5",
   angleType:0,
   isDissolve:true,
   isDynPrj: false,
 

   initialize: function (parameters, options) {
       /// <summary>构造函数</summary>
       /// <param name="parameters" type="Object">分析相关必要参数</param>
       /// <param name="options" type="Object">其他参数键值对</param>
        $.extend(this, parameters, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ClassBufferByMultiplyRing.js---------------------------------------------------------*/


Zondy.Service.ClassBufferByMultiplyRing = OpenLayers.Class(Zondy.Service.ClassBufferBase, {

    /// <summary>类裁剪分析(多圈)</summary>

    radiusStr: "2,4,8,10",

    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        this.flowID = "600232";
        Zondy.Service.ClassBufferBase.prototype.initialize.apply(this,arguments);
    }
});

/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ClassBufferBySingleRing.js---------------------------------------------------------*/


Zondy.Service.ClassBufferBySingleRing = OpenLayers.Class(Zondy.Service.ClassBufferBase, {

    /// <summary>类裁剪分析(单圈)</summary>
   
   leftRad:5,
   rightRad:5,
   isByAtt:false,
   fldName:null,
   dynPrjRad: 0,

   initialize: function (parameters, property) {
       /// <summary>构造函数</summary>
       /// <param name="parameters" type="Object">分析相关必要参数</param>
       /// <param name="options" type="Object">其他参数键值对</param>
        this.flowID = "600231";
        Zondy.Service.ClassBufferBase.prototype.initialize.apply(this, arguments);
    }
});







/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ClipBase.js---------------------------------------------------------*/


Zondy.Service.ClipBase = OpenLayers.Class(Zondy.Service.AnalysisBase, {
    /// <summary>裁剪分析基类分析类</summary>
  
   desInfo: null,
   attOptType:1,
   infoOptType:1,
   overType:3,
   tolerance:0.0001,
   isCleanNode:false,
   isLabelPnt:false,
   isValidReg:false,

  
    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        $.extend(this, parameters, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ClipByCircle.js---------------------------------------------------------*/


Zondy.Service.ClipByCircle = OpenLayers.Class(Zondy.Service.ClipBase, {

    /// <summary>圆裁剪类</summary>
    //圆点坐标,string:x,y
    srcInfo: null,
     center: null,
    //半径长度float
     radius:null,
     step: 0.001,

     initialize: function (parameters, property) {
         /// <summary>构造函数</summary>
         /// <param name="parameters" type="Object">分析相关必要参数</param>
         /// <param name="options" type="Object">其他参数键值对</param>
        this.flowID = "600229";
        Zondy.Service.ClipBase.prototype.initialize.apply(this,arguments);
    }
});







/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ClipByLayer.js---------------------------------------------------------*/


Zondy.Service.ClipByLayer = OpenLayers.Class(Zondy.Service.ClipBase, {

    /// <summary>图层裁剪类</summary>
    srcInfo1: null,
    srcInfo2: null,

    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        this.flowID = "600230";
        Zondy.Service.ClipBase.prototype.initialize.apply(this,arguments);
    }
});

/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ClipByPolygon.js---------------------------------------------------------*/


Zondy.Service.ClipByPolygon = OpenLayers.Class(Zondy.Service.ClipBase, {
/// <summary>多边形裁剪类</summary>

    // strPos为STRING格式,内容是多边形几个点坐标:x1,y1,x2,y2....
    srcInfo: null,
    strPos: null,
    
    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        this.flowID = "600228";
        Zondy.Service.ClipBase.prototype.initialize.apply(this,arguments);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------FeatureBuffBase.js---------------------------------------------------------*/


Zondy.Service.FeatureBuffBase = OpenLayers.Class(Zondy.Service.AnalysisBase, {
    /// <summary>要素缓冲分析基类</summary>

     sfGeometryXML:null,//注意:需要修改为将FeatureGeometry[]数组序列化为字符串
     attStrctXML: null, //注意:需要修改为CAttStruct数组序列化为字符串
     attRowsXML: null, //注意:需要修改为将CAttDataRow[]数组序列化为字符串
     traceRadius:0.0001,
     resultName:null,
     inFormat:"json",

    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        $.extend(this, parameters, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------FeatureBuffByMultiplyRing.js---------------------------------------------------------*/


Zondy.Service.FeatureBuffByMultiplyRing = OpenLayers.Class(Zondy.Service.FeatureBuffBase, {
    /// <summary>要素缓冲区分析(多圈)</summary>
    
   radiusStr:"0.003,0.002,0.001",


   initialize: function (parameters, options) {
       /// <summary>构造函数</summary>
       /// <param name="parameters" type="Object">分析相关必要参数</param>
       /// <param name="options" type="Object">其他参数键值对</param>
        this.flowID = "600239";
        Zondy.Service.FeatureBuffBase.prototype.initialize.apply(this,arguments);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------FeatureBuffBySingleRing.js---------------------------------------------------------*/

Zondy.Service.FeatureBuffBySingleRing = OpenLayers.Class(Zondy.Service.FeatureBuffBase, {
    /// <summary>要素缓冲区分析(单圈)</summary>

   
    leftRad:0.001,
    rightRad:0.001,

    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        this.flowID = "600238";
        
        Zondy.Service.FeatureBuffBase.prototype.initialize.apply(this,arguments);
    }
});







/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------GeometryAnalysisBase.js---------------------------------------------------------*/

Zondy.Service.GeometryAnalysisBase = OpenLayers.Class(Zondy.Service.HttpRequest, {
    /// <summary>几何分析基类</summary>

    resultFormat:"json",
    initialize: function () {
        /// <summary>构造函数</summary>
        if (this.baseUrl == null) {
            this.baseUrl = "igs/rest/mrgs";
        }
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CalServiceBase.js---------------------------------------------------------*/


Zondy.Service.CalServiceBase = OpenLayers.Class(Zondy.Service.GeometryAnalysisBase, {
    /// <summary>测量服务基类</summary>

    /// <summary>{Array},一组{Zondy.Object.Point2D}类型</summary>
    dots: null,

    /// <summary>{Zondy.Service.CProjectParam}类型</summary>
    projectInfo: null,

    /// <summary>{Zondy.Service.CProjectBySRSID}</summary>
    projectInfoBySRSID: null,

    initialize: function (obj,options) {
        /// <summary>构造函数</summary>
        /// <param name="obj" type="Array,Zondy.Object.Point2D in an Array">需要计算的点数组,数组类型为Zondy.Object.Point2D</param>

        this.dots = obj;
        $.extend(this, options);
        Zondy.Service.GeometryAnalysisBase.prototype.initialize.apply(this);
    },

    execute: function (projParam, onSuccess) {
        /// <summary>通过传入投影参数或者通过传入SRSID参数进行计算</summary>
        /// <param name="projParam" type="Zondy.Service.CProjectParam | Zondy.Service.CProjectBySRSID(建议普通用户采用此类直接获取MapGIS GDB 已经提供的空间参考系)">投影参数</param>
        /// <param name="onSuccess" type="Function">执行成功后的回调函数</param>
        if (projParam instanceof Zondy.Service.CProjectParam) {
            this.projectInfo = projParam;
        }
        if (projParam instanceof Zondy.Service.CProjectBySRSID) {
            this.projectInfoBySrsID = projParam;
        }
        var postObj = {};
        postObj.Dots = this.dots;
        postObj.ProjectInfo = this.projectInfo;
        postObj.ProjectInfoBySrsID = this.projectInfoBySrsID;
        //var postString = $.toJSON(postObj);
        this.ajax(null, postObj, onSuccess, "POST");
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CProjectBySRSID.js---------------------------------------------------------*/

Zondy.Service.CProjectBySRSID = OpenLayers.Class({
    /// <summary>用于进行SRSID投影的参数类/summary>

    DesSrsID: null,
    GdbInfo: null,

    initialize: function (desSrsID, gdbInfo) {
        /// <summary>构造函数</summary>
        /// <param name="desSrsID" type="{Interger}">目标SRSID号</param>
        /// <param name="gdbInfo" type="{Zondy.Object.CGDBInfo}">关于SRSID的GDB信息</param>
        this.DesSrsID = desSrsID;
        this.GdbInfo = gdbInfo;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CProjectParam.js---------------------------------------------------------*/


Zondy.Service.CProjectParam = OpenLayers.Class({
    /// <summary>投影转换空间参数类</summary>

    /// <summary>{Interger},角度单位</summary>
    ProjAngleUnit: 0,

    /// <summary>{Double},投影原点纬度</summary>
    ProjLat: 0.00,

    /// <summary>{Double},第一标准维度</summary>
    ProjLat1: 0.00,

    /// <summary>{Double},第二标准维度</summary>
    ProjLat2: 0.00,

    /// <summary>{Double},中央子午线经度</summary>
    ProjLon: 0.00,

    /// <summary>{Double},水平比例尺</summary>
    ProjRate: 0.00,

    /// <summary>{Interger},坐标系类型</summary>
    ProjType: 0,

    /// <summary>{Interger},投影类型</summary>
    ProjTypeID: 0,

    /// <summary>{Interger},长度单位</summary>
    ProjUnit: 0,

    /// <summary>{Short},投影带号</summary>
    ProjZoneNO: 0,

    /// <summary>{Short},投影分带类型</summary>
    ProjZoneType: 0,

    /// <summary>{Interger},椭球体参数</summary>
    SphereID: 0,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性键值对</param>
        $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CProjectDots.js---------------------------------------------------------*/


Zondy.Service.CProjectDots = OpenLayers.Class({
    /// <summary>作为MRGS的投影服务Post参数</summary>

    /// <summary>目标投影参数,Zondy.Service.CProjectParam 类型</summary>
    DesProjParm: null,

    /// <summary>源投影参数,Zondy.Service.CProjectParam 类型</summary>
    SrcProjParam: null,

    /// <summary>需要转换的点坐标,Zondy.Object.Point2D in an Array</summary>
    InputDots: null,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性键值对</param>
        $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CalPolyLineLength.js---------------------------------------------------------*/


Zondy.Service.CalPolyLineLength = OpenLayers.Class(Zondy.Service.CalServiceBase, {
    /// <summary>折线长度计算服务</summary>


    initialize: function (obj, options) {
        /// <summary>构造函数</summary>
        /// <param name="obj" type="Array">需要计算的点数组,数组类型为Zondy.Object.Point2D</param>
        /// <param name="options" type="Object">为其他属性赋值的键值对</param>
        this.partUrl = "calLength?f=" + this.resultFormat;
        Zondy.Service.CalServiceBase.prototype.initialize.apply(this,arguments);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CalArea.js---------------------------------------------------------*/



Zondy.Service.CalArea = OpenLayers.Class(Zondy.Service.CalServiceBase, {
    /// <summary>计算面积服务</summary>

    initialize: function (obj,options) {
        /// <summary>构造函数</summary>
        /// <param name="obj" type="Array,Zondy.Object.Point2D in an Array">需要计算的点数组,数组类型为Zondy.Object.Point2D</param>
        /// <param name="options" type="Object">为属性赋值的键值对</param>
        this.partUrl = "calArea?f=" + this.resultFormat;
        Zondy.Service.CalServiceBase.prototype.initialize.apply(this,arguments);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ProjectDots.js---------------------------------------------------------*/

Zondy.Service.ProjectDots = OpenLayers.Class(Zondy.Service.GeometryAnalysisBase, {
    /// <summary>通过MRGS服务进行投影转换</summary>

    initialize: function () {
        /// <summary>构造函数</summary>
        Zondy.Service.GeometryAnalysisBase.prototype.initialize.apply(this);
    },

    execute: function (projectParam, onSuccess) {
        /// <summary>执行拓扑分析</summary>
        /// <param name="projectParam" type="Zondy.Service.CProjectDots">投影参数</param>
        /// <param name="onSuccess" type="Function">执行成功后的回调函数</param>

        this.partUrl = "projectdots?f=" + this.resultFormat;
        var postString = $.toJSON(projectParam);
        this.ajax(null, postString, onSuccess, "POST");
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------TopAnalysis.js---------------------------------------------------------*/
Zondy.Service.TopAnalysis = OpenLayers.Class(Zondy.Service.GeometryAnalysisBase, {
    /// <summary>拓扑分析类,您只应该对pnt,line,reg3个属性中的一个赋值</summary>

    pnt: null,
    line: null,
    reg: null,

    /// <summary>分析半径</summary>
    nearDis: 0.01,

    /// <summary>相对对象</summary>
    relativeObj: null,
    p_onSuccess: null,

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性赋值键值对</param>
        $.extend(this, options);
        Zondy.Service.GeometryAnalysisBase.prototype.initialize.apply(this);
    },

    setPnt: function (pnt) {
        /// <summary>设置点类型</summary>
        /// <param name="pnt" type="Zondy.Object.GPoint">需要设置的点类型</param>
        this.pnt = pnt;
    },

    setLine: function (line) {
        /// <summary>设置线类型</summary>
        /// <param name="line" type="Zondy.Object.GLine">需要设置的线类型</param>
        this.line = line;
    },

    setReg: function (reg) {
        /// <summary>设置区类型</summary>
        /// <param name="reg" type="Zondy.Object.GRegion">需要设置的区类型</param>
        this.reg = reg;
    },

    setRelativeObj: function (obj) {
        /// <summary>设置拓扑分析的相对参照物</summary>
        /// <param name="obj" type="Zondy.Object.GRegion">相对参照物</param>
        this.relativeObj = obj;
    },

    execute: function (onSuccess) {
        /// <summary>执行拓扑分析</summary>
        /// <param name="onSuccess" type="Function">执行成功后的回调函数</param>
        this.p_onSuccess = onSuccess;
        var postObj = {};
        postObj.NearDis = this.nearDis;
        postObj.Pnt = this.pnt;
        postObj.Line = this.line;
        postObj.Reg = this.reg;
        postObj.RelativeObj = this.relativeObj;
        this.partUrl = "geomservice/topanalysis?f=" + this.resultFormat;
        var postString = $.toJSON(postObj);
        this.ajax(null, postString, this.onGetRltSuccess, "POST");
    },

    onGetRltSuccess: function (enumNum) {
        var rlt = Zondy.Util.getTopAnalysisResult(enumNum);
        this.p_onSuccess(rlt);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------NetAnalysis.js---------------------------------------------------------*/

Zondy.Service.NetAnalysis = OpenLayers.Class(Zondy.Service.AnalysisBase, {
    /// <summary>路径分析类</summary>

    netClsUrl: null,
    flagPosStr: null,
    analyTp: 'UserMode',
    weight: ',Weight1,Weight1',
    outFormat: 'JSON',
    elementType: 2,
    nearDis: 0.001,
    barrierPosStr: null,


    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        this.flowID = "600233";
        $.extend(this, parameters, options);
        
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------OverlayBase.js---------------------------------------------------------*/

Zondy.Service.OverlayBase = OpenLayers.Class(Zondy.Service.AnalysisBase, {
    /// <summary>叠加分析类</summary>

    srcInfo1: null,
    desInfo: null,
    attOptType: 1,
    infoOptType: 1,
    overType: 1,
    isCleanNode: false,
    isLabelPnt: false,
    isValidReg: false,
    isReCalculate: true,
    radius: 0.001,

    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        $.extend(this, parameters, options);

    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------OverlayByLayer.js---------------------------------------------------------*/

Zondy.Service.OverlayByLayer = OpenLayers.Class(Zondy.Service.OverlayBase, {
    /// <summary>叠加分析类</summary>

    srcInfo2: null,

    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        this.flowID = "600227";
        Zondy.Service.OverlayBase.prototype.initialize.apply(this, arguments);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------OverlayByPolygon.js---------------------------------------------------------*/

Zondy.Service.OverlayByPolygon= OpenLayers.Class(Zondy.Service.OverlayBase, {
    /// <summary>叠加分析类</summary>

    /// <summary>Zondy.Object.GRegion的json或者xml序列化形式</summary>
    strGRegionXML:null,
    inFormat:"json",

    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        this.flowID = "600237";
        Zondy.Service.OverlayBase.prototype.initialize.apply(this, arguments);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ProjectBase.js---------------------------------------------------------*/

Zondy.Service.ProjectBase = OpenLayers.Class(Zondy.Service.AnalysisBase, {
    /// <summary>投影基类</summary>

    clsName: null,
    desClsName: null,


    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        $.extend(this, parameters, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ProjectByLayer.js---------------------------------------------------------*/

Zondy.Service.ProjectByLayer = OpenLayers.Class(Zondy.Service.ProjectBase, {
    /// <summary>根据投影参数投影类,生成目的类</summary>

    projTypeID: 5,
    sphereType: 2,
    projAngleUnit: 4,
    projType: 3,
    projZoneType: 1,
    projZoneNO: 20,
    projLon: 1170000,
    projLat: 0,
    projLat1: 0,
    projLat2: 0,
    projUnit: 2,
    projRate: 1,
    x: 0,
    y: 0,

    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        this.flowID = "600235";
        Zondy.Service.ProjectBase.prototype.initialize.apply(this, arguments);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ProjectBySRID.js---------------------------------------------------------*/

Zondy.Service.ProjectBySRID = OpenLayers.Class(Zondy.Service.ProjectBase, {
    /// <summary>根据参照系ID投影类,生成目的类</summary>
    srID:32,

    initialize: function (parameters, options) {
        /// <summary>构造函数</summary>
        /// <param name="parameters" type="Object">分析相关必要参数</param>
        /// <param name="options" type="Object">其他参数键值对</param>
        this.flowID = "600234";
        Zondy.Service.ProjectBase.prototype.initialize.apply(this,arguments);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CatalogServiceBase.js---------------------------------------------------------*/

Zondy.Service.Catalog.CatalogServiceBase = OpenLayers.Class(Zondy.Service.HttpRequest, {

    resultFormat: "json",

    initialize: function () {
        /// <summary>构造函数</summary>
        if (this.baseUrl == null) {
            this.baseUrl = "igs/rest/mrcs";
        }
    }
});

/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------IncludeStruct.js---------------------------------------------------------*/
Zondy.Service.Catalog.IncludeStruct = OpenLayers.Class({

    includeDetails: true,
    includeSubs: true,

    initialize: function (details, subs) {
        /// <summary>构造函数</summary>
        /// <param name="details" type="Boolean">是否包含细节内容</param>
        /// <param name="subs" type="Boolean">是否包含子项</param>
        if (details instanceof Boolean)
            this.includeDetails = details;
        if (subs instanceof Boolean)
            this.includeSubs = subs;
    },

    toJSON: function () {
        /// <summary>返回次类的JSON字符串</summary>
        return $.toJSON(this);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------MapDoc.js---------------------------------------------------------*/


Zondy.Service.Catalog.MapDoc = OpenLayers.Class(Zondy.Service.Catalog.CatalogServiceBase, {

    docName: null,
    mapIndex: 0,
    layerID: 0,

    setDocName: function (docName) {
        /// <summary>设置文档名称</summary>
        /// <param name="docName" type="String">文档名称</param>
        this.docName = docName;
    },

    setMapIndex: function (index) {
        /// <summary>设置地图序号</summary>
        /// <param name="index" type="Interger">地图在文档下得序号</param>
        this.mapIndex = index;
    },

    setLayerID: function (index) {
        /// <summary>设置图层序号</summary>
        /// <param name="index" type="Interger">图层在地图下得序号</param>
        this.layerID = index;
    },

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性赋值对象</param>
        $.extend(this, options);
        Zondy.Service.Catalog.CatalogServiceBase.prototype.initialize.apply(this);
    },

    getMapDocList: function (onSuccess) {
        /// <summary>获取服务器地图文档列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "docs?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },

    getMapDocInfo: function (onSuccess, details, sub) {
        /// <summary>获取指定地图文档的相关信息</summary>
        /// <param name="details" type="Boolean">返回结果是否包含细节内容</param>
        /// <param name="sub" type="Boolean">返回结果是否包含子项</param>
        this.partUrl = "docs/" + this.docName + "?f=" + this.resultFormat;
        var includeObj = new Zondy.Service.Catalog.IncludeStruct(details, sub);
        this.partUrl += "&include=" + includeObj.toJSON();
        this.ajax(null, null, onSuccess);
    },

    getMapInfo: function (onSuccess, details, sub) {
        /// <summary>获取指定地图的相关信息</summary>
        /// <param name="details" type="Boolean">返回结果是否包含细节内容</param>
        /// <param name="sub" type="Boolean">返回结果是否包含子项</param>
        this.partUrl = "docs/" + this.docName+"/"+ this.mapIndex + "?f=" + this.resultFormat;
        var includeObj = new Zondy.Service.Catalog.IncludeStruct(details, sub);
        this.partUrl += "&include=" + includeObj.toJSON();
        this.ajax(null, null, onSuccess);
    },

    getLayersInfo: function (onSuccess) {
        /// <summary>获取某地图下所有图层的图层信息</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "docs/" + this.docName + "/" + this.mapIndex + "/layers?f=" + this.resultFormat;

        this.ajax(null, null, onSuccess);
    },

    getLayerInfo: function (onSuccess) {
        /// <summary>获取指定地图图层的相关信息</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "docs/"+this.docName+"/" + this.mapIndex + "/"+this.layerID+"?f=" + this.resultFormat;
     
        this.ajax(null, null, onSuccess);
    },

    deleteLayer: function (onSuccess) {
        /// <summary>删除地图图层(GET)</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "docs/"+this.docName+"/" + this.mapIndex + "/layers/delete?f="+this.resultFormat+"&layerIDs="+this.layerID;
     
        this.ajax(null, null, onSuccess);
    },

     addLayer: function (addLayerInfos,onSuccess) {
         /// <summary>添加地图图层(POST)</summary>
         /// <param name="addLayerInfo" type="Array,Zondy.Service.Catalog.CAddMapLayerInfo in an Array">需要添加的图层</param>
         /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "docs/"+this.docName+"/" + this.mapIndex + "/layers/add?f="+this.resultFormat;

        this.ajax(null, addLayerInfos, onSuccess,"POST");
    },

    createDoc: function (addDocInfo,onSuccess) {
        /// <summary>创建文档(POST)</summary>
        /// <param name="addDocInfo" type="Zondy.Service.Catalog.CAddDocInfo">需要创建的文档信息</param>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "docs/"+ "/create?f="+this.resultFormat;
        this.ajax(null, addDocInfo, onSuccess,"POST");
    },

    changeIndex: function (newIndexArray,onSuccess) {
        /// <summary>更改图层顺序(POST)</summary>
        /// <param name="newIndexArray" type="Array,Interger in an Array">新图层的序号顺序数组</param>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "docs/" + this.docName + "/" + this.mapIndex + "/layers/index?f=" + this.resultFormat;
        this.ajax(null, newIndexArray, onSuccess,"POST");
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------VectorLayer.js---------------------------------------------------------*/

Zondy.Service.Catalog.VectorLayer = OpenLayers.Class(Zondy.Service.Catalog.CatalogServiceBase, {

    serverName: "MapGISLocal",
    gdbName: null,
    dsName: null,

    setServerName: function (serverName) {
        /// <summary>设置GDBServer的名称,默认为MapGISLocal</summary>
        /// <param name="serverName" type="String">GDBServer 名称</param>
        this.serverName = serverName;
    },

    setGdbName: function (gdbName) {
        /// <summary>设置GDB名称</summary>
        /// <param name="gdbName" type="String">GDB名称</param>
        this.gdbName = gdbName;
    },

    setDsName: function (dsName) {
        /// <summary>设置要素集名称</summary>
        /// <param name="dsName" type="String">要素集名称</param>
        this.dsName = dsName;
    },

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性赋值对象</param>
        OpenLayers.Util.extend(this, options);
        Zondy.Service.Catalog.CatalogServiceBase.prototype.initialize.apply(this);
    },

    getServerList: function (onSuccess) {
        /// <summary>获取数据源列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "datasource?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },
    getServerGDBList: function (onSuccess) {
        /// <summary>获取数据源GDB列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "datasource/" + this.serverName + "?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },

    getSfclsList: function (onSuccess) {
        /// <summary>获取GDB下所有简单要素类列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "datasource/" + this.serverName + "/" + this.gdbName + "/sfcls?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },

    getFclsList: function (onSuccess) {
        /// <summary>获取GDB下所有要素类列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "datasource/" + this.serverName + "/" + this.gdbName + "/fcls?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },
    getAclsList: function (onSuccess) {
        /// <summary>获取GDB下所有注记类列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "datasource/" + this.serverName + "/" + this.gdbName + "/acls?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },
    getNclsList: function (onSuccess) {
        /// <summary>获取GDB下所有网络类列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "datasource/" + this.serverName + "/" + this.gdbName + "/ncls?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },
    getDsSfclsList: function (onSuccess) {
        /// <summary>获取GDB下指定要素集内所有简单要素类列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "datasource/" + this.serverName + "/" + this.gdbName + "/" + this.dsName + "/sfcls?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },
    getDsAclsList: function (onSuccess) {
        /// <summary>获取GDB下指定要素集内所有注记类列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "datasource/" + this.serverName + "/" + this.gdbName+"/" + this.dsName + "/acls?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },
    getDsOclsList: function (onSuccess) {

        /// <summary>获取GDB下指定要素集内所有对象类列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "datasource/" + this.serverName + "/" + this.gdbName+"/" + this.dsName + "/ocls?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },
    getDsNclsList: function (onSuccess) {
        /// <summary>获取GDB下指定要素集内所有网络类列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "datasource/" + this.serverName + "/" + this.gdbName+"/" + this.dsName + "/ncls?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },
    getDsRdsList: function (onSuccess) {
        /// <summary>获取GDB下指定栅格数据集内所有栅格数据集列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "datasource/" + this.serverName + "/" + this.gdbName+"/" + this.dsName + "/rds?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },
    getDsRcsList: function (onSuccess) {
        /// <summary>获取GDB下指定要素集内所有栅格目录列表</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        this.partUrl = "datasource/" + this.serverName + "/" + this.gdbName+"/" + this.dsName + "/rcs?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
    },
    getLayerList: function (onSuccess,clsType) {
        /// <summary>通过传入的参数选择获取GDB下面的哪一类</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        /// <param name="clsType" type="String">值为"sfcls","fcls","acls","ncls",分别为GDB下简单要素类,要素类,注记类或网络类</param>
        this.partUrl = "datasource/" + this.serverName + "/" + this.gdbName + "/" + clsType + "?f=" + this.resultFormat;
        this.ajax(null, null, onSuccess);
     },
    getLayerListInDS: function (onSuccess, clsType) {
        /// <summary>通过传入的参数选择获取GDB下面指定要素集下的哪一类</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        /// <param name="clsType" type="String">值为"sfcls","fcls","acls","ncls","ocls","rdc","rcs"
        ///分别为要素集下简单要素类,要素类,注记类,网络类,对象类,栅格数据集,栅格目录</param>
        this.partUrl = "datasource/" + this.serverName + "/" + this.gdbName + "/" + this.dsName + "/" + clsType + "?f=" + this.resultFormat;
          this.ajax(null, null, onSuccess);
     }

});


/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------EditServiceBase.js---------------------------------------------------------*/

Zondy.Service.EditServiceBase = OpenLayers.Class(Zondy.Service.HttpRequest,{
    /// <summary>用于添加要素的服务基类</summary>
    resultFormat: "json",

    initialize: function () {
        this.baseUrl = "igs/rest/mrfs";
    },

    getFullUrl: function () {
        /// <summary>获取完整服务的URL</summary>
        var s = "http://" + this.ip + ":" + this.port + "/" + this.baseUrl + "/" + this.partUrl;
        return s;
    },

    getBaseUrl: function () {
        var s = "http://" + this.ip + ":" + this.port + "/" + this.baseUrl + "/";
        return s;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------EditDocFeature.js---------------------------------------------------------*/
Zondy.Service.EditDocFeature = OpenLayers.Class(Zondy.Service.EditServiceBase, Zondy.Service.DocLayer, {
    /// <summary>添加要素到文档服务</summary>

    initialize: function (docName, layerIndex, options) {
        /// <summary>构造函数</summary>
        /// <param name="docName" type="String">文档名称</param>
        /// <param name="layerIndex" type="Interger">图层序号</param>
        /// <param name="options" type="Object">属性赋值对象</param>
        $.extend(this, options);
        this.docName = docName;
        this.layerIndex = layerIndex;
        this.partUrl = "docs/" + this.docName + "/" + this.mapIndex.toString() + "/" + this.layerIndex.toString();
        Zondy.Service.EditServiceBase.prototype.initialize.apply(this);
    },

    add: function (features, onSuccess) {
        /// <summary>添加一组要素</summary>
        /// <param name="features" type="{Zondy.Object.FeatureSet}">添加一组要素</param>
        /// <param name="onSuccess" type="{Function}">添加成功后的回调函数</param>
        this.partUrl += "/addFeatures";
        var url = this.getFullUrl() + "?f=" + this.resultFormat;
        this.ajax(url, features, onSuccess, "POST");
    },

    update: function (features, onSuccess) {
        /// <summary>更新一组要素</summary>
        /// <param name="features"  type="{Zondy.Object.FeatureSet}">更新一组要素</param>
        /// <param name="onSuccess" type="{Function}">更新成功后的回调函数</param>

        this.partUrl += "/updateFeatures";
        var url = this.getFullUrl() + "?f=" + this.resultFormat;
        this.ajax(url, features, onSuccess, "POST");
    },

    deletes: function (featureIds, onSuccess) {
        /// <summary>删除一组要素</summary>
        /// <param name="featureIds"  type="{String}">删除一组要素,多个要素间用','分割</param>
        /// <param name="onSuccess" type="{Function}">删除成功后的回调函数</param>

        this.partUrl += "/deleteFeatures";
        var url = this.getFullUrl() + "?f=" + this.resultFormat + "&objectIds=" + featureIds;
        this.ajax(url, null, onSuccess, "POST");
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------EditLayerFeature.js---------------------------------------------------------*/
Zondy.Service.EditLayerFeature = OpenLayers.Class(Zondy.Service.EditServiceBase, {
    /// <summary>添加要素到图层</summary>
    gdbp: null,

    initialize: function (gdbp, options) {
        /// <summary>构造函数</summary>
        /// <param name="docName" type="String">文档名称</param>
        /// <param name="layerIndex" type="Interger">图层序号</param>
        /// <param name="options" type="Object">属性赋值对象</param>
        $.extend(this, options);
        this.gdbp = gdbp;
        this.partUrl = "layer";
        Zondy.Service.EditServiceBase.prototype.initialize.apply(this);
    },

    add: function (features, onSuccess) {
        /// <summary>添加一组要素</summary>
        /// <param name="features" type="{Zondy.Object.FeatureSet}">添加一组要素</param>
        /// <param name="onSuccess" type="{Function}">添加成功后的回调函数</param>
        this.partUrl += "/addFeatures";
        var url = this.getFullUrl() + "?f=" + this.resultFormat + "&gdbp="+this.gdbp;
        this.ajax(url, features, onSuccess, "POST");
    },

    update: function (features, onSuccess) {
        /// <summary>更新一组要素</summary>
        /// <param name="features"  type="{Zondy.Object.FeatureSet}">更新一组要素</param>
        /// <param name="onSuccess" type="{Function}">更新成功后的回调函数</param>

        this.partUrl += "/updateFeatures";
        var url = this.getFullUrl() + "?f=" + this.resultFormat + "&gdbp=" + this.gdbp;
        this.ajax(url, features, onSuccess, "POST");
    },

    deletes: function (featureIds, onSuccess) {
        /// <summary>删除一组要素</summary>
        /// <param name="featureIds"  type="{String}">删除一组要素,多个要素间用','分割</param>
        /// <param name="onSuccess" type="{Function}">删除成功后的回调函数</param>

        this.partUrl += "/deleteFeatures";
        var url = this.getFullUrl() + "?f=" + this.resultFormat + "&objectIds=" + featureIds + "&gdbp=" + this.gdbp; 
        this.ajax(url, null, onSuccess, "POST");
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------QueryServiceBase.js---------------------------------------------------------*/

Zondy.Service.QueryServiceBase = OpenLayers.Class(Zondy.Service.HttpRequest, {

    /************************************private**************************************/
    resultCallBack: null,

    /**
    * 处理查询结果,并调用用户回调将结果返回给用户
    * Private, 本方法私有
    */
    processResult: function (jsonObj) {
        var rltObj = new Zondy.Object.FeatureSet();
        $.extend(rltObj, jsonObj);
        this.resultCallBack(rltObj);
    },

    /***********************************public*********************************************/

    /**
    *  用于查询的参数类
    *  {Zondy.Service.QueryParameter}
    */
    queryParam: null,

    initialize: function () {
        /// <summary>构造函数</summary>
        this.baseUrl = "igs/rest/mrfs/";
    },

    query: function (onSuccess) {
        /// <summary>查询函数,向服务器发送请求</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        if (this.queryParam == null) {
            return;
        }
        var fullRestUrl = "";

        if (this.queryParam instanceof Zondy.Service.QueryParameter) {
            // 如果是属于几何查询类
            fullRestUrl = "http://" + this.ip + ":" + this.port + "/" + this.baseUrl
             + this.partUrl;
        }
        else {
            return;
        }
        var dataObject = this.queryParam.getParameterObject();
        this.restQuery(fullRestUrl, dataObject, onSuccess);
    },

    restQuery: function (restUrl, dataObject, onSuccess) {
        this.resultCallBack = onSuccess;
        this.ajax(restUrl, dataObject, this.processResult, "GET", null, dataObject.f);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------QueryFeatureStruct.js---------------------------------------------------------*/

Zondy.Service.QueryFeatureStruct = OpenLayers.Class({
    /**
    *  是否包含属性值
    *  {Bool}
    **/
    IncludeAttribute: true,

    /**
    *  是否包含几何图形信息
    *  {Bool}
    **/
    IncludeGeometry: false,

    /**
    *  是否包含图形参数
    *  {Bool}
    **/
    IncludeWebGraphic: false,

    toJSON: function () {
        /// <summary>获取此类的json形式的字符串</summary>
        return $.toJSON(this);
    },

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性赋值对象</param>
        $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------QueryParameterBase.js---------------------------------------------------------*/

Zondy.Service.QueryParameterBase = OpenLayers.Class({

    /// <summary>用于查询的几何描述
    /// {Zondy.Object.Tangram}
    /// </summary>
    geometry: null,

    /// <summary>
    /// 条件查询的SQL语句,如果为空,则表示为单一的几何查询;
    ///  如果取值,表示为几何和条件混合查询
    ///  {String}
    ///</summary>
    where: null,

    /// <summary>几何查询的规则
    ///{Zondy.Service.QueryFeatureRule}
    ///</summary>
    rule: null,

    /// <summary>
    ///     需要查询的要素OID号,多个间用‘,’分隔
    ///     如果此参数有值,查询将默认转化为使用要素ID查询,而忽略条件查询
    ///</summary>
    objectIds: null,
  

    /**
    * 分页号
    * {Interger}
    */
    pageIndex: 0,

    /**
    * 每页记录数
    * {Interger}
    */
    recordNumber: 20,

    /**
    * 查询结果的序列化形式(json(默认值)|xml|kml|gml|georss,对于xml,kml,gml或者georss格式的类xml类型将以text文本返回,如需要可调用$.parseXML(text)得到其xml包装)
    * {String}
    */
    resultFormat: "json",

    /**
    * 指定查询返回结果所包含的要素信息
    * {Zondy.Service.QueryFeatureStruct}
    */
    struct: null,

    initialize: function () {
        /// <summary>构造函数</summary>
        if (this.struct == null) {
            this.struct = new Zondy.Service.QueryFeatureStruct();
        }
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------QueryFeatureRule.js---------------------------------------------------------*/

Zondy.Service.QueryFeatureRule = OpenLayers.Class({
    /**
    *  是否仅比较要素的外包矩形,来判定是否与几何约束图形有交集
    *  {Bool}
    **/
    CompareRectOnly: false,

    /**
    *  是否将要素的可见性计算在内
    *  {Bool}
    **/
    EnableDisplayCondition: false,

    /**
    *  是否完全包含
    *  {Bool}
    **/
    MustInside: false,

    /**
    *  是否相交
    *  {Bool}
    **/
    Intersect: false,

    toJSON: function () {
        /// <summary>获取此类的json形式的字符串</summary>
        return $.toJSON(this);
    },

    initialize: function (options) {
        /// <summary>构造函数</summary>
        /// <param name="options" type="Object">属性赋值对象</param>
        $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------QueryDocFeature.js---------------------------------------------------------*/

Zondy.Service.QueryDocFeature = OpenLayers.Class(Zondy.Service.QueryServiceBase, Zondy.Service.DocLayer,{

    onSuccess: null,

    initialize: function (queryParam, docName, layerIndex, options) {
        /// <summary>构造函数</summary>
        /// <param name="queryParam" type="Zondy.Service.QueryGeometryParameter">几何查询的参数类</param>
        /// <param name="docName" type="String">文档名称</param>
        /// <param name="layerIndex" type="Interger">图层序号</param>
        /// <param name="options" type="Object">属性赋值对象</param>
        $.extend(this, options);

        this.queryParam = queryParam;
        this.mapName = docName;
        this.layerIndex = layerIndex;
        this.partUrl = "docs/" + this.mapName + "/" + this.mapIndex.toString() + "/" + this.layerIndex + "/query";
        Zondy.Service.QueryServiceBase.prototype.initialize.apply(this);
    },

  
    query: function (onSuccess) {
        /// <summary>查询函数,向服务器发送请求</summary>
        /// <param name="onSuccess" type="Function">回调函数</param>
        if (this.queryParam == null) {
            return;
        }
        var fullRestUrl = "";

        if (this.queryParam instanceof Zondy.Service.QueryParameter) {
            // 如果是属于几何查询类
            fullRestUrl = "http://" + this.ip + ":" + this.port + "/" + this.baseUrl
             + this.partUrl;
        }
        else {
            return;
        }
        var dataObject = this.queryParam.getParameterObject();
        this.restQuery(fullRestUrl, dataObject, onSuccess);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------QueryLayerFeature.js---------------------------------------------------------*/

Zondy.Service.QueryLayerFeature = OpenLayers.Class(Zondy.Service.QueryServiceBase, {
    initialize: function (queryParam, options) {
        /// <summary>构造函数</summary>
        /// <param name="queryParam" type="Zondy.Service.QueryGeometryParameter">几何查询的参数类</param>
        /// <param name="options" type="Object">属性赋值对象</param>
        $.extend(this, options);

        this.queryParam = queryParam;
        this.partUrl = "layer/query";
        Zondy.Service.QueryServiceBase.prototype.initialize.apply(this);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------QueryParameter.js---------------------------------------------------------*/
/**
* Class: OpenLayers.Geometry.Polygon 
* Polygon is a collection of Geometry.LinearRings. 
* 
* Inherits from:
*  - <Zondy.Service.QueryParameterBase> 
*  
*/
Zondy.Service.QueryParameter = OpenLayers.Class(Zondy.Service.QueryParameterBase, {

    getParameterURL: function () {
        /// <summary>获取相关参数的REST-URL表示形式</summary>
        var paramUrl = "";
        paramUrl = "geometry=" + this.geometry.toString();
        paramUrl += "&geometryType=" + this.geometry.getGeometryType();
        paramUrl += "&page=" + this.pageIndex.toString();
        paramUrl += "&pageCount=" + this.recordNumber.toString();
        paramUrl += "&f=" + this.resultFormat;
        if (this.struct != null)
            paramUrl += "&structs=" + $.toJSON(this.struct);
        if (this.where != null)
            paramUrl += "&where=" + this.where;
        if (this.rule != null)
            paramUrl += "&rule=" + $.toJSON(this.rule);
        if (this.objectIds != null)
            paramUrl += "&objectIds=" + this.objectIds;
        return paramUrl;
    },

    getParameterObject: function () {
        /// <summary>获取相关参数的Object形式,私有方法</summary>
        var obj = {};
        obj.f = this.resultFormat;
        if (this.struct != null) {
            obj.structs = this.struct.toJSON();
        }

        if (this.objectIds != null) {

            obj.objectIds = this.objectIds;
            return obj;
        };

        obj.page = this.pageIndex.toString();
        obj.pageCount = this.recordNumber.toString();

        if (this.geometry != null) {
            obj.geometry = this.geometry.toString();
            obj.geometryType = this.geometry.getGeometryType();
        }


        if (this.where != null)
            obj.where = this.where;
        if (this.rule != null)
            obj.rule = this.rule.toJSON();
        return obj;
    },

    initialize: function (options) {
        /// <summary>构造函数</summary>
        this.struct = new Zondy.Service.QueryFeatureStruct();
        OpenLayers.Util.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------QueryByLayerParameter.js---------------------------------------------------------*/

/**
* Class: OpenLayers.Geometry.Polygon 
* Polygon is a collection of Geometry.LinearRings. 
* 
* Inherits from:
*  - <Zondy.Service.QueryParameterBase> 
*  
*/
Zondy.Service.QueryByLayerParameter = OpenLayers.Class(Zondy.Service.QueryParameter, {

    gdbp: null,

    getParameterURL: function () {
        /// <summary>获取相关参数的REST-URL表示形式</summary>
        var paramUrl = Zondy.Service.QueryParameter.prototype.getParameterURL.apply(this);
        return paramUrl + "&gdbp=" + this.gdbp;
    },

    getParameterObject: function () {
        /// <summary>获取相关参数的Object形式,私有方法</summary>
        var obj = Zondy.Service.QueryParameter.prototype.getParameterObject.apply(this);
        obj.gdbp = this.gdbp;
        return obj;
    },

    initialize: function (gdbp, options) {
        /// <summary>构造函数</summary>
        /// <param name="gdbp" type="String">被查询的图层的gdbp</param>
        /// <param name="options" type="Object">对象属性键值对</param>
        this.struct = new Zondy.Service.QueryFeatureStruct();
        this.gdbp = encodeURI(gdbp);
        OpenLayers.Util.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CAddMapLayerInfo.js---------------------------------------------------------*/

Zondy.Service.Catalog.CAddMapLayerInfo = OpenLayers.Class({

    Index: 0,
    LayerName: null,
    GDBP: null,

    initialize: function (layerName, index, gdbp) {
        /// <summary>构造函数</summary>
        /// <param name="layerName" type="String">图层名称</param>
        /// <param name="index" type="Interger">图层在地图或者组下的序号</param>
        /// <param name="gdbp" type="String">图层的gdbp</param>
        this.Index = index;
        this.LayerName = layerName;
        this.GDBP = gdbp;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CAddMapGroupInfo.js---------------------------------------------------------*/

Zondy.Service.Catalog.CAddMapGroupInfo = OpenLayers.Class({

    GroupName: null,
    Index: 0,
    AddMapLayerInfos: null,

    initialize: function (groupName, index, mapLayerInfo) {
        /// <summary>构造函数</summary>
        /// <param name="groupName" type="String">组名称</param>
        /// <param name="index" type="Interger">组在文档或者地图下的序号</param>
        /// <param name="mapLayerInfo" type="Array,Zondy.Service.Catalog.AddMapLayerInfo in an Array">图层信息</param>
        this.GroupName = groupName;
        this.Index = index;
        this.AddMapLayerInfos = mapLayerInfo;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CAddMapInfo.js---------------------------------------------------------*/

Zondy.Service.Catalog.CAddMapInfo = OpenLayers.Class({
    /// <summary>地图名称</summary>
    MapName: null,

    /// <summary>地图在文档下的序号</summary>
    Index: 0,

    /// <summary>Array,Zondy.Service.Catalog.CAddMapLayerInfo in an Array,地图下的图层信息</summary>
    LayerInfos: null,

    /// <summary>Array,Zondy.Service.Catalog.CAddMapGroupInfo in an Array,地图下的组信息</summary>
    GroupInfos: null,

    initialize: function (mapName, layerInfos, options) {
        /// <summary>构造函数</summary>
        /// <param name="mapName" type="String">地图名称</param>
        /// <param name="layerInfos" type="Zondy.Service.Catalog.AddMapLayerInfo in an Array">地图下的图层信息</param>
        /// <param name="options" type="Object">属性对象</param>

        this.MapName = mapName;
        this.LayerInfos = layerInfos;
        $.extend(this, options);
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------CAddDocInfo.js---------------------------------------------------------*/

Zondy.Service.Catalog.CAddDocInfo = OpenLayers.Class({
    /// <summary>用于创建一个地图文档</summary>

    /// <summary>是否在服务器文档列表里创建此文档结点</summary>
    CreatFolderNode: false,

    /// <summary>文档名称</summary>
    DocName: null,

    /// <summary>是否创建永久性地图文档,否则为临时性文档</summary>
    IsRelease: false,

    ///<summary>
    ///  地图文档下得地图信息
    ///  Array
    ///  A list of Zondy.Service.Catalog.AddMapInfo in an Array
    /// </summary>
    AddMapInfos: null,

    initialize: function (docName, mapInfos, options) {
        /// <summary>构造函数</summary>
        /// <param name="docName" type="String">需要创建的地图文档名</param>
        /// <param name="mapInfos" type="Array,Zondy.Service.Catalog.AddMapInfo in an Array">文档下的地图信息</param>
        /// <param name="options" type="Object">为此类的个属性赋值的对象</param>

        this.DocName = docName;
        this.AddMapInfos = mapInfos;
        $.extend(this,options);
    }
});

/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------PolygonJSON.js---------------------------------------------------------*/
Zondy.Format = {};
Zondy.Format.PolygonJSON = OpenLayers.Class(OpenLayers.Format.JSON, {
    /**
    Deserialize  a MapGIS Features , and Return an array of OpenLayers.Feature.Vector
    *
    * Parameters:
    * json-{String} | {Object},needs a Zondy.Object.FeatureSet format Javascript object.
    **/
    read: function (json, options) {
        var results = null;
        var obj = null;
        if (typeof json === 'string') {
            obj = OpenLayers.Format.JSON.prototype.read.apply(this,
                                                              [json]);
        } else {
            obj = json;
        }
        if (!obj) {
            OpenLayers.Console.error("Bad JSON:" + json);
        }
        return this.parseVectors(obj);
    },

    /*
    *   Parameters:
    *   obj: {Object},an object stand for Zondy.IGServer.WebService.REST.IGS.ExtendBaselibClass.SFeatureElementSet
    */
    parseVectors: function (zfeatureset) {
        // an array of OpenLayers.Feature.Vector
        var results = [];
        var vectorLength;
        if (!zfeatureset)
            return null;
        if (!zfeatureset.SFEleArray)
            return null;
        vectorLength = zfeatureset.SFEleArray.length;
        for (var i = 0; i < vectorLength; i++) {
            var zfeature = zfeatureset.SFEleArray[i];
            var attribute = this.parseAttribute(zfeatureset.AttStruct, zfeature.AttValue);
            var geometry = this.parseGeometry(zfeature.fGeom, zfeature.ftype);
            var vector = new OpenLayers.Feature.Vector(geometry, attribute, null);
            vector.fid = zfeature.FID.toString();
            vector.bounds = this.parseBound(zfeature.bound);
            results[i] = vector;
        }
        return results;
    },

    parseBound: function (zBound) {
        if (!zBound)
            return null;
        var result = new OpenLayers.Bounds(zBound.xmin, zBound.ymin, zBound.xmax, zBound.ymax);
        return result;
    },

    /*
    *  get the attribute object of the vector
    *   parameters :
    *   attstruct: {Object}, an object of Mapgis7.WebService.BasLib.GLine.AttStruct
    *   attvalue: {Array}
    */
    parseAttribute: function (attstruct, attvalue) {
        var attributes = {};
        var structLength;
        var valueLength;

        if (!attstruct && !attvalue)
            return null;
        structLength = attstruct.FldName.length;
        valueLength = attvalue.length;
        if (structLength != valueLength)
            return null;
        else {
            for (var i = 0; i < structLength; i++) {
                attributes[attstruct.FldName[i]] = attvalue[i];
            }
            return attributes;
        }
    },

    /*
    *   obj: {Object} an Object that response for mapgis  feature fGeom attribute
    */
    parseGeometry: function (fGeom, type) {
        var result = null;
        switch (type) {
            case 1:
                result = this.parseGPoint(fGeom.PntGeom);
                break;
            case 2:
                // if the obj is type of Line
                result = this.parseGLine(fGeom.LinGeom);
                break;
            case 3:
                // if the obj is type of Region
                result = this.parseGRegion(fGeom.RegGeom);
                break;
        }
        return result;
    },

    /*
    *   多个GRegion对应的是OpenLayers中的MulityplyPolygon,这里我们只取第一个GRegion
    */
    parseGRegion: function (gRegions) {
        /// <param name="gRegions" type="{Array}">an array of Mapgis7.WebService.BasLib.GRegion</param>
        var gRegionsLength;
        var results = [];
        var specifiedGRegion;
        if (!gRegions)
            return null;
        gRegionsLength = gRegions.length;
        if (gRegionsLength === 0)
            return null;
        specifiedGRegion = gRegions[0];
        if (!specifiedGRegion)
            return null;
        var specifiedGRegionLength = specifiedGRegion.Rings.length;
        for (var i = 0; i < specifiedGRegionLength; i++) {
            var zondyAnyLine = specifiedGRegion.Rings[i];
            var points = [];
            var zondyDots = zondyAnyLine.Arcs[0].Dots;
            var zondyDotsLength = zondyDots.length;
            for (var j = 0; j < zondyDotsLength; j++) {
                var point = new OpenLayers.Geometry.Point(zondyDots[j].x, zondyDots[j].y);
                points[j] = point;
            }
            results[i] = new OpenLayers.Geometry.LinearRing(points);
        }
        return new OpenLayers.Geometry.Polygon(results);
    },

    /*
    *  
    */
    parseGLine: function (glines) {
        /// <param name="glines" type="{Array}">an array of Mapgis7.WebService.BasLib.GLine</param>
        var glinesLength;
        var results = []; // an array of OpenLayers.Geometry.LinearRing;
        if (!glines)
            return null;
        glinesLength = glines.length;
        if (glinesLength === 0)
            return null;
        for (var i = 0; i < glinesLength; i++) {
            var points = [];
            var zondyDots = glines[i].Line.Arcs[0].Dots;
            var zondyDotsLength = zondyDots.length;
            for (var j = 0; j < zondyDotsLength; j++) {
                var point = new OpenLayers.Geometry.Point(zondyDots[j].x, zondyDots[j].y);
                points[j] = point;
            }
            results[i] = new OpenLayers.Geometry.LineString(points);
        }
        return new OpenLayers.Geometry.MultiLineString(results);
    },

    parseGPoint: function (gpoint) {
        if (!gpoint || gpoint.length == 0)
            return null;
        var points = [],dot;
        for (var i = 0, len = gpoint.length; i < len; i++) {
            dot = gpoint[i].Dot;
            points[i] = new OpenLayers.Geometry.Point(dot.x, dot.y);
        }
        var result = new OpenLayers.Geometry.MultiPoint(points);
        return result;
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ThemeOper.js---------------------------------------------------------*/

Zondy.Service.ThemeOper = OpenLayers.Class({
    /**
    * 查询服务器地址
    * {String}
    */
    ip: "localhost",
    /**
    * 会话id
    * {String}
    */
    guid: '',
    port: "6163",
    initialize: function (guid) {
        if (guid != null)
            this.guid = guid;
        else
            this.guid = Zondy.Util.newGuid();
    },
    /*
    * 获取专题图信息
    * mapDocName :地图文档名称
    * idxArr:专题图索引数组(层次从地图开始,索引从0开始,例如:"0/0,1/1,2/2")
    * onSuccess(themesInfoArr) : 获取成功回调方法
    */
    getThemesInfo: function (mapDocName, idxArr, onSuccess) {
        var rand = Math.random();
        var url = "http://" + this.ip + ":" + this.port + "/igs/rest/theme/" + mapDocName + "/get?idxArr=" + idxArr + "&r=" + rand + "&guid=" + this.guid;
        var http = new Zondy.Service.HttpRequest();
        http.ajax(url, null, function (jsonObj, status, xrequest) {
            var folderInfo = new Zondy.Object.Theme.FolderInfo();
            $.extend(true, folderInfo, jsonObj);
            if (folderInfo != null && folderInfo.attribute != null && folderInfo.attribute.length > 0) {
                var themesInfoArr = []; //new ThemesInfo[folderInfo.attribute.Length];
                var attArr;
                for (var i = 0; i < folderInfo.attribute.length; i++) {
                    themesInfoArr[i] = new Zondy.Object.Theme.ThemesInfo();
                    if (folderInfo.attribute[i] != null) {
                        themesInfoArr[i].LayerName = folderInfo.attribute[i].name;
                        attArr = $.parseJSON(folderInfo.attribute[i].value); //[];
                        //$.extend(true, attArr, folderInfo.attribute[i].Value);
                        if (attArr != null && attArr.length > 0) {
                            themesInfoArr[i].ThemeArr = []; //new ThemeBase[attArr.Length];
                            for (var j = 0; j < attArr.length; j++) {
                                switch (attArr[j].name) {
                                    case "CMultiClassTheme": //多表达式(多分段)专题图
                                        themesInfoArr[i].ThemeArr[j] = new Zondy.Object.Theme.CMultiClassTheme();
                                        break;
                                    case "CSimpleTheme": //简单专题图
                                        themesInfoArr[i].ThemeArr[j] = new Zondy.Object.Theme.CSimpleTheme();
                                        break;
                                    case "CChartTheme": //统计专题图
                                        themesInfoArr[i].ThemeArr[j] = new Zondy.Object.Theme.CChartTheme();
                                        break;
                                    case "CGraduatedSymbolTheme": //等级符号专题图
                                        themesInfoArr[i].ThemeArr[j] = new Zondy.Object.Theme.CGraduatedSymbolTheme();
                                        break;
                                    case "CDotDensityTheme": ////点密度专题图
                                        themesInfoArr[i].ThemeArr[j] = new Zondy.Object.Theme.CDotDensityTheme();
                                        break;
                                    case "CRandomTheme": //随机专题图
                                        themesInfoArr[i].ThemeArr[j] = new Zondy.Object.Theme.CRandomTheme();
                                        break;
                                    case "CFourColorTheme": //四色专题图
                                        themesInfoArr[i].ThemeArr[j] = new Zondy.Object.Theme.CFourColorTheme();
                                        break;
                                    case "CUniqueTheme": //唯一值专题图
                                        themesInfoArr[i].ThemeArr[j] = new Zondy.Object.Theme.CUniqueTheme();
                                        break;
                                    case "CRangeTheme"://范围专题图(分段专题图)
                                        themesInfoArr[i].ThemeArr[j] = new Zondy.Object.Theme.CRangeTheme();
                                        break;
                                }
                                $.extend(true, themesInfoArr[i].ThemeArr[j], $.parseJSON(attArr[j].value));
                            }
                        }
                    }
                }
            }
            if (onSuccess != null)
                onSuccess(themesInfoArr);
        }, "Get");
    },
    /*
    * 删除专题图信息
    * mapDocName :地图文档名称
    * idxArr:专题图索引数组(层次从地图开始,索引从0开始,例如:"0/0,1/1,2/2")
    * onSuccess(themesInfoArr) : 获取成功回调方法
    */
    removeThemesInfo: function (mapDocName, idxArr, onSuccess) {
        var rand = Math.random();
        var url = "http://" + this.ip + ":" + this.port + "/igs/rest/theme/" + mapDocName + "/remove?idxArr=" + idxArr + "&r=" + rand + "&guid=" + this.guid;
        var http = new Zondy.Service.HttpRequest();
        http.ajax(url, null, function (jsonObj, status, xrequest) {
            if (onSuccess != null) {
                onSuccess(jsonObj);
            }
        }, "Get");
    },
    /*
    * 更新专题图信息
    * mapDocName :地图文档名称
    * idxArr:专题图索引数组(层次从地图开始,索引从0开始,例如:"0/0,1/1,2/2")
    * themesInfoArr: 更新的数据(ThemesInfo[])
    * onSuccess(themesInfoArr) : 获取成功回调方法
    */
    updateThemesInfo: function (mapDocName, idxArr, themesInfoArr, onSuccess) {
        var url = "http://" + this.ip + ":" + this.port + "/igs/rest/theme/" + mapDocName + "/update?idxArr=" + idxArr + "&guid=" + this.guid;
        var http = new Zondy.Service.HttpRequest();

        var jsStr = null;
        if (themesInfoArr != null && themesInfoArr.length > 0) {
            var folderInfo = new Zondy.Object.Theme.FolderInfo();
            folderInfo.name = "ThemeInfo";
            folderInfo.attribute = []; //new FolderInfoAttribute[themesInfoArr.Length];
            for (var i = 0; i < themesInfoArr.length; i++) {
                folderInfo.attribute[i] = new Zondy.Object.Theme.FolderInfoAttribute();
                folderInfo.attribute[i].name = themesInfoArr[i].LayerName;
                if (themesInfoArr[i].ThemeArr != null && themesInfoArr[i].ThemeArr.length > 0) {
                    var res = []; //new FolderInfoAttribute[themesInfoArr[i].ThemeArr.Length];
                    for (var j = 0; j < themesInfoArr[i].ThemeArr.length; j++) {
                        if (themesInfoArr[i].ThemeArr[j] != null)
                            res[j] = new Zondy.Object.Theme.FolderInfoAttribute(themesInfoArr[i].ThemeArr[j].Type, $.toJSON(themesInfoArr[i].ThemeArr[j]));
                    }
                    folderInfo.attribute[i].value = $.toJSON(res);
                }
            }
            jsStr = $.toJSON(folderInfo);
        }
        if (jsStr != null) {
            http.ajax(url, jsStr, function (jsonObj, status, xrequest) {
                if (onSuccess != null) {
                    onSuccess(jsonObj);
                }
            }, "POST", "application/text");
        }
        else {
            onSuccess(false);
        }
    },
    /*
    * 添加专题图信息
    * mapDocName :地图文档名称
    * idxArr:专题图索引数组(层次从地图开始,索引从0开始,例如:"0/0,1/1,2/2")
    * themesInfoArr: 添加的数据(ThemesInfo[])
    * onSuccess(themesInfoArr) : 获取成功回调方法
    */
    addThemesInfo: function (mapDocName, idxArr, themesInfoArr, onSuccess) {
        var url = "http://" + this.ip + ":" + this.port + "/igs/rest/theme/" + mapDocName + "/add?idxArr=" + idxArr + "&guid=" + this.guid;
        var http = new Zondy.Service.HttpRequest();

        var jsStr = null;
        if (themesInfoArr != null && themesInfoArr.length > 0) {
            var folderInfo = new Zondy.Object.Theme.FolderInfo();
            folderInfo.name = "ThemeInfo";
            folderInfo.attribute = []; //new FolderInfoAttribute[themesInfoArr.Length];
            for (var i = 0; i < themesInfoArr.length; i++) {
                folderInfo.attribute[i] = new Zondy.Object.Theme.FolderInfoAttribute();
                folderInfo.attribute[i].name = themesInfoArr[i].LayerName;
                if (themesInfoArr[i].ThemeArr != null && themesInfoArr[i].ThemeArr.length > 0) {
                    var res = []; //new FolderInfoAttribute[themesInfoArr[i].ThemeArr.Length];
                    for (var j = 0; j < themesInfoArr[i].ThemeArr.length; j++) {
                        if (themesInfoArr[i].ThemeArr[j] != null)
                            res[j] = new Zondy.Object.Theme.FolderInfoAttribute(themesInfoArr[i].ThemeArr[j].Type, $.toJSON(themesInfoArr[i].ThemeArr[j]));
                    }
                    folderInfo.attribute[i].Value = $.toJSON(res);
                }
            }
            jsStr = $.toJSON(folderInfo);
        }
        if (jsStr != null) {
            http.ajax(url, jsStr, function (jsonObj, status, xrequest) {
                if (onSuccess != null) {
                    onSuccess(jsonObj);
                }
            }, "POST", "application/text");
        }
        else {
            onSuccess(false);
        }
    }
});
/*----------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------ThemeStruct.js---------------------------------------------------------*/
if (Zondy.Object.Theme == null)
    Zondy.Object.Theme = {};
//---------------------------------------------------------------------------------------------------------------------------------------
/// <summary>
/// 统计图类型
/// </summary>
Zondy.Object.Theme.CChartType = {
    /// <summary>
    /// 未知类型
    /// </summary>
    Unknown: 0,
    /// <summary>
    /// 直方图
    /// </summary>
    Bar: 1,
    /// <summary>
    /// 3D直方图
    /// </summary>
    Bar3D: 2,
    /// <summary>
    /// 饼图
    /// </summary>
    Pie: 3,
    /// <summary>
    /// 3D饼图
    /// </summary>
    Pie3D: 4,
    /// <summary>
    /// 折线图
    /// </summary>
    Line: 5,
    /// <summary>
    /// 3D折线图
    /// </summary>
    Line3D: 6,
    /// <summary>
    /// 散点图
    /// </summary>
    Point: 7
};
/// <summary>
/// 统计图标注格式
/// </summary>
Zondy.Object.Theme.CChartLabelFormat = {
    /// <summary>
    /// 未知类型
    /// </summary>
    Unknown: 0,
    /// <summary>
    /// 实际值
    /// </summary>
    Value: 1,
    /// <summary>
    /// 百分比
    /// </summary>
    Percent: 2
};
/// <summary>
/// 线型调整方法枚举
/// </summary>
Zondy.Object.Theme.CLinAdjustType = {
    /// <summary>
    /// 调整
    /// </summary>
    Adjust: 0,
    /// <summary>
    /// 不调整
    /// </summary>
    NoAdjust: 1
};
/// <summary>
/// 线头类型枚举定义
/// </summary>   
Zondy.Object.Theme.CLinHeadType = {
    /// <summary>
    /// 圆头
    /// </summary>
    Round: 0,
    /// <summary>
    /// 平头
    /// </summary>
    Square: 1,
    /// <summary>
    /// 尖头
    /// </summary>
    Butt: 2
};
/// <summary>
/// 线拐角类型枚举
/// </summary>
Zondy.Object.Theme.CLinJointType = {
    /// <summary>
    /// 圆角
    /// </summary>
    Round: 0,
    /// <summary>
    /// 平角
    /// </summary>
    Square: 1,
    /// <summary>
    /// 尖角
    /// </summary>
    Butt: 2
};
/// <summary>
/// 线型生成方法
/// </summary>
Zondy.Object.Theme.CLinStyleMakeType = {
    /// <summary>
    /// 规律性生成线型
    /// </summary>
    Byrule: 0,
    /// <summary>
    /// 按控制点生成线型
    /// </summary> 
    Bypoint: 1
};
/// <summary>
/// 统计分段类型
/// </summary>
Zondy.Object.Theme.CItemType = {
    /// <summary>
    /// 未知类型
    /// </summary>
    Unknown: 0,
    /// <summary>
    /// 唯一值
    /// </summary>
    UniqueTheme: 1,
    /// <summary>
    /// 范围
    /// </summary>
    RangeTheme: 2
};
//---------------------------------------------------------------------------------------------------------------------------------------
//n:{string}
//att:{FolderInfoAttribute}
Zondy.Object.Theme.FolderInfo = function (n, att) {
    this.name = n;
    this.attribute = att;
};
//n:{string}
//v:{string}
Zondy.Object.Theme.FolderInfoAttribute = function (n, v) {
    this.name = n;
    this.Value = v;
};
/// <summary>
/// 专题图信息结构
/// </summary>
Zondy.Object.Theme.LayerThemeInfo = Zondy.Object.Theme.ThemesInfo = function () {
    /// <summary>
    /// 图层名{string}
    /// </summary>
    this.LayerName;
    /// <summary>
    /// 专题图数组{Array,存放各种专题图对象}
    /// </summary>
    this.ThemeArr;
};
/// <summary>
/// 专题图分段值
/// </summary>
Zondy.Object.Theme.ItemValue = function () {
    /// <summary>
    /// 开始值{string}
    /// </summary>
    this.StartValue;
    /// <summary>
    /// 结束值{string}
    /// </summary>
    this.EndValue;
    /// <summary>
    /// 统计分段类型{CItemType}
    /// </summary>
    this.ClassItemType;
};
/// <summary>
/// 表达式信息
/// </summary>
Zondy.Object.Theme.ExpInfo = function () {
    /// <summary>
    /// 获得分级字段表达式{string}
    /// </summary>
    this.Expression;
    /// <summary>
    /// 专题图分段值{Array,存放ItemValue对象}
    /// </summary>
    this.ItemValueArr;
};
/// <summary>
/// 专题图图形信息
/// </summary>
Zondy.Object.Theme.CThemeInfo = function () {
    /// <summary>
    /// 名称{string}
    /// </summary>
    this.Caption;
    /// <summary>
    /// 可见标志{bool}
    /// </summary>
    this.IsVisible;
    /// <summary>
    /// 最大显示比{double}
    /// </summary>
    this.MaxScale;
    /// <summary>
    /// 最小显示比{double}
    /// </summary>
    this.MinScale;
    /// <summary>
    /// 区信息{CRegInfo}
    /// </summary>
    this.RegInfo;
    /// <summary>
    /// 线信息{CLinInfo}
    /// </summary>
    this.LinInfo;
    /// <summary>
    /// 点信息{CPntInfo}
    /// </summary>
    this.PntInfo;
};
/// <summary>
/// 统一配置专题图
/// </summary>
Zondy.Object.Theme.CSimpleTheme = function () {
    /// <summary>
    /// 专题图名称{string}
    /// </summary>
    this.Name;
    /// <summary>
    /// 是否是单值或者分段专题图{bool}
    /// </summary>
    this.IsBaseTheme = false;
    /// <summary>
    /// 专题图可见性{bool}
    /// </summary>
    this.Visible = true;
    /// <summary>
    /// 类型{string}
    /// </summary>
    this.Type = "CSimpleTheme";
    /// <summary>
    /// 统一专题图的绘制信息
    /// </summary>
    this.ThemeInfo;
};
/// <summary>
/// 区信息
/// </summary>
Zondy.Object.Theme.CRegInfo = function () {
    /// <summary>
    /// 库ID{int}
    /// </summary>
    this.LibID = 0;
    /// <summary>
    /// 覆盖方式,true/false 覆盖/透明{bool}
    /// </summary>
    this.Ovprnt = false;
    /// <summary>
    /// 图案角度{float}
    /// </summary>
    this.Angle = 0.0;
    /// <summary>
    /// 结束填充色{int}
    /// </summary>
    this.EndClr = 0;
    /// <summary>
    /// 区域填充色{int}
    /// </summary>
    this.FillClr = 46;
    /// <summary>
    /// 填充模式{int}
    /// </summary>
    this.FillMode = 0;
    /// <summary>
    /// 是否需要完整图案填充{bool}
    /// </summary>
    this.FullPatFlg = true;
    /// <summary>
    /// 图案颜色{int}
    /// </summary>
    this.PatClr = 3;
    /// <summary>
    /// 图案高{int}
    /// </summary>
    this.PatHeight = 5;
    /// <summary>
    /// 图案编号{int}
    /// </summary>
    this.PatID = 0;
    /// <summary>
    /// 图案宽{float}
    /// </summary>
    this.PatWidth = 5.0;
    /// <summary>
    /// 图案笔宽{float}
    /// </summary>
    this.OutPenW = 1.0;
};
/// <summary>
/// 随机专题图(随机产生符号样式)
/// </summary>
Zondy.Object.Theme.CRandomTheme = function () {
    /// <summary>
    /// 专题图名称{string}
    /// </summary>
    this.Name;
    /// <summary>
    /// 是否是单值或者分段专题图{bool}
    /// </summary>
    this.IsBaseTheme = false;
    /// <summary>
    /// 专题图可见性{bool}
    /// </summary>
    this.Visible = true;
    /// <summary>
    /// 类型{string}
    /// </summary>
    this.Type = "CRandomTheme";
    /// <summary>
    /// 专题图信息{CThemeInfo}
    /// </summary>
    this.ThemeInfo;
};
Zondy.Object.Theme.CPntInfo = function () {
    /// <summary>
    /// 库ID{int}
    /// </summary>
    this.LibID = 0;
    /// <summary>
    /// 覆盖方式,true/false 覆盖/透明{bool}
    /// </summary>
    this.Ovprnt = false;
    /// <summary>
    /// 角度{float}
    /// </summary>
    this.Angle=0;
    /// <summary>
    /// 背景颜色{int}
    /// </summary>
    this.BackClr=0;
    /// <summary>
    /// 范围扩展{float}
    /// </summary>
    this.BackExp=0;
    /// <summary>
    /// 自动压背景颜色标志{int}
    /// </summary>
    this.FillFlg=0;
    /// <summary>
    /// 高度{float}
    /// </summary>
    this.Height=0;
    /// <summary>
    /// 宽度{float}
    /// </summary>
    this.Width=0;
    /// <summary>
    /// 可变颜色,数组长度为3{int[]}
    /// </summary>
    this.OutClr=[0,0,0];
    /// <summary>
    /// 符号编号{int}
    /// </summary>
    this.SymID=0;
    /// <summary>
    /// 外部笔宽,数组长度为3{float[]}
    /// </summary>
    this.OutPenW = [0.05, 0.05, 0.05];
};
/// <summary>
///单值专题图
/// </summary>
Zondy.Object.Theme.CUniqueTheme = function () {
    /// <summary>
    /// 专题图名称{string}
    /// </summary>
    this.Name;
    /// <summary>
    /// 是否是单值或者分段专题图{bool}
    /// </summary>
    this.IsBaseTheme = false;
    /// <summary>
    /// 专题图可见性{bool}
    /// </summary>
    this.Visible = true;
    /// <summary>
    /// 类型{string} 
    /// </summary>
    this.Type = "CUniqueTheme";
    /// <summary>
    /// 缺省专题绘制信息{CThemeInfo}
    /// </summary>
    this.DefaultInfo;
    /// <summary>
    ///唯一字段表达式 类型{string}
    /// </summary>
    this.Expression;
    /// <summary>
    /// (笛卡尔积之后)每段专题绘制信息(如果不设置则采用默认绘制信息){CThemeInfo[]} 
    /// </summary>
    this.UniqueThemeInfoArr;
    /// <summary>
    /// 每段专题绘制的图形类型,Reg/Lin/Pnt{string}
    /// </summary>
    this.GeoInfoType;
};

/// <summary>
/// 单值专题图信息
/// </summary>
Zondy.Object.Theme.CUniqueThemeInfo = function () {
    /// <summary>
    /// 值{string}
    /// </summary>
    this.Value;
    /// <summary>
    /// 名称{string}
    /// </summary>
    this.Caption;
    /// <summary>
    /// 可见标志{bool}
    /// </summary>
    this.IsVisible;
    /// <summary>
    /// 最大显示比{double}
    /// </summary>
    this.MaxScale;
    /// <summary>
    /// 最小显示比{double}
    /// </summary>
    this.MinScale;
    /// <summary>
    /// 区信息{CRegInfo}
    /// </summary>
    this.RegInfo;
    /// <summary>
    /// 线信息{CLinInfo}
    /// </summary>
    this.LinInfo;
    /// <summary>
    /// 点信息{CPntInfo}
    /// </summary>
    this.PntInfo;
};
/// <summary>
/// 多表达式(多字段)分段专题图
/// </summary>
Zondy.Object.Theme.CMultiClassTheme = function () {
    /// <summary>
    /// 专题图名称{string}
    /// </summary>
    this.Name;
    /// <summary>
    /// 是否是单值或者分段专题图{bool}
    /// </summary>
    this.IsBaseTheme = false;
    /// <summary>
    /// 专题图可见性{bool}
    /// </summary>
    this.Visible = true;
    /// <summary>
    /// 类型{string}
    /// </summary>
    this.Type = "CMultiClassTheme";
    /// <summary>
    /// 缺省专题绘制信息{CThemeInfo}
    /// </summary>
    this.DefaultInfo;
    /// <summary>
    /// 分段信息{ExpInfo[]}
    /// </summary>
    this.ExpInfoArr;
    /// <summary>
    /// (笛卡尔积之后)每段专题绘制信息(如果不设置则采用默认绘制信息){CThemeInfo[]}
    /// </summary>
    this.MultiClassThemeInfoArr;
    /// <summary>
    /// 每段专题绘制的图形类型,Reg/Lin/Pnt{string}
    /// </summary>
    this.GeoInfoType;
};
/// <summary>
/// 线图形参数对象
/// </summary>
Zondy.Object.Theme.CLinInfo = function () {
    /// <summary>
    /// 库ID{int}
    /// </summary>
    this.LibID = 0;
    /// <summary>
    /// 覆盖方式,true/false 覆盖/透明{bool}
    /// </summary>
    this.Ovprnt = false;
    /// <summary>
    /// 线型调整方法{CLinAdjustType}
    /// </summary>
    this.AdjustFlg = Zondy.Object.Theme.CLinAdjustType.Adjust;
    /// <summary>
    /// 线头类型{CLinHeadType}
    /// </summary>
    this.HeadType = Zondy.Object.Theme.CLinHeadType.Round;
    /// <summary>
    /// 拐角类型{CLinJointType}
    /// </summary>
    this.JointType = Zondy.Object.Theme.CLinJointType.Round;
    /// <summary>
    /// 线型号{int}
    /// </summary>
    this.LinStyID = 0;
    /// <summary>
    /// 线型生成方法{CLinStyleMakeType}
    /// </summary>
    this.MakeMethod = Zondy.Object.Theme.CLinStyleMakeType.Byrule;
    /// <summary>
    /// 可变颜色,数组长度为3{int[]}
    /// </summary>
    this.OutClr = [46, 4, 3];
    /// <summary>
    /// X系数{float}
    /// </summary>
    this.XScale = 10;
    /// <summary>
    /// Y系数{float}
    /// </summary>
    this.YScale = 10;
    /// <summary>
    /// 外部笔宽,数组长度为3{float[]}
    /// </summary>
    this.OutPenW = [0.05, 0.05, 0.05];
};
/// <summary>
/// 等级符号专题图(根据符号的大小来反映数据的级别差异)
/// </summary>
Zondy.Object.Theme.CGraduatedSymbolTheme = function () {
    /// <summary>
    /// 专题图名称{string}
    /// </summary>
    this.Name; 
    /// <summary>
    /// 是否是单值或者分段专题图{bool}
    /// </summary>
    this.IsBaseTheme = false;
    /// <summary>
    /// 专题图可见性{bool}
    /// </summary>
    this.Visible = true;
    /// <summary>
    /// 类型{string}
    /// </summary>
    this.Type = "CGraduatedSymbolTheme";
    /// <summary>
    /// 一定大小的符号代表的属性值{float}
    /// </summary>
    this.BaseValue = 0.000141;
    /// <summary>
    /// 是否显示负值{bool}
    /// </summary>
    this.DispMinus = false;
    /// <summary>
    /// 是否显示零值{bool}
    /// </summary>
    this.DispZero = true;
    /// <summary>
    /// 字段表达式{string}
    /// </summary>
    this.Expression;
    /// <summary>
    /// 负值点图形信息{CPntInfo}
    /// </summary> 
    this.MinusPntInfo;
    /// <summary>
    /// 正值点图形信息{CPntInfo}
    /// </summary>
    this.PlusPntInfo;
    /// <summary>
    /// 零值点图形信息{CPntInfo}
    /// </summary>
    this.ZeroPntInfo;
};
/// <summary>
/// 四色专题图
/// </summary>
Zondy.Object.Theme.CFourColorTheme = function () {
    /// <summary>
    /// 专题图名称{string}
    /// </summary>
    this.Name;
    /// <summary>
    /// 是否是单值或者分段专题图{bool}
    /// </summary>
    this.IsBaseTheme = false;
    /// <summary>
    /// 专题图可见性{bool}
    /// </summary>
    this.Visible = true;
    /// <summary>
    /// 类型{string}
    /// </summary>
    this.Type = "CFourColorTheme";
    /// <summary>
    /// 颜色信息,最长为16,优先选择前4种{int[]}
    /// </summary>
    this.ClrInfo = [25, 57, 89, 121];
};
/// <summary>
/// 点密度专题图
/// </summary>
Zondy.Object.Theme.CDotDensityTheme = function () {
    /// <summary>
    /// 专题图名称{string}
    /// </summary>
    this.Name;
    /// <summary>
    /// 是否是单值或者分段专题图{bool}
    /// </summary>
    this.IsBaseTheme = false;
    /// <summary>
    /// 专题图可见性{bool}
    /// </summary>
    this.Visible = true;
    /// <summary>
    /// 类型{string}
    /// </summary>
    this.Type = "CDotDensityTheme";
    /// <summary>
    /// 字段表达式{string}
    /// </summary>
    this.Expression;
    /// <summary>
    /// 点图形信息{CPntInfo}
    /// </summary>
    this.Info;
    /// <summary>
    /// 专题图中每一个点所代表的数值{double}
    /// </summary>
    this.Value;
};
Zondy.Object.Theme.CChartThemeRepresentInfo = function () {
    /// <summary>
    /// {CAnnInfo}
    /// </summary>
    this.AnnInfoLabel;
    /// <summary>
    /// {int}
    /// </summary>
    this.DigitLabel = 0;
    /// <summary>
    /// {CChartLabelFormat}
    /// </summary>
    this.FormatLabel = Zondy.Object.Theme.CChartLabelFormat.Unknown;
    /// <summary>
    /// {bool}
    /// </summary>
    this.IsDrawLabel = true;
    /// <summary>
    /// {int}
    /// </summary>
    this.LineColor = -1;
    /// <summary>
    /// {double}
    /// </summary>
    this.MaxLength = 30;
    /// <summary>
    /// {double}
    /// </summary>
    this.MinRadius = 10;
    /// <summary>
    /// {int}
    /// </summary>
    this.PieSizeFixFlag = 0;
    /// <summary>
    /// {double}
    /// </summary>
    this.PieTiltedAngle = 30;
    /// <summary>
    /// {double}
    /// </summary>
    this.PlotRadius = 1;
    /// <summary>
    /// {double}
    /// </summary>
    this.ThickPersent = 10;
    /// <summary>
    /// {double}
    /// </summary>
    this.Width = 3;
};
/// <summary>
/// 统计专题图信息
/// </summary>
Zondy.Object.Theme.CChartThemeInfo = function () {
    /// <summary>
    /// 字段表达式{string}
    /// </summary>
    this.Expression;
    /// <summary>
    /// 名称{string}
    /// </summary>
    this.Caption;
    /// <summary>
    /// 可见标志{bool}
    /// </summary>
    this.IsVisible=true;
    /// <summary>
    /// 最大显示比{double}
    /// </summary>
    this.MaxScale=0;
    /// <summary>
    /// 最小显示比{double}
    /// </summary>
    this.MinScale=0;
    /// <summary>
    /// 区信息{CRegInfo}
    /// </summary>
    this.RegInfo;
    /// <summary>
    /// 线信息{CLinInfo}
    /// </summary>
    this.LinInfo;
    /// <summary>
    /// 点信息{CPntInfo}
    /// </summary>
    this.PntInfo;
};
/// <summary>
/// 统计专题图
/// </summary>
Zondy.Object.Theme.CChartTheme = function () {
    /// <summary>
    /// 专题图名称{string}
    /// </summary>
    this.Name;
    /// <summary>
    /// 是否是单值或者分段专题图{bool}
    /// </summary>
    this.IsBaseTheme = false;
    /// <summary>
    /// 专题图可见性{bool}
    /// </summary>
    this.Visible = true;
    /// <summary>
    /// 类型{string}
    /// </summary>
    this.Type = "CChartTheme";
    /// <summary>
    /// 统计图类型
    /// </summary>
    this.ChartType;
    /// <summary>
    /// {CChartThemeRepresentInfo}
    /// </summary>
    this.RepresentInfo;
    /// <summary>
    /// 统计专题图信息{CChartThemeInfo[]}
    /// </summary>
    this.ChartThemeInfoArr;
};
/// <summary>
/// 注记参数对象
/// </summary>
Zondy.Object.Theme.CAnnInfo = function () {
    /// <summary>
    /// 库ID{int}
    /// </summary>
    //[DataMember(Name = "libID")]
    this.LibID = 0;
    /// <summary>
    /// 覆盖方式,true/false 覆盖/透明{bool}
    /// </summary>
    //[DataMember(Name = "ovprnt")]
    this.Ovprnt = false;
    /// <summary>
    /// 角度值{float}
    /// </summary>
    this.Angle = 0;
    /// <summary>
    /// 背景颜色{int}
    /// </summary>
    this.BackClr = 0;
    /// <summary>
    /// 文本显示范围扩展,返回扩展值{int}
    /// </summary>     
    this.BackExp = 0;
    /// <summary>
    /// 西文字体{int}
    /// </summary>
    this.Chnt = 0;
    /// <summary>
    /// 颜色号{int}
    /// </summary>
    this.Color = 0;
    /// <summary>
    /// 字符角度值{float}
    /// </summary>
    this.FontAngle = 0;
    /// <summary>
    /// 高度{float}
    /// </summary>
    this.Height = 0;
    /// <summary>
    /// 中文字体{float}
    /// </summary>
    this.Ifnt = 0;
    /// <summary>
    /// 字形{int}
    /// </summary>
    this.Ifnx = 0;
    /// <summary>
    /// 自动压背景颜色返回true,否则返回false{bool}
    /// </summary>
    this.IsFilled = false;
    /// <summary>
    /// 排列方式,水平排列返回true,垂直排列返回false{bool}
    /// </summary>
    this.IsHzpl = true;
    /// <summary>
    /// X方向的偏移{float}
    /// </summary>
    this.OffsetX = 0;
    /// <summary>
    /// Y方向的偏移{float}
    /// </summary>
    this.OffsetY = 0;
    /// <summary>
    /// 间隔值{float}
    /// </summary>
    this.Space = 0;
    /// <summary>
    /// 宽度{float}
    /// </summary>
    this.Width = 0;
};
Zondy.Object.Theme.CRangeTheme = function () {
    /// <summary>
    /// 专题图名称{string}
    /// </summary>
    this.Name;
    /// <summary>
    /// 是否是单值或者分段专题图{bool}
    /// </summary>
    this.IsBaseTheme = false;
    /// <summary>
    /// 专题图可见性{bool}
    /// </summary>
    this.Visible = true;
    /// <summary>
    /// 类型{string}
    /// </summary>
    this.Type = "CChartTheme";
    /// <summary>
    /// 专题图类型(CAllOtherDataItemInfoSource)
    /// </summary>
    this.AllOtherDataItemInfoSource = Zondy.Object.Theme.CAllOtherDataItemInfoSource.DefaultThemeInfo;
    /// <summary>
    /// 唯一字段表达式
    /// </summary>
    this.Expression = "";
    /// <summary>
    /// 缺省专题绘制信息(Zondy.Object.Theme.CThemeInfo)
    /// </summary>
    this.DefaultInfo = null;
    /// <summary>
    /// 范围专题图项信息数组(CRangeThemeInfo[])
    /// </summary>
    this.RangeThemeInfoArr = null;
};
/// <summary>
/// 未参与分类数据图形参数
/// </summary>
Zondy.Object.Theme.CAllOtherDataItemInfoSource = {
    /// <summary>
    /// 缺省的专题图形信息
    /// </summary> 
    DefaultThemeInfo : 1,
    /// <summary>
    /// 数据项的固有图形信息
    /// </summary>
    DataItemIntrinsicInfo : 2
};
/// <summary>
/// 分段专题图信息
/// </summary>
Zondy.Object.Theme.CRangeThemeInfo = function () {
    /// <summary>
    /// 名称{string}
    /// </summary>
    this.Caption;
    /// <summary>
    /// 可见标志{bool}
    /// </summary>
    this.IsVisible;
    /// <summary>
    /// 最大显示比{double}
    /// </summary>
    this.MaxScale;
    /// <summary>
    /// 最小显示比{double}
    /// </summary>
    this.MinScale;
    /// <summary>
    /// 区信息{CRegInfo}
    /// </summary>
    this.RegInfo;
    /// <summary>
    /// 线信息{CLinInfo}
    /// </summary>
    this.LinInfo;
    /// <summary>
    /// 点信息{CPntInfo}
    /// </summary>
    this.PntInfo;
    /// <summary>
    /// 开始值
    /// </summary>
    this.StartValue = "";
    /// <summary>
    /// 结束值
    /// </summary>
    this.EndValue = "";
};
/*----------------------------------------------------------------------------------------------------------------------------*/