8323f89
| 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 | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_fa8eee646c2eedde8fb19d24e1668537 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<style>html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
<style>#map {
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
}
</style>
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-locatecontrol/0.66.2/L.Control.Locate.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet-locatecontrol/0.66.2/L.Control.Locate.min.css"/>
</head>
<body>
<div style="
position:fixed;
top:10px;
right:10px;
z-index:10000;
direction:rtl;
font-family:Arial, sans-serif;
">
<button id="btn_stats_35" onclick="
var panel = document.getElementById('stats_35');
var btn = document.getElementById('btn_stats_35');
if (panel.style.display === 'none') {
panel.style.display = 'block';
btn.innerText = 'إخفاء';
} else {
panel.style.display = 'none';
btn.innerText = 'عرض الملخص';
}
" style="
background:rgba(255,255,255,0.92);
border:none;
border-radius:14px;
padding:10px 14px;
font-size:14px;
font-weight:bold;
cursor:pointer;
box-shadow:0 2px 10px rgba(0,0,0,0.18);
">إخفاء</button>
</div>
<div id="stats_35" style="
display:block;
position:fixed;
top:10px;
right:58px;
width:320px;
max-height:85vh;
overflow-y:auto;
background:rgba(255,255,255,0.86);
backdrop-filter:blur(4px);
-webkit-backdrop-filter:blur(4px);
border-radius:22px;
padding:18px 18px 16px 18px;
z-index:9999;
direction:rtl;
font-family:Arial, sans-serif;
box-shadow:0 8px 28px rgba(0,0,0,0.16);
line-height:1.9;
color:#222;
">
<div style="
font-size:18px;
font-weight:800;
text-align:center;
margin-bottom:10px;
">طاهرة حسن بن احمد المطرود - 35</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 104</div>
<div><b>عدد الحارات:</b> 13</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• الفيحاء: 33</div><div>• الدانة: 26</div><div>• الاندلس: 12</div><div>• الروضة: 10</div><div>• الزهور: 6</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_35_طاهرة_حسن_بن_احمد_المطرود.pdf" target="_blank" style="
display:block;
text-align:center;
background:#16a34a;
color:#fff;
text-decoration:none;
padding:10px 12px;
border-radius:12px;
font-weight:700;
margin-bottom:14px;
">تصدير بيانات هذه الخريطة PDF</a>
<div style="font-weight:bold; margin-bottom:6px;">تلوين حسب نوع المسح</div>
<div style="font-size:13px;">
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:6px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:red;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>ربعي وسنوي</span>
</div>
<span style="color:#555;">(93)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:6px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>سنوي فقط</span>
</div>
<span style="color:#555;">(11)</span>
</div>
</div>
</div>
</div>
<div style="
position: fixed;
bottom: 8px; left: 8px;
background: rgba(255,255,255,0.85);
padding: 6px 10px;
border-radius: 10px;
font-size: 13px;
direction: rtl;
z-index: 9999;
box-shadow: 0 1px 8px rgba(0,0,0,0.15);
">
تصميم وإعداد <b>نوف الناصر</b>
</div>
<div class="folium-map" id="map_fa8eee646c2eedde8fb19d24e1668537" ></div>
</body>
<script>
var map_fa8eee646c2eedde8fb19d24e1668537 = L.map(
"map_fa8eee646c2eedde8fb19d24e1668537",
{
center: [26.711599562284093, 50.053770015602026],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_f649729532125ad6cf908fb03ccaf13d = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{
"minZoom": 0,
"maxZoom": 19,
"maxNativeZoom": 19,
"noWrap": false,
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors",
"subdomains": "abc",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_f649729532125ad6cf908fb03ccaf13d.addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var tile_layer_7670601361569196b76ace163fd42053 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{
"minZoom": 0,
"maxZoom": 19,
"maxNativeZoom": 19,
"noWrap": false,
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors",
"subdomains": "abc",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_7670601361569196b76ace163fd42053.addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var tile_layer_62003ad55b838180a3087b058e3d5f89 = L.tileLayer(
"https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}",
{
"minZoom": 0,
"maxZoom": 18,
"maxNativeZoom": 18,
"noWrap": false,
"attribution": "\u0026copy; Esri",
"subdomains": "abc",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_62003ad55b838180a3087b058e3d5f89.addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var locate_control_56fa232d98ba2f646d1ed8a057536486 = L.control.locate(
{}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var marker_ebda3a876c06fa0fbc8ff8444cc76a00 = L.marker(
[26.7708688941776, 49.9503626755593],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_19719d4cf51a9eb1f7c8d4a7c8aa0744 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7cc96d7619636ecee14340874e251471 = L.popup({
"maxWidth": 320,
});
var html_30bd709cb81bfdf3632c263950dd9260 = $(`<div id="html_30bd709cb81bfdf3632c263950dd9260" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة دواجن رحيمة المحدودة<br> <b>الرقم الموحد:</b> 7009402772<br> <b>السجل التجاري:</b> 2050014847<br> <b>الحي:</b> ادارة الانتاج المجمع الصناعي<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7708688941776,49.9503626755593" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7cc96d7619636ecee14340874e251471.setContent(html_30bd709cb81bfdf3632c263950dd9260);
marker_ebda3a876c06fa0fbc8ff8444cc76a00.bindPopup(popup_7cc96d7619636ecee14340874e251471)
;
marker_ebda3a876c06fa0fbc8ff8444cc76a00.setIcon(icon_19719d4cf51a9eb1f7c8d4a7c8aa0744);
var marker_ec679ba19f6c7bc16f5407355f3bf57a = L.marker(
[26.7550031580001, 49.914627415],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_fc04edddd34f96557dc2ce77ef060f48 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1429f866fda765ceb305ade102a15802 = L.popup({
"maxWidth": 320,
});
var html_814dbe2d229db329a186c04e14dc7a35 = $(`<div id="html_814dbe2d229db329a186c04e14dc7a35" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الطريق السليم للمقاولات شركة شخص واحد<br> <b>الرقم الموحد:</b> 7008059714<br> <b>السجل التجاري:</b> 2051031675<br> <b>الحي:</b> مزارع الجعيمه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7550031580001,49.914627415" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1429f866fda765ceb305ade102a15802.setContent(html_814dbe2d229db329a186c04e14dc7a35);
marker_ec679ba19f6c7bc16f5407355f3bf57a.bindPopup(popup_1429f866fda765ceb305ade102a15802)
;
marker_ec679ba19f6c7bc16f5407355f3bf57a.setIcon(icon_fc04edddd34f96557dc2ce77ef060f48);
var marker_a4cc7d9ca4c3a9152d8fb09645e41e66 = L.marker(
[26.75220455, 50.02759703],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_c18cc33f6027928cf346ca5a0c92aa5c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f85877599b0f41d610106b2559b42471 = L.popup({
"maxWidth": 320,
});
var html_518eebf6bd673bf316b810a5b78241c8 = $(`<div id="html_518eebf6bd673bf316b810a5b78241c8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة فرع شركة الصناعات الهندسية الثقيلة وبناء السفن<br> <b>الرقم الموحد:</b> 7025593125<br> <b>السجل التجاري:</b> 2057474180<br> <b>الحي:</b> كورنيش رأس تنورة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.75220455,50.02759703" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f85877599b0f41d610106b2559b42471.setContent(html_518eebf6bd673bf316b810a5b78241c8);
marker_a4cc7d9ca4c3a9152d8fb09645e41e66.bindPopup(popup_f85877599b0f41d610106b2559b42471)
;
marker_a4cc7d9ca4c3a9152d8fb09645e41e66.setIcon(icon_c18cc33f6027928cf346ca5a0c92aa5c);
var marker_36b2cba246b44663ef3ce41d9a23867a = L.marker(
[26.79331195, 49.84303318],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_1d1ae51709d126e744e52685ef9ae3ed = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b864b8c31718caee38c334d6cb652848 = L.popup({
"maxWidth": 320,
});
var html_957158ef5a3b18fadb916523eeebdbfa = $(`<div id="html_957158ef5a3b18fadb916523eeebdbfa" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة المصنع العالمي لأنظمة المباني المحدودة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001551253<br> <b>السجل التجاري:</b> 1010115855<br> <b>الحي:</b> مزارع جزيرة فويعيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.79331195,49.84303318" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b864b8c31718caee38c334d6cb652848.setContent(html_957158ef5a3b18fadb916523eeebdbfa);
marker_36b2cba246b44663ef3ce41d9a23867a.bindPopup(popup_b864b8c31718caee38c334d6cb652848)
;
marker_36b2cba246b44663ef3ce41d9a23867a.setIcon(icon_1d1ae51709d126e744e52685ef9ae3ed);
var marker_de149fb4db24a3b74249c1a6de75014b = L.marker(
[26.81135056, 49.81340308],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_4a31c36f9db81e77cbc5bb385fbf36df = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6fa8a584a5159a0adbb5510cca9570be = L.popup({
"maxWidth": 320,
});
var html_6531e2c10eb202921e5821ae7e77a87b = $(`<div id="html_6531e2c10eb202921e5821ae7e77a87b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عبدالله ناس وشركاه<br> <b>الرقم الموحد:</b> 7001378319<br> <b>السجل التجاري:</b> 2055004127<br> <b>الحي:</b> مزارع جزيرة فويعيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.81135056,49.81340308" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6fa8a584a5159a0adbb5510cca9570be.setContent(html_6531e2c10eb202921e5821ae7e77a87b);
marker_de149fb4db24a3b74249c1a6de75014b.bindPopup(popup_6fa8a584a5159a0adbb5510cca9570be)
;
marker_de149fb4db24a3b74249c1a6de75014b.setIcon(icon_4a31c36f9db81e77cbc5bb385fbf36df);
var marker_c79b988947e509b988a5cfdd29942c3a = L.marker(
[26.7041039, 50.02574672],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_6f43a600cd5a0f1d8b228bb612f26d7d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a3df5fcefb60e7010c0d4b6a846be7e6 = L.popup({
"maxWidth": 320,
});
var html_6f1d0c7a584f7555582cc1eff19352fc = $(`<div id="html_6f1d0c7a584f7555582cc1eff19352fc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع شركة أحمد حسن المرهون وإخوانه للخرسانة الجاهزة<br> <b>الرقم الموحد:</b> 7000347687<br> <b>السجل التجاري:</b> 2054000995<br> <b>الحي:</b> بدون اسم<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7041039,50.02574672" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a3df5fcefb60e7010c0d4b6a846be7e6.setContent(html_6f1d0c7a584f7555582cc1eff19352fc);
marker_c79b988947e509b988a5cfdd29942c3a.bindPopup(popup_a3df5fcefb60e7010c0d4b6a846be7e6)
;
marker_c79b988947e509b988a5cfdd29942c3a.setIcon(icon_6f43a600cd5a0f1d8b228bb612f26d7d);
var marker_53eabb64654f913bd6549b83c2ff1931 = L.marker(
[26.70761404, 50.04837964],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_533dc84ee4c89867f3946d9f5165ed0c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9b469aca04d498b80a4a2fb54d04cf17 = L.popup({
"maxWidth": 320,
});
var html_a0e234999d1014f1602e8eb8d3d4dec6 = $(`<div id="html_a0e234999d1014f1602e8eb8d3d4dec6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة القمة للخدمات التعليمية<br> <b>الرقم الموحد:</b> 7011051799<br> <b>السجل التجاري:</b> 2054002181<br> <b>الحي:</b> الزهور<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70761404,50.04837964" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9b469aca04d498b80a4a2fb54d04cf17.setContent(html_a0e234999d1014f1602e8eb8d3d4dec6);
marker_53eabb64654f913bd6549b83c2ff1931.bindPopup(popup_9b469aca04d498b80a4a2fb54d04cf17)
;
marker_53eabb64654f913bd6549b83c2ff1931.setIcon(icon_533dc84ee4c89867f3946d9f5165ed0c);
var marker_e290da03d544874b60d45858691619e8 = L.marker(
[26.7065894969266, 50.0521246220455],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_697d7a79cd0046d4f11e5155eec878b4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_993a17b4b8045f3ecf7741e96c903a84 = L.popup({
"maxWidth": 320,
});
var html_a6d81e4fe1c3c3d4c3a5e09420a2f75d = $(`<div id="html_a6d81e4fe1c3c3d4c3a5e09420a2f75d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة دونغ يونغ العربية المحدودة<br> <b>الرقم الموحد:</b> 7028717028<br> <b>السجل التجاري:</b> 2055133249<br> <b>الحي:</b> الزهور<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7065894969266,50.0521246220455" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_993a17b4b8045f3ecf7741e96c903a84.setContent(html_a6d81e4fe1c3c3d4c3a5e09420a2f75d);
marker_e290da03d544874b60d45858691619e8.bindPopup(popup_993a17b4b8045f3ecf7741e96c903a84)
;
marker_e290da03d544874b60d45858691619e8.setIcon(icon_697d7a79cd0046d4f11e5155eec878b4);
var marker_c2718cbaa404ad1de934e250cd46faff = L.marker(
[26.70930123, 50.05085305],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_bc0458868106f03a7f8edfa7dfa05682 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_19e1c81e6e02e7b13d296b86170ff51f = L.popup({
"maxWidth": 320,
});
var html_690faa253d94feb534174f8ecb6d0003 = $(`<div id="html_690faa253d94feb534174f8ecb6d0003" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مكتب تزداد للخدمات العقارية<br> <b>الرقم الموحد:</b> 7039297523<br> <b>السجل التجاري:</b> 2066611799<br> <b>الحي:</b> الزهور<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70930123,50.05085305" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_19e1c81e6e02e7b13d296b86170ff51f.setContent(html_690faa253d94feb534174f8ecb6d0003);
marker_c2718cbaa404ad1de934e250cd46faff.bindPopup(popup_19e1c81e6e02e7b13d296b86170ff51f)
;
marker_c2718cbaa404ad1de934e250cd46faff.setIcon(icon_bc0458868106f03a7f8edfa7dfa05682);
var marker_baf3a002c70d91c31c9afdab114dc5e1 = L.marker(
[26.7113182635856, 50.0480896737229],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_58ee4689312da0f12f575a2978810fbb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8244283cc6fc106573a64efaacd92001 = L.popup({
"maxWidth": 320,
});
var html_dc147161245f2498318c12030e0f2f60 = $(`<div id="html_dc147161245f2498318c12030e0f2f60" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة فلك الجزيرة للمقاولات<br> <b>الرقم الموحد:</b> 7001728547<br> <b>السجل التجاري:</b> 2066003730<br> <b>الحي:</b> الزهور<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7113182635856,50.0480896737229" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8244283cc6fc106573a64efaacd92001.setContent(html_dc147161245f2498318c12030e0f2f60);
marker_baf3a002c70d91c31c9afdab114dc5e1.bindPopup(popup_8244283cc6fc106573a64efaacd92001)
;
marker_baf3a002c70d91c31c9afdab114dc5e1.setIcon(icon_58ee4689312da0f12f575a2978810fbb);
var marker_8c47819a0634f75e4757b3c1529ae1e5 = L.marker(
[26.7109537324226, 50.0500148898607],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_6dcea344ade3991604962b544e71d7a0 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d7fc19a566b3321358f601a01d8c3980 = L.popup({
"maxWidth": 320,
});
var html_df9c7a1f19dfe8236b07b99e23ce3f49 = $(`<div id="html_df9c7a1f19dfe8236b07b99e23ce3f49" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة آل هرقل للمقاولات<br> <b>الرقم الموحد:</b> 7013834291<br> <b>السجل التجاري:</b> 2054001398<br> <b>الحي:</b> الزهور<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7109537324226,50.0500148898607" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d7fc19a566b3321358f601a01d8c3980.setContent(html_df9c7a1f19dfe8236b07b99e23ce3f49);
marker_8c47819a0634f75e4757b3c1529ae1e5.bindPopup(popup_d7fc19a566b3321358f601a01d8c3980)
;
marker_8c47819a0634f75e4757b3c1529ae1e5.setIcon(icon_6dcea344ade3991604962b544e71d7a0);
var marker_91bca56559b9efe6a94772600186f52a = L.marker(
[26.70846627, 50.05127653],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_3779d3ce25cced3e97d72bdd993519f6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_710625472574713e4e5a666f95e71c7d = L.popup({
"maxWidth": 320,
});
var html_654262810c3f892178f364317bd5e0a4 = $(`<div id="html_654262810c3f892178f364317bd5e0a4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة لبنان الاخضر المحدودة شخص واحد<br> <b>الرقم الموحد:</b> 7012066689<br> <b>السجل التجاري:</b> 2066002220<br> <b>الحي:</b> الزهور<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70846627,50.05127653" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_710625472574713e4e5a666f95e71c7d.setContent(html_654262810c3f892178f364317bd5e0a4);
marker_91bca56559b9efe6a94772600186f52a.bindPopup(popup_710625472574713e4e5a666f95e71c7d)
;
marker_91bca56559b9efe6a94772600186f52a.setIcon(icon_3779d3ce25cced3e97d72bdd993519f6);
var marker_bb20e3a3bf8c092faa39d25ad1dc1a35 = L.marker(
[26.70232609, 50.05336359],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_ca64e635ebe68155d65439fa185af69c = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_502d4007bca28d4c2d15cce26df9db0e = L.popup({
"maxWidth": 320,
});
var html_3e22f975134e4e46a5720402cd303dc4 = $(`<div id="html_3e22f975134e4e46a5720402cd303dc4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> جمعية البر بالمنطقة الشرقية<br> <b>الرقم الموحد:</b> 7006099647<br> <b>السجل التجاري:</b> 2050123101<br> <b>الحي:</b> المنتزة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.70232609,50.05336359" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_502d4007bca28d4c2d15cce26df9db0e.setContent(html_3e22f975134e4e46a5720402cd303dc4);
marker_bb20e3a3bf8c092faa39d25ad1dc1a35.bindPopup(popup_502d4007bca28d4c2d15cce26df9db0e)
;
marker_bb20e3a3bf8c092faa39d25ad1dc1a35.setIcon(icon_ca64e635ebe68155d65439fa185af69c);
var marker_d87a7225bfb50b67c3c58dabd5fd73b1 = L.marker(
[26.69869107, 50.05401031],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_107110a4892593826b4c6833424705df = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_13d8b8ce52609bb12fca571d4c97f5ec = L.popup({
"maxWidth": 320,
});
var html_be0a9446064b54758f1035b7b9a6b5c8 = $(`<div id="html_be0a9446064b54758f1035b7b9a6b5c8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الحيدر للمقاولات شركة هادي صالح ال حيدر وشركاه<br> <b>الرقم الموحد:</b> 7000270400<br> <b>السجل التجاري:</b> 2054000080<br> <b>الحي:</b> المنتزة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.69869107,50.05401031" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_13d8b8ce52609bb12fca571d4c97f5ec.setContent(html_be0a9446064b54758f1035b7b9a6b5c8);
marker_d87a7225bfb50b67c3c58dabd5fd73b1.bindPopup(popup_13d8b8ce52609bb12fca571d4c97f5ec)
;
marker_d87a7225bfb50b67c3c58dabd5fd73b1.setIcon(icon_107110a4892593826b4c6833424705df);
var marker_f43fdd8d6c8379679f5d954d3b521887 = L.marker(
[26.69736982, 50.0442154],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_a1ef9f0e4ad8a1a7d8a49f2b6e980902 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3698d9811199b64414aff7f8e26cfd00 = L.popup({
"maxWidth": 320,
});
var html_aa28fe5773339925548170eb9b95bc07 = $(`<div id="html_aa28fe5773339925548170eb9b95bc07" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة اثراء المستقبل لرياض الاطفال شركة شخص واحد<br> <b>الرقم الموحد:</b> 7012949603<br> <b>السجل التجاري:</b> 2066002131<br> <b>الحي:</b> المنتزة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.69736982,50.0442154" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3698d9811199b64414aff7f8e26cfd00.setContent(html_aa28fe5773339925548170eb9b95bc07);
marker_f43fdd8d6c8379679f5d954d3b521887.bindPopup(popup_3698d9811199b64414aff7f8e26cfd00)
;
marker_f43fdd8d6c8379679f5d954d3b521887.setIcon(icon_a1ef9f0e4ad8a1a7d8a49f2b6e980902);
var marker_958213f99522bda6d4b9ebc6f6615dcd = L.marker(
[26.701963199776078, 50.0459504686296],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_6802345ec8e0c088b8e4ea1785de67ec = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b8c389103c52d4b3fb591d6cf2a23b91 = L.popup({
"maxWidth": 320,
});
var html_ed2e958df6591e6055734a416acbed60 = $(`<div id="html_ed2e958df6591e6055734a416acbed60" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة نهضة المستقبل لخدمات الأعمال<br> <b>الرقم الموحد:</b> 7037143240<br> <b>السجل التجاري:</b> 2066612848<br> <b>الحي:</b> المنتزة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.701963199776078,50.0459504686296" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b8c389103c52d4b3fb591d6cf2a23b91.setContent(html_ed2e958df6591e6055734a416acbed60);
marker_958213f99522bda6d4b9ebc6f6615dcd.bindPopup(popup_b8c389103c52d4b3fb591d6cf2a23b91)
;
marker_958213f99522bda6d4b9ebc6f6615dcd.setIcon(icon_6802345ec8e0c088b8e4ea1785de67ec);
var marker_50c7d22bd8524fb3825c18f454437f73 = L.marker(
[26.70350775, 50.04602465],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_ab4af56b7309b8805398ef6bb6e9e413 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b8721c561b3425e5bed9dce23c95759e = L.popup({
"maxWidth": 320,
});
var html_48d0c13a8fbd573b34429f696a8db4ce = $(`<div id="html_48d0c13a8fbd573b34429f696a8db4ce" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة بن دلامة للمقاولات<br> <b>الرقم الموحد:</b> 7001775167<br> <b>السجل التجاري:</b> 2054001362<br> <b>الحي:</b> المنتزة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70350775,50.04602465" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b8721c561b3425e5bed9dce23c95759e.setContent(html_48d0c13a8fbd573b34429f696a8db4ce);
marker_50c7d22bd8524fb3825c18f454437f73.bindPopup(popup_b8721c561b3425e5bed9dce23c95759e)
;
marker_50c7d22bd8524fb3825c18f454437f73.setIcon(icon_ab4af56b7309b8805398ef6bb6e9e413);
var marker_1f35e84ef503252a2d14b017c01a6aa2 = L.marker(
[26.71928928, 50.05373354],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_5e8366e1eae4fc0aaf56eacec477947f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_82ce098bf4c6fb08fd59d798b444db6f = L.popup({
"maxWidth": 320,
});
var html_aafdc8d57525fbbe1e71763d3b204fd6 = $(`<div id="html_aafdc8d57525fbbe1e71763d3b204fd6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مجمع عيادات شفاء رحيمه الطبي<br> <b>الرقم الموحد:</b> 7011003873<br> <b>السجل التجاري:</b> 2066001721<br> <b>الحي:</b> ج163<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71928928,50.05373354" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_82ce098bf4c6fb08fd59d798b444db6f.setContent(html_aafdc8d57525fbbe1e71763d3b204fd6);
marker_1f35e84ef503252a2d14b017c01a6aa2.bindPopup(popup_82ce098bf4c6fb08fd59d798b444db6f)
;
marker_1f35e84ef503252a2d14b017c01a6aa2.setIcon(icon_5e8366e1eae4fc0aaf56eacec477947f);
var marker_d312f705cf4b5f38757360a32597a31b = L.marker(
[26.71588633, 50.05897442],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_3575015958dbeab7791cf0c76efee0d6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3a7c0687069af6fcd63d6ffca14c6a10 = L.popup({
"maxWidth": 320,
});
var html_a654f18e308504af8a5e167ec9eda2b8 = $(`<div id="html_a654f18e308504af8a5e167ec9eda2b8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة هادي حمد آل همام للمقاولات<br> <b>الرقم الموحد:</b> 7009418414<br> <b>السجل التجاري:</b> 2054000364<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71588633,50.05897442" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3a7c0687069af6fcd63d6ffca14c6a10.setContent(html_a654f18e308504af8a5e167ec9eda2b8);
marker_d312f705cf4b5f38757360a32597a31b.bindPopup(popup_3a7c0687069af6fcd63d6ffca14c6a10)
;
marker_d312f705cf4b5f38757360a32597a31b.setIcon(icon_3575015958dbeab7791cf0c76efee0d6);
var marker_4685b518b7b763eaffd5f403012f210e = L.marker(
[26.7149961365105, 50.063612287202],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_2e09ed4742f4190968cb10733633474e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_501bf1cf4dcd63a5ea173025a97aa602 = L.popup({
"maxWidth": 320,
});
var html_d24c194af09867288e3d88266730488b = $(`<div id="html_d24c194af09867288e3d88266730488b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سالم محمد هادي آل زليق وأولاده للمقاولات<br> <b>الرقم الموحد:</b> 7001400444<br> <b>السجل التجاري:</b> 2066001699<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7149961365105,50.063612287202" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_501bf1cf4dcd63a5ea173025a97aa602.setContent(html_d24c194af09867288e3d88266730488b);
marker_4685b518b7b763eaffd5f403012f210e.bindPopup(popup_501bf1cf4dcd63a5ea173025a97aa602)
;
marker_4685b518b7b763eaffd5f403012f210e.setIcon(icon_2e09ed4742f4190968cb10733633474e);
var marker_48611df10991e0436783418cdb0d7a8a = L.marker(
[26.71630859, 50.06188965],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_08c8a120813d3e3f6cb8d6a6a54e3c3e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9adae3a488fccfbb635955fdfaba34fd = L.popup({
"maxWidth": 320,
});
var html_60e1c382588469314e2e2b1fc808ad91 = $(`<div id="html_60e1c382588469314e2e2b1fc808ad91" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة قوة الاتحاد للتجارة والمقاولات شركة شخص واحد<br> <b>الرقم الموحد:</b> 7004734021<br> <b>السجل التجاري:</b> 2066611710<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71630859,50.06188965" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9adae3a488fccfbb635955fdfaba34fd.setContent(html_60e1c382588469314e2e2b1fc808ad91);
marker_48611df10991e0436783418cdb0d7a8a.bindPopup(popup_9adae3a488fccfbb635955fdfaba34fd)
;
marker_48611df10991e0436783418cdb0d7a8a.setIcon(icon_08c8a120813d3e3f6cb8d6a6a54e3c3e);
var marker_250ac4d59a4b20a4cd38821d451aab38 = L.marker(
[26.71663679, 50.06307932],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_88919002b80d97e23f6a61d12b5376d3 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f6baa3624c08b9c28e1f35fc70ce9f72 = L.popup({
"maxWidth": 320,
});
var html_90493b01430cd63f1fa77c33c3413c03 = $(`<div id="html_90493b01430cd63f1fa77c33c3413c03" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة امداد المتقدمة للخدمات البيئية<br> <b>الرقم الموحد:</b> 7011123549<br> <b>السجل التجاري:</b> 2066002166<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71663679,50.06307932" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f6baa3624c08b9c28e1f35fc70ce9f72.setContent(html_90493b01430cd63f1fa77c33c3413c03);
marker_250ac4d59a4b20a4cd38821d451aab38.bindPopup(popup_f6baa3624c08b9c28e1f35fc70ce9f72)
;
marker_250ac4d59a4b20a4cd38821d451aab38.setIcon(icon_88919002b80d97e23f6a61d12b5376d3);
var marker_528a0e6680fed3496892ca8d3fbfcb64 = L.marker(
[26.71257022, 50.05686165],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_2595a186b5727db4cd111ed8ddf66b64 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1e98c6cf7ded54b2d79c989998924c74 = L.popup({
"maxWidth": 320,
});
var html_df376ba8eb4df94d08cd035100ffd091 = $(`<div id="html_df376ba8eb4df94d08cd035100ffd091" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة هادى حيدر اليامي للمقاولات العامة والتجاره<br> <b>الرقم الموحد:</b> 7000206867<br> <b>السجل التجاري:</b> 2054000121<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71257022,50.05686165" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1e98c6cf7ded54b2d79c989998924c74.setContent(html_df376ba8eb4df94d08cd035100ffd091);
marker_528a0e6680fed3496892ca8d3fbfcb64.bindPopup(popup_1e98c6cf7ded54b2d79c989998924c74)
;
marker_528a0e6680fed3496892ca8d3fbfcb64.setIcon(icon_2595a186b5727db4cd111ed8ddf66b64);
var marker_2cb07b6235a3734f57cbb1fe16dedccb = L.marker(
[26.712324745747505, 50.0633434145532],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_026dbd9416cadd2267ccb17656fe1930 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e759bd2663069b86852fc26bf1c4ef2a = L.popup({
"maxWidth": 320,
});
var html_a8eb5b03f56273f863795e47fa22963d = $(`<div id="html_a8eb5b03f56273f863795e47fa22963d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مستوصف رحيمة الأهلى المحدودةشركة ذات المسؤولية المحدودة من شخص واحد<br> <b>الرقم الموحد:</b> 7014411636<br> <b>السجل التجاري:</b> 2066001884<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.712324745747505,50.0633434145532" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e759bd2663069b86852fc26bf1c4ef2a.setContent(html_a8eb5b03f56273f863795e47fa22963d);
marker_2cb07b6235a3734f57cbb1fe16dedccb.bindPopup(popup_e759bd2663069b86852fc26bf1c4ef2a)
;
marker_2cb07b6235a3734f57cbb1fe16dedccb.setIcon(icon_026dbd9416cadd2267ccb17656fe1930);
var marker_602a15688aa0b2b85540c7fff43b1945 = L.marker(
[26.70911852, 50.05209003],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_bc35445c6f2b03398f21025b6d0ac769 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5b1e68e9506c7bc658afbd0e2753883e = L.popup({
"maxWidth": 320,
});
var html_639162eeeaa33cc4241db421d0523e09 = $(`<div id="html_639162eeeaa33cc4241db421d0523e09" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة محمد سالم السويدي للخدمات الصناعيه شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001413306<br> <b>السجل التجاري:</b> 2066001780<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70911852,50.05209003" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5b1e68e9506c7bc658afbd0e2753883e.setContent(html_639162eeeaa33cc4241db421d0523e09);
marker_602a15688aa0b2b85540c7fff43b1945.bindPopup(popup_5b1e68e9506c7bc658afbd0e2753883e)
;
marker_602a15688aa0b2b85540c7fff43b1945.setIcon(icon_bc35445c6f2b03398f21025b6d0ac769);
var marker_ef682903c2527e80d5f586403b9eeb86 = L.marker(
[26.71386971, 50.06068899],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_6f54cd902c3ed17e368087768859b35c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_15b4a09c5f2c3016a96819d05aaa3b91 = L.popup({
"maxWidth": 320,
});
var html_16db018b3c235474d58c025eb173e326 = $(`<div id="html_16db018b3c235474d58c025eb173e326" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة شبة للمقاولات المحدودة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7011008518<br> <b>السجل التجاري:</b> 2066001931<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71380971,50.06068899" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_15b4a09c5f2c3016a96819d05aaa3b91.setContent(html_16db018b3c235474d58c025eb173e326);
marker_ef682903c2527e80d5f586403b9eeb86.bindPopup(popup_15b4a09c5f2c3016a96819d05aaa3b91)
;
marker_ef682903c2527e80d5f586403b9eeb86.setIcon(icon_6f54cd902c3ed17e368087768859b35c);
var marker_6d749561736b2eebf684e1909cb4ef7c = L.marker(
[26.71693674, 50.06175421],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_1eb21ed752678602170fd293c5646df9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3f2f54646856ff8edbae2a780b3e5ca2 = L.popup({
"maxWidth": 320,
});
var html_5d880ba09aec90a4f75b8e579b8a75dd = $(`<div id="html_5d880ba09aec90a4f75b8e579b8a75dd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ركن الهندسة للفحص والمعاينة<br> <b>الرقم الموحد:</b> 7011023590<br> <b>السجل التجاري:</b> 2066002674<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71693674,50.06175421" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3f2f54646856ff8edbae2a780b3e5ca2.setContent(html_5d880ba09aec90a4f75b8e579b8a75dd);
marker_6d749561736b2eebf684e1909cb4ef7c.bindPopup(popup_3f2f54646856ff8edbae2a780b3e5ca2)
;
marker_6d749561736b2eebf684e1909cb4ef7c.setIcon(icon_1eb21ed752678602170fd293c5646df9);
var marker_84c35fcc05fd7001b4bc24b0cda805f2 = L.marker(
[26.71076684, 50.05524126],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_eff7e2af6915fabf714b59e50ebeacb9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c616842159c2032a18a8f43899596c5c = L.popup({
"maxWidth": 320,
});
var html_4270fccf59cbab590950662fb313ea62 = $(`<div id="html_4270fccf59cbab590950662fb313ea62" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الايد الخليج للخدمات الصناعية المحدودة<br> <b>الرقم الموحد:</b> 7001403828<br> <b>السجل التجاري:</b> 2066001758<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71070684,50.05524126" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c616842159c2032a18a8f43899596c5c.setContent(html_4270fccf59cbab590950662fb313ea62);
marker_84c35fcc05fd7001b4bc24b0cda805f2.bindPopup(popup_c616842159c2032a18a8f43899596c5c)
;
marker_84c35fcc05fd7001b4bc24b0cda805f2.setIcon(icon_eff7e2af6915fabf714b59e50ebeacb9);
var marker_2b72d20e63fa8caf758a66981fce0637 = L.marker(
[26.71490536, 50.06274757],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_ac62ca6b00514d2aa87121e156703ffe = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f84686aadd6033d6254f075697981f67 = L.popup({
"maxWidth": 320,
});
var html_507a5261be1952fdb08c46b30b0300fe = $(`<div id="html_507a5261be1952fdb08c46b30b0300fe" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مجس العربيه للمقاولات العامة<br> <b>الرقم الموحد:</b> 7033298303<br> <b>السجل التجاري:</b> 2054100549<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.71490536,50.06274757" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f84686aadd6033d6254f075697981f67.setContent(html_507a5261be1952fdb08c46b30b0300fe);
marker_2b72d20e63fa8caf758a66981fce0637.bindPopup(popup_f84686aadd6033d6254f075697981f67)
;
marker_2b72d20e63fa8caf758a66981fce0637.setIcon(icon_ac62ca6b00514d2aa87121e156703ffe);
var marker_eb7a0b83a3596807f91d4f978c5468fa = L.marker(
[26.71461117, 50.05899396],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_4838b07e1aff8c2cc9cb0266e745b85a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_65a2a6a09fa168c16869c281ff281586 = L.popup({
"maxWidth": 320,
});
var html_7808da921738c3a07c002af207d85ea8 = $(`<div id="html_7808da921738c3a07c002af207d85ea8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عبدالله علي عبدالله آل عباس للمقاولات العامة<br> <b>الرقم الموحد:</b> 7011135360<br> <b>السجل التجاري:</b> 2054001655<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71461117,50.05899396" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_65a2a6a09fa168c16869c281ff281586.setContent(html_7808da921738c3a07c002af207d85ea8);
marker_eb7a0b83a3596807f91d4f978c5468fa.bindPopup(popup_65a2a6a09fa168c16869c281ff281586)
;
marker_eb7a0b83a3596807f91d4f978c5468fa.setIcon(icon_4838b07e1aff8c2cc9cb0266e745b85a);
var marker_c5639980af84e77ed18ee77b37cef68c = L.marker(
[26.7108655, 50.05355396],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_278566a42e481dcc53dfe44cd6382b07 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ae27b60ddeff33bd8ec7c60001b0f861 = L.popup({
"maxWidth": 320,
});
var html_a474bdd6a24c6e31a4aa489b61caf69c = $(`<div id="html_a474bdd6a24c6e31a4aa489b61caf69c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عالم الميكانيكا التجارية<br> <b>الرقم الموحد:</b> 7012094269<br> <b>السجل التجاري:</b> 2066002913<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.7108655,50.05355396" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ae27b60ddeff33bd8ec7c60001b0f861.setContent(html_a474bdd6a24c6e31a4aa489b61caf69c);
marker_c5639980af84e77ed18ee77b37cef68c.bindPopup(popup_ae27b60ddeff33bd8ec7c60001b0f861)
;
marker_c5639980af84e77ed18ee77b37cef68c.setIcon(icon_278566a42e481dcc53dfe44cd6382b07);
var marker_13d5775137589725a44b8f3d6d970098 = L.marker(
[26.7173308570448, 50.0627150409922],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_3a5cfa49b8fb0fe883195c1ddf2d08cd = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_917190e77e3fdee5d14c362b75f65bc9 = L.popup({
"maxWidth": 320,
});
var html_38567dd26396062dd29c01a45464ad62 = $(`<div id="html_38567dd26396062dd29c01a45464ad62" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الأتحاد الذكي للتجارة والمقاولات<br> <b>الرقم الموحد:</b> 7001620140<br> <b>السجل التجاري:</b> 2066002992<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7173308570448,50.0627150409922" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_917190e77e3fdee5d14c362b75f65bc9.setContent(html_38567dd26396062dd29c01a45464ad62);
marker_13d5775137589725a44b8f3d6d970098.bindPopup(popup_917190e77e3fdee5d14c362b75f65bc9)
;
marker_13d5775137589725a44b8f3d6d970098.setIcon(icon_3a5cfa49b8fb0fe883195c1ddf2d08cd);
var marker_1a6f4bce4324cfb0a29e36626a5c2e14 = L.marker(
[26.7162971339654, 50.0601909210906],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_ebd8e533f178253093e9ef0dd1e6143c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_508309a1ac64ed74beee479aaedff9b3 = L.popup({
"maxWidth": 320,
});
var html_3c9315b78ed6f64bfa1e90215fcc1a8f = $(`<div id="html_3c9315b78ed6f64bfa1e90215fcc1a8f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة محمد حمد همام وشركاه<br> <b>الرقم الموحد:</b> 7001357073<br> <b>السجل التجاري:</b> 2054001389<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7162971339654,50.0601909210906" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_508309a1ac64ed74beee479aaedff9b3.setContent(html_3c9315b78ed6f64bfa1e90215fcc1a8f);
marker_1a6f4bce4324cfb0a29e36626a5c2e14.bindPopup(popup_508309a1ac64ed74beee479aaedff9b3)
;
marker_1a6f4bce4324cfb0a29e36626a5c2e14.setIcon(icon_ebd8e533f178253093e9ef0dd1e6143c);
var marker_9b463c31f8ef49da6a58047ca5a7f557 = L.marker(
[26.71374971, 50.06068899],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_cbf8a658ebd19c406c58dce78440e0d4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_37d34dc2b714eb4b5b295e61954fd677 = L.popup({
"maxWidth": 320,
});
var html_21e0d2465e124515559b0619f787d40a = $(`<div id="html_21e0d2465e124515559b0619f787d40a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة قاس العربيه للخدمات الصناعيه والمقاولات المحدودة<br> <b>الرقم الموحد:</b> 7001529226<br> <b>السجل التجاري:</b> 2054000210<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71380971,50.06068899" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_37d34dc2b714eb4b5b295e61954fd677.setContent(html_21e0d2465e124515559b0619f787d40a);
marker_9b463c31f8ef49da6a58047ca5a7f557.bindPopup(popup_37d34dc2b714eb4b5b295e61954fd677)
;
marker_9b463c31f8ef49da6a58047ca5a7f557.setIcon(icon_cbf8a658ebd19c406c58dce78440e0d4);
var marker_4925f9f45d201b72c5c9cd240379dbb1 = L.marker(
[26.7137356, 50.06050726],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_2a0b7ad37d4319df90ee6d214dc59c0d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_944dfac5b3f6010b7597c78a0930e4c1 = L.popup({
"maxWidth": 320,
});
var html_5147be7400382d7ed2e352cc3071dd2e = $(`<div id="html_5147be7400382d7ed2e352cc3071dd2e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة رياض الدانه للتجارة و المقاولات<br> <b>الرقم الموحد:</b> 7012589656<br> <b>السجل التجاري:</b> 2066002762<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7137356,50.06050726" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_944dfac5b3f6010b7597c78a0930e4c1.setContent(html_5147be7400382d7ed2e352cc3071dd2e);
marker_4925f9f45d201b72c5c9cd240379dbb1.bindPopup(popup_944dfac5b3f6010b7597c78a0930e4c1)
;
marker_4925f9f45d201b72c5c9cd240379dbb1.setIcon(icon_2a0b7ad37d4319df90ee6d214dc59c0d);
var marker_e7bf69c381bf3efd16d2ec36ac39b404 = L.marker(
[26.708303956395056, 50.05226522684097],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_a79a52e9be2d7c2078a90db73669e765 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e6eb68a1b0014a11ac06272a53d47ff5 = L.popup({
"maxWidth": 320,
});
var html_cbde31adcf22e0dc98e846ee8d8b0923 = $(`<div id="html_cbde31adcf22e0dc98e846ee8d8b0923" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة شاين مود<br> <b>الرقم الموحد:</b> 7039919068<br> <b>السجل التجاري:</b> 5907528855<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.708303956395056,50.05226522684097" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e6eb68a1b0014a11ac06272a53d47ff5.setContent(html_cbde31adcf22e0dc98e846ee8d8b0923);
marker_e7bf69c381bf3efd16d2ec36ac39b404.bindPopup(popup_e6eb68a1b0014a11ac06272a53d47ff5)
;
marker_e7bf69c381bf3efd16d2ec36ac39b404.setIcon(icon_a79a52e9be2d7c2078a90db73669e765);
var marker_696d6f96b541aa3b058bf10989eeb47c = L.marker(
[26.71158911, 50.06472365],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_82857e5f8788db27a584592d776189ca = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_004c447693ad30c4c87e86bc7c8e9883 = L.popup({
"maxWidth": 320,
});
var html_f59b7ec31b5104f9c7016111b9c6b7fd = $(`<div id="html_f59b7ec31b5104f9c7016111b9c6b7fd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سالم سليمان الدخيل المقبل وأولاده<br> <b>الرقم الموحد:</b> 7001714182<br> <b>السجل التجاري:</b> 2066000059<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71158911,50.06472365" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_004c447693ad30c4c87e86bc7c8e9883.setContent(html_f59b7ec31b5104f9c7016111b9c6b7fd);
marker_696d6f96b541aa3b058bf10989eeb47c.bindPopup(popup_004c447693ad30c4c87e86bc7c8e9883)
;
marker_696d6f96b541aa3b058bf10989eeb47c.setIcon(icon_82857e5f8788db27a584592d776189ca);
var marker_1f1f76ec349ce9a696c98a7f9d6a7ed9 = L.marker(
[26.7130256083554, 50.0577334383627],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_3c8f3ee65773f23de3b63573d0df74f3 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dc89d6d21ae9ebb68a740371df330614 = L.popup({
"maxWidth": 320,
});
var html_aff722e4ae426808dbeb966f39405143 = $(`<div id="html_aff722e4ae426808dbeb966f39405143" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة سراج مهدي بالحارث للمقاولات العامة<br> <b>الرقم الموحد:</b> 7013156794<br> <b>السجل التجاري:</b> 2054001651<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7130256083554,50.0577334383627" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dc89d6d21ae9ebb68a740371df330614.setContent(html_aff722e4ae426808dbeb966f39405143);
marker_1f1f76ec349ce9a696c98a7f9d6a7ed9.bindPopup(popup_dc89d6d21ae9ebb68a740371df330614)
;
marker_1f1f76ec349ce9a696c98a7f9d6a7ed9.setIcon(icon_3c8f3ee65773f23de3b63573d0df74f3);
var marker_06cfc1d0f5c99718f4bf554b748a7f0b = L.marker(
[26.71430087, 50.05527366],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_cf3392b104022c9403e556336f5b1eae = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_41734f67fb20c5367f11584af7b4acf8 = L.popup({
"maxWidth": 320,
});
var html_6d65518dc9bc558e08932e758e13fe05 = $(`<div id="html_6d65518dc9bc558e08932e758e13fe05" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مكتب بن عشلان للخدمات العقارية<br> <b>الرقم الموحد:</b> 7014204841<br> <b>السجل التجاري:</b> 2066003322<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.71430087,50.05527366" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_41734f67fb20c5367f11584af7b4acf8.setContent(html_6d65518dc9bc558e08932e758e13fe05);
marker_06cfc1d0f5c99718f4bf554b748a7f0b.bindPopup(popup_41734f67fb20c5367f11584af7b4acf8)
;
marker_06cfc1d0f5c99718f4bf554b748a7f0b.setIcon(icon_cf3392b104022c9403e556336f5b1eae);
var marker_848b2a384bc42134b5cb1c77750a3d19 = L.marker(
[26.71513012, 50.05917295],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_b5639d865e296d67043ffc0545a6a400 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9078d6cb9931b2d94ca7c46775da4e33 = L.popup({
"maxWidth": 320,
});
var html_7a20c1df0bf44de0e92fa20630612405 = $(`<div id="html_7a20c1df0bf44de0e92fa20630612405" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سوس العربية<br> <b>الرقم الموحد:</b> 7014013192<br> <b>السجل التجاري:</b> 2066002215<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71513012,50.05917295" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9078d6cb9931b2d94ca7c46775da4e33.setContent(html_7a20c1df0bf44de0e92fa20630612405);
marker_848b2a384bc42134b5cb1c77750a3d19.bindPopup(popup_9078d6cb9931b2d94ca7c46775da4e33)
;
marker_848b2a384bc42134b5cb1c77750a3d19.setIcon(icon_b5639d865e296d67043ffc0545a6a400);
var marker_8385b65530d1a68c58ef742ddd491e18 = L.marker(
[26.70986758253823, 50.060946280136704],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_92563508b24fb64f9038c2541b264836 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_220a6827bac6eb079553126c49e95469 = L.popup({
"maxWidth": 320,
});
var html_521643b00e32b39f22ac88834e6c1854 = $(`<div id="html_521643b00e32b39f22ac88834e6c1854" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مركز الاحجار الساخنه للمساج<br> <b>الرقم الموحد:</b> 7041204954<br> <b>السجل التجاري:</b> 2066613066<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70986758253823,50.060946280136704" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_220a6827bac6eb079553126c49e95469.setContent(html_521643b00e32b39f22ac88834e6c1854);
marker_8385b65530d1a68c58ef742ddd491e18.bindPopup(popup_220a6827bac6eb079553126c49e95469)
;
marker_8385b65530d1a68c58ef742ddd491e18.setIcon(icon_92563508b24fb64f9038c2541b264836);
var marker_676d514ac07f0f5eae38d4654cdfcd49 = L.marker(
[26.713056989841903, 50.05797984078527],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_eb041f0c863a0e8e123a2cad39b1d97f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_55caf9768856f90f706142df0ffc0a12 = L.popup({
"maxWidth": 320,
});
var html_b265b9a5003a861da00e81e49793334a = $(`<div id="html_b265b9a5003a861da00e81e49793334a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مهدى هادى عامر واولاده شركة العامر للتجارة<br> <b>الرقم الموحد:</b> 7000164421<br> <b>السجل التجاري:</b> 2054000466<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.713056989841903,50.05797984078527" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_55caf9768856f90f706142df0ffc0a12.setContent(html_b265b9a5003a861da00e81e49793334a);
marker_676d514ac07f0f5eae38d4654cdfcd49.bindPopup(popup_55caf9768856f90f706142df0ffc0a12)
;
marker_676d514ac07f0f5eae38d4654cdfcd49.setIcon(icon_eb041f0c863a0e8e123a2cad39b1d97f);
var marker_b3aa81a530cd6179f514e8f94f6c12b9 = L.marker(
[26.71395316, 50.05979538],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_a8d748e32d25f5d50c05f6dd9037d03e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_72069ce65c43b35e4746331a8d2c76a5 = L.popup({
"maxWidth": 320,
});
var html_c66ac07393f2df92895e30925a2a464c = $(`<div id="html_c66ac07393f2df92895e30925a2a464c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة تباني الشرقية للمقاولات العامة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7012301235<br> <b>السجل التجاري:</b> 2066001648<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71395316,50.05979538" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_72069ce65c43b35e4746331a8d2c76a5.setContent(html_c66ac07393f2df92895e30925a2a464c);
marker_b3aa81a530cd6179f514e8f94f6c12b9.bindPopup(popup_72069ce65c43b35e4746331a8d2c76a5)
;
marker_b3aa81a530cd6179f514e8f94f6c12b9.setIcon(icon_a8d748e32d25f5d50c05f6dd9037d03e);
var marker_d630409ee08e98bab037c597bf754930 = L.marker(
[26.7166391031042, 50.0610976974941],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_e4bbb9bd6bfdfea0aac150edcb21ef91 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_24aca41476499fb0df2084b412e4a495 = L.popup({
"maxWidth": 320,
});
var html_33782102408b8ab3e59c73f7747e3518 = $(`<div id="html_33782102408b8ab3e59c73f7747e3518" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ازده للسلامه والاعمال البحرية<br> <b>الرقم الموحد:</b> 7001617773<br> <b>السجل التجاري:</b> 2051041189<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7166391031042,50.0610976974941" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_24aca41476499fb0df2084b412e4a495.setContent(html_33782102408b8ab3e59c73f7747e3518);
marker_d630409ee08e98bab037c597bf754930.bindPopup(popup_24aca41476499fb0df2084b412e4a495)
;
marker_d630409ee08e98bab037c597bf754930.setIcon(icon_e4bbb9bd6bfdfea0aac150edcb21ef91);
var marker_d4e5854fb787bb73c491894cc5e34f79 = L.marker(
[26.71582883, 50.05901734],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_3ee316816cb6d9398b9ecace6faa9c61 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_553f0b07386404c1039a388bc709552a = L.popup({
"maxWidth": 320,
});
var html_d7f76819bce04bebb0f021f024054ff3 = $(`<div id="html_d7f76819bce04bebb0f021f024054ff3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة هادي حمد آل همام للخدمات البحرية<br> <b>الرقم الموحد:</b> 7010451917<br> <b>السجل التجاري:</b> 2066001408<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71582883,50.05901734" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_553f0b07386404c1039a388bc709552a.setContent(html_d7f76819bce04bebb0f021f024054ff3);
marker_d4e5854fb787bb73c491894cc5e34f79.bindPopup(popup_553f0b07386404c1039a388bc709552a)
;
marker_d4e5854fb787bb73c491894cc5e34f79.setIcon(icon_3ee316816cb6d9398b9ecace6faa9c61);
var marker_ed35ae1d5a22fbaceda58d518faff543 = L.marker(
[26.71276191, 50.05707896],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_4343bcd7a7c3c5437af8b08439cd5255 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7e70f6b1fa371b9f9f65be76cf9f975d = L.popup({
"maxWidth": 320,
});
var html_e296972ce3b27c4ff47d1662731ee992 = $(`<div id="html_e296972ce3b27c4ff47d1662731ee992" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة كيفير السعودية العربية<br> <b>الرقم الموحد:</b> 7001523203<br> <b>السجل التجاري:</b> 2051034435<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71276191,50.05707896" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7e70f6b1fa371b9f9f65be76cf9f975d.setContent(html_e296972ce3b27c4ff47d1662731ee992);
marker_ed35ae1d5a22fbaceda58d518faff543.bindPopup(popup_7e70f6b1fa371b9f9f65be76cf9f975d)
;
marker_ed35ae1d5a22fbaceda58d518faff543.setIcon(icon_4343bcd7a7c3c5437af8b08439cd5255);
var marker_4c899cb305d96ad90b275a92a43c02fc = L.marker(
[26.7158951858706, 50.0592107257501],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_33e7893cb75947522cbc23a97dc883b4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a188548eb13bfea2763367f5974b75bd = L.popup({
"maxWidth": 320,
});
var html_623704e004efe33b7b3a9336126b5b7e = $(`<div id="html_623704e004efe33b7b3a9336126b5b7e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عباجه للمقاولات<br> <b>الرقم الموحد:</b> 7014501691<br> <b>السجل التجاري:</b> 2054000633<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7158951858706,50.0592107257501" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a188548eb13bfea2763367f5974b75bd.setContent(html_623704e004efe33b7b3a9336126b5b7e);
marker_4c899cb305d96ad90b275a92a43c02fc.bindPopup(popup_a188548eb13bfea2763367f5974b75bd)
;
marker_4c899cb305d96ad90b275a92a43c02fc.setIcon(icon_33e7893cb75947522cbc23a97dc883b4);
var marker_89acccb9aa2c34f58ffc0dd07d8d7aac = L.marker(
[26.71745094, 50.06300791],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_e923285c732eeb8a5505ea22c6add11c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6994b09950f703448ecb5e19042b9985 = L.popup({
"maxWidth": 320,
});
var html_89d6dc9fa74b8e5416ba1b54622d4aa2 = $(`<div id="html_89d6dc9fa74b8e5416ba1b54622d4aa2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مستورة للمقاولات المحدودة<br> <b>الرقم الموحد:</b> 7000736186<br> <b>السجل التجاري:</b> 2054001027<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71745094,50.06300791" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6994b09950f703448ecb5e19042b9985.setContent(html_89d6dc9fa74b8e5416ba1b54622d4aa2);
marker_89acccb9aa2c34f58ffc0dd07d8d7aac.bindPopup(popup_6994b09950f703448ecb5e19042b9985)
;
marker_89acccb9aa2c34f58ffc0dd07d8d7aac.setIcon(icon_e923285c732eeb8a5505ea22c6add11c);
var marker_5dca61d347cd57dc545a748033fd4275 = L.marker(
[26.71600050656172, 50.059336787089705],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_f2e5d8a74079a1b43f66956e3757a9ef = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_45ae07560155939fa5ec79a96d98b69d = L.popup({
"maxWidth": 320,
});
var html_95290eb31fe5e7dc4c57f810cdfee73b = $(`<div id="html_95290eb31fe5e7dc4c57f810cdfee73b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عباجه للحراسات الأمنية<br> <b>الرقم الموحد:</b> 7015081347<br> <b>السجل التجاري:</b> 2066003723<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71600050656172,50.059336787089705" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_45ae07560155939fa5ec79a96d98b69d.setContent(html_95290eb31fe5e7dc4c57f810cdfee73b);
marker_5dca61d347cd57dc545a748033fd4275.bindPopup(popup_45ae07560155939fa5ec79a96d98b69d)
;
marker_5dca61d347cd57dc545a748033fd4275.setIcon(icon_f2e5d8a74079a1b43f66956e3757a9ef);
var marker_86fdf00b1dc48e22dfcb12839e312d05 = L.marker(
[26.71044563, 50.05148384],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_1ab87ad787dc0e03a01fce432581098d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_88125871eb2747c6423a5b495c736b33 = L.popup({
"maxWidth": 320,
});
var html_e6fdc9343bda28e90009d430203ca8f2 = $(`<div id="html_e6fdc9343bda28e90009d430203ca8f2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة صالح بن محمد آل همام<br> <b>الرقم الموحد:</b> 7014890169<br> <b>السجل التجاري:</b> 2066001633<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71044563,50.05148384" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_88125871eb2747c6423a5b495c736b33.setContent(html_e6fdc9343bda28e90009d430203ca8f2);
marker_86fdf00b1dc48e22dfcb12839e312d05.bindPopup(popup_88125871eb2747c6423a5b495c736b33)
;
marker_86fdf00b1dc48e22dfcb12839e312d05.setIcon(icon_1ab87ad787dc0e03a01fce432581098d);
var marker_602f689cd88b7d95e1a1fa1087560ee5 = L.marker(
[26.71064684, 50.05524126],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_11471308d26fb7bf3290000e11ed18dd = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ed748c981faf36747abe96ca16c197f1 = L.popup({
"maxWidth": 320,
});
var html_4509d1e496343e7a41f49aba7cec5174 = $(`<div id="html_4509d1e496343e7a41f49aba7cec5174" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة المشاريع الديناميكية للمقاولات<br> <b>الرقم الموحد:</b> 7001585202<br> <b>السجل التجاري:</b> 2054000315<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71070684,50.05524126" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ed748c981faf36747abe96ca16c197f1.setContent(html_4509d1e496343e7a41f49aba7cec5174);
marker_602f689cd88b7d95e1a1fa1087560ee5.bindPopup(popup_ed748c981faf36747abe96ca16c197f1)
;
marker_602f689cd88b7d95e1a1fa1087560ee5.setIcon(icon_11471308d26fb7bf3290000e11ed18dd);
var marker_c2f7aead50e9b0458a5ffe22b19b394b = L.marker(
[26.70260933, 50.06389618],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_6829dc379148c67156bb26e769b6ab56 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_674360e8a1b1a4acdce60c00f24c6c7b = L.popup({
"maxWidth": 320,
});
var html_13e42ae357140ce08da27f18f55a6693 = $(`<div id="html_13e42ae357140ce08da27f18f55a6693" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة محمد سعود السبيعي للمقاولات<br> <b>الرقم الموحد:</b> 7011030082<br> <b>السجل التجاري:</b> 2054000078<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70260933,50.06389618" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_674360e8a1b1a4acdce60c00f24c6c7b.setContent(html_13e42ae357140ce08da27f18f55a6693);
marker_c2f7aead50e9b0458a5ffe22b19b394b.bindPopup(popup_674360e8a1b1a4acdce60c00f24c6c7b)
;
marker_c2f7aead50e9b0458a5ffe22b19b394b.setIcon(icon_6829dc379148c67156bb26e769b6ab56);
var marker_4996c38b62836f5545c5f3e8aa1133c2 = L.marker(
[26.70948154, 50.06500971],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_798f0c27d8d1fba3d8c8893d87ed5d86 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f5622eda057838925b5c8950e30df436 = L.popup({
"maxWidth": 320,
});
var html_92765d188d8a970b899d7555569ef7cb = $(`<div id="html_92765d188d8a970b899d7555569ef7cb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> وكالة لمسة فن للدعاية والاعلان<br> <b>الرقم الموحد:</b> 7011913774<br> <b>السجل التجاري:</b> 2066002859<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.70948154,50.06500971" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f5622eda057838925b5c8950e30df436.setContent(html_92765d188d8a970b899d7555569ef7cb);
marker_4996c38b62836f5545c5f3e8aa1133c2.bindPopup(popup_f5622eda057838925b5c8950e30df436)
;
marker_4996c38b62836f5545c5f3e8aa1133c2.setIcon(icon_798f0c27d8d1fba3d8c8893d87ed5d86);
var marker_39786c4f34ed138cc230d6d92562b24d = L.marker(
[26.7034654319064, 50.065652833048],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_512c8951ab864d82da7377f5a0e33142 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_efaaca83c0dda4fc41004e16dac8a27b = L.popup({
"maxWidth": 320,
});
var html_13733955dc78c3a63f471dd896d5cfea = $(`<div id="html_13733955dc78c3a63f471dd896d5cfea" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة صالح حمد القحطاني للمقاولات العامة<br> <b>الرقم الموحد:</b> 7007618841<br> <b>السجل التجاري:</b> 2054000971<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7034654319064,50.065652833048" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_efaaca83c0dda4fc41004e16dac8a27b.setContent(html_13733955dc78c3a63f471dd896d5cfea);
marker_39786c4f34ed138cc230d6d92562b24d.bindPopup(popup_efaaca83c0dda4fc41004e16dac8a27b)
;
marker_39786c4f34ed138cc230d6d92562b24d.setIcon(icon_512c8951ab864d82da7377f5a0e33142);
var marker_9c5b239530a02a38ad7ad3208feba7c4 = L.marker(
[26.70403713, 50.06704274],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_3890d9becf732a028f2a81f3b1b33391 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_aba1a9855234c127e2e2311ce5de9f1b = L.popup({
"maxWidth": 320,
});
var html_34e6e23255f13edd757455f90997a342 = $(`<div id="html_34e6e23255f13edd757455f90997a342" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة جزيرة البحر للمقاولات شركة شخص واحد<br> <b>الرقم الموحد:</b> 7014827484<br> <b>السجل التجاري:</b> 2054002967<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70403713,50.06704274" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_aba1a9855234c127e2e2311ce5de9f1b.setContent(html_34e6e23255f13edd757455f90997a342);
marker_9c5b239530a02a38ad7ad3208feba7c4.bindPopup(popup_aba1a9855234c127e2e2311ce5de9f1b)
;
marker_9c5b239530a02a38ad7ad3208feba7c4.setIcon(icon_3890d9becf732a028f2a81f3b1b33391);
var marker_0ac3a9b82d22a041d67b0557913959db = L.marker(
[26.70495991, 50.06343474],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_b3d3a9aece224a3897d6ba2113490cc9 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b0c43d4c6933cc2dc365760cc9354d40 = L.popup({
"maxWidth": 320,
});
var html_5a65d779b2f550909aacb40274a04a74 = $(`<div id="html_5a65d779b2f550909aacb40274a04a74" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مكتبة ركن باغي الخير للقرطاسية<br> <b>الرقم الموحد:</b> 7011279002<br> <b>السجل التجاري:</b> 2066004407<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.70495991,50.06343474" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b0c43d4c6933cc2dc365760cc9354d40.setContent(html_5a65d779b2f550909aacb40274a04a74);
marker_0ac3a9b82d22a041d67b0557913959db.bindPopup(popup_b0c43d4c6933cc2dc365760cc9354d40)
;
marker_0ac3a9b82d22a041d67b0557913959db.setIcon(icon_b3d3a9aece224a3897d6ba2113490cc9);
var marker_19c38042a733d8b11d3c25a55d80f2ca = L.marker(
[26.70895687, 50.05930344],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_7a6d00c927cf043c8e7bf734d5ef55df = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dbd705098c5c6a4cb25dada9510391f6 = L.popup({
"maxWidth": 320,
});
var html_5d4add5dcbfa8f06de79649a41160313 = $(`<div id="html_5d4add5dcbfa8f06de79649a41160313" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مكتب عج و سما للخدمات العقارية<br> <b>الرقم الموحد:</b> 7033036463<br> <b>السجل التجاري:</b> 2054100584<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70895687,50.05930344" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dbd705098c5c6a4cb25dada9510391f6.setContent(html_5d4add5dcbfa8f06de79649a41160313);
marker_19c38042a733d8b11d3c25a55d80f2ca.bindPopup(popup_dbd705098c5c6a4cb25dada9510391f6)
;
marker_19c38042a733d8b11d3c25a55d80f2ca.setIcon(icon_7a6d00c927cf043c8e7bf734d5ef55df);
var marker_c3b07d79a4304d7dfab3f8271466d06f = L.marker(
[26.70378644, 50.06284524],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_b2a283d583a2b1794ac178e5fdb56137 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7d36b1b56df990fc233621bb66fc7525 = L.popup({
"maxWidth": 320,
});
var html_e21c1e4446230120eb3b5e6bfbe71244 = $(`<div id="html_e21c1e4446230120eb3b5e6bfbe71244" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة منير بن محمد الشاخوري<br> <b>الرقم الموحد:</b> 7014547405<br> <b>السجل التجاري:</b> 2066001914<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70378644,50.06284524" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7d36b1b56df990fc233621bb66fc7525.setContent(html_e21c1e4446230120eb3b5e6bfbe71244);
marker_c3b07d79a4304d7dfab3f8271466d06f.bindPopup(popup_7d36b1b56df990fc233621bb66fc7525)
;
marker_c3b07d79a4304d7dfab3f8271466d06f.setIcon(icon_b2a283d583a2b1794ac178e5fdb56137);
var marker_c4542eb8c9e0e95ebe78dbf6ac9bc8d7 = L.marker(
[26.70447789, 50.06617448],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_46a112d9bfac1e2d37607c39543bfecb = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_569a2f71609716da4c0fe579ffbddb3c = L.popup({
"maxWidth": 320,
});
var html_b048dd42cd7165fff82574eb1efb0e72 = $(`<div id="html_b048dd42cd7165fff82574eb1efb0e72" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة فرحان عبدالله العنزي<br> <b>الرقم الموحد:</b> 7030730415<br> <b>السجل التجاري:</b> 2066612645<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.70447789,50.06617448" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_569a2f71609716da4c0fe579ffbddb3c.setContent(html_b048dd42cd7165fff82574eb1efb0e72);
marker_c4542eb8c9e0e95ebe78dbf6ac9bc8d7.bindPopup(popup_569a2f71609716da4c0fe579ffbddb3c)
;
marker_c4542eb8c9e0e95ebe78dbf6ac9bc8d7.setIcon(icon_46a112d9bfac1e2d37607c39543bfecb);
var marker_9566a0d66d1fef9b85f24ce5cee4875e = L.marker(
[26.70607403, 50.06124408],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_02fed63b003498c4552312513a5c653c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_07ab44de4e6a8f3f98a79d2bd6ee69b4 = L.popup({
"maxWidth": 320,
});
var html_063ad8ab082b3f70175155441d02fade = $(`<div id="html_063ad8ab082b3f70175155441d02fade" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة تاج الجزيرة للمقاولات<br> <b>الرقم الموحد:</b> 7001730055<br> <b>السجل التجاري:</b> 2054002196<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70607403,50.06124408" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_07ab44de4e6a8f3f98a79d2bd6ee69b4.setContent(html_063ad8ab082b3f70175155441d02fade);
marker_9566a0d66d1fef9b85f24ce5cee4875e.bindPopup(popup_07ab44de4e6a8f3f98a79d2bd6ee69b4)
;
marker_9566a0d66d1fef9b85f24ce5cee4875e.setIcon(icon_02fed63b003498c4552312513a5c653c);
var marker_d720e369ef427646cf0ffbe9bb54f42e = L.marker(
[26.710617, 50.06436883],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_c4aa33abf6954787ed74f5e7bbe2cc92 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d2c05024117f5b5e8474f00fa719b202 = L.popup({
"maxWidth": 320,
});
var html_54cc4a00fda3eb1864d5dac8cd9c8ef5 = $(`<div id="html_54cc4a00fda3eb1864d5dac8cd9c8ef5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الزيادة السعودية للمقاولات<br> <b>الرقم الموحد:</b> 7001887160<br> <b>السجل التجاري:</b> 2066002626<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.710617,50.06436883" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d2c05024117f5b5e8474f00fa719b202.setContent(html_54cc4a00fda3eb1864d5dac8cd9c8ef5);
marker_d720e369ef427646cf0ffbe9bb54f42e.bindPopup(popup_d2c05024117f5b5e8474f00fa719b202)
;
marker_d720e369ef427646cf0ffbe9bb54f42e.setIcon(icon_c4aa33abf6954787ed74f5e7bbe2cc92);
var marker_07ec1c48e75c0442e181de688bd05d62 = L.marker(
[26.70854777, 50.06478991],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_4c2794321b7847274f08b608bf701cd9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_558e2c3eb15a6f83f987227712b36266 = L.popup({
"maxWidth": 320,
});
var html_ddf79d50e6f77938966d71b28022e320 = $(`<div id="html_ddf79d50e6f77938966d71b28022e320" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الخدمات الصناعية التخصصية المحدودة<br> <b>الرقم الموحد:</b> 7001536643<br> <b>السجل التجاري:</b> 2054001257<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70854777,50.06478991" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_558e2c3eb15a6f83f987227712b36266.setContent(html_ddf79d50e6f77938966d71b28022e320);
marker_07ec1c48e75c0442e181de688bd05d62.bindPopup(popup_558e2c3eb15a6f83f987227712b36266)
;
marker_07ec1c48e75c0442e181de688bd05d62.setIcon(icon_4c2794321b7847274f08b608bf701cd9);
var marker_1bdf470744094f9c7984d334792ba096 = L.marker(
[26.70785028, 50.06042324],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_3f6ef173d0b9d125776bf0f30be39afa = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7771a8c31a237ea0ca64af3c80b9ea74 = L.popup({
"maxWidth": 320,
});
var html_02a4376338c9eb64c5a433c34728acf6 = $(`<div id="html_02a4376338c9eb64c5a433c34728acf6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة هاني مفرح الشمري للمقاولات العامة<br> <b>الرقم الموحد:</b> 7013878983<br> <b>السجل التجاري:</b> 2066001760<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70785028,50.06042324" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7771a8c31a237ea0ca64af3c80b9ea74.setContent(html_02a4376338c9eb64c5a433c34728acf6);
marker_1bdf470744094f9c7984d334792ba096.bindPopup(popup_7771a8c31a237ea0ca64af3c80b9ea74)
;
marker_1bdf470744094f9c7984d334792ba096.setIcon(icon_3f6ef173d0b9d125776bf0f30be39afa);
var marker_f94a315a872fea1251788ba7ea5c3066 = L.marker(
[26.7063674939288, 50.06304428618471],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_aa515789637db8b51e7c53c01bc8a38d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e962795e972ef25ee1b1f6e025f295fc = L.popup({
"maxWidth": 320,
});
var html_6cf1788cc2f6daa55421c48ce57d2dc8 = $(`<div id="html_6cf1788cc2f6daa55421c48ce57d2dc8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة إلين الخليج للمقاولات شركة شخص واحد<br> <b>الرقم الموحد:</b> 7004932799<br> <b>السجل التجاري:</b> 2054100370<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7063674939288,50.06304428618471" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e962795e972ef25ee1b1f6e025f295fc.setContent(html_6cf1788cc2f6daa55421c48ce57d2dc8);
marker_f94a315a872fea1251788ba7ea5c3066.bindPopup(popup_e962795e972ef25ee1b1f6e025f295fc)
;
marker_f94a315a872fea1251788ba7ea5c3066.setIcon(icon_aa515789637db8b51e7c53c01bc8a38d);
var marker_80e5b602da61c3d9e6d628c69d44bf11 = L.marker(
[26.70424522, 50.06698517],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_d71ba360c50f219c1ead03c9ba439df1 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9e1898b18cae29a2b1bb068c2e6434ff = L.popup({
"maxWidth": 320,
});
var html_208b1fcb1c3163a76efbd75a4313db07 = $(`<div id="html_208b1fcb1c3163a76efbd75a4313db07" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة تركي حجاب الشمري للاجره العامة<br> <b>الرقم الموحد:</b> 7007994085<br> <b>السجل التجاري:</b> 2066004581<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.70424522,50.06698517" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9e1898b18cae29a2b1bb068c2e6434ff.setContent(html_208b1fcb1c3163a76efbd75a4313db07);
marker_80e5b602da61c3d9e6d628c69d44bf11.bindPopup(popup_9e1898b18cae29a2b1bb068c2e6434ff)
;
marker_80e5b602da61c3d9e6d628c69d44bf11.setIcon(icon_d71ba360c50f219c1ead03c9ba439df1);
var marker_9adb6551eba47d6243db11ff51a981ed = L.marker(
[26.70833996, 50.0601794],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_1e47e032f832e60511fcc59d23ff0280 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7f309a0ecf76f77c94e678a29dabf8b9 = L.popup({
"maxWidth": 320,
});
var html_2a57ebdb80270f6d2070760012cfda8c = $(`<div id="html_2a57ebdb80270f6d2070760012cfda8c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة جفال ونايف عبيد الشمرى للمقاولات<br> <b>الرقم الموحد:</b> 7000082441<br> <b>السجل التجاري:</b> 2054000095<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70833996,50.0601794" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7f309a0ecf76f77c94e678a29dabf8b9.setContent(html_2a57ebdb80270f6d2070760012cfda8c);
marker_9adb6551eba47d6243db11ff51a981ed.bindPopup(popup_7f309a0ecf76f77c94e678a29dabf8b9)
;
marker_9adb6551eba47d6243db11ff51a981ed.setIcon(icon_1e47e032f832e60511fcc59d23ff0280);
var marker_e1316e60aed69bef38fff9b4b09a5146 = L.marker(
[26.710337827264, 50.0629917151858],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_02bab7dce68bb8aefad39ace50c15a8d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f9cfd7e461edd9827198a55d49a7a06f = L.popup({
"maxWidth": 320,
});
var html_f80b2106b267e0d7dc0ce4ff69b804b0 = $(`<div id="html_f80b2106b267e0d7dc0ce4ff69b804b0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أعالي البحار للخدمات البحرية و الصناعية<br> <b>الرقم الموحد:</b> 7001634182<br> <b>السجل التجاري:</b> 2066003032<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.710337827264,50.0629917151858" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f9cfd7e461edd9827198a55d49a7a06f.setContent(html_f80b2106b267e0d7dc0ce4ff69b804b0);
marker_e1316e60aed69bef38fff9b4b09a5146.bindPopup(popup_f9cfd7e461edd9827198a55d49a7a06f)
;
marker_e1316e60aed69bef38fff9b4b09a5146.setIcon(icon_02bab7dce68bb8aefad39ace50c15a8d);
var marker_df0a0a90c8c6ea287ca3d22e0b492e62 = L.marker(
[26.70956205, 50.06333477],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_8304657d0f633e4e73326ededf1e0acd = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5c01bd141f642ab290134612e4438d58 = L.popup({
"maxWidth": 320,
});
var html_b7285a6fbea01a5ccf70ff7f9706f93d = $(`<div id="html_b7285a6fbea01a5ccf70ff7f9706f93d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة انظمة التحكم الخليجية المتقدمه التجارية<br> <b>الرقم الموحد:</b> 7014850726<br> <b>السجل التجاري:</b> 2066002065<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70956205,50.06333477" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5c01bd141f642ab290134612e4438d58.setContent(html_b7285a6fbea01a5ccf70ff7f9706f93d);
marker_df0a0a90c8c6ea287ca3d22e0b492e62.bindPopup(popup_5c01bd141f642ab290134612e4438d58)
;
marker_df0a0a90c8c6ea287ca3d22e0b492e62.setIcon(icon_8304657d0f633e4e73326ededf1e0acd);
var marker_2025f780adcc22870dfb5d5c730feb04 = L.marker(
[26.70922757, 50.06024818],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_da8b69442c4f01e2d3fc7a747d54331a = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9173fbaf5a899063ddbc339b3965f80d = L.popup({
"maxWidth": 320,
});
var html_9f59338b4a31fa7e420574c5d02f4071 = $(`<div id="html_9f59338b4a31fa7e420574c5d02f4071" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة لؤلؤة البحر للخدمات البحرية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7034685532<br> <b>السجل التجاري:</b> 2066612745<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.70922757,50.06024818" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9173fbaf5a899063ddbc339b3965f80d.setContent(html_9f59338b4a31fa7e420574c5d02f4071);
marker_2025f780adcc22870dfb5d5c730feb04.bindPopup(popup_9173fbaf5a899063ddbc339b3965f80d)
;
marker_2025f780adcc22870dfb5d5c730feb04.setIcon(icon_da8b69442c4f01e2d3fc7a747d54331a);
var marker_754e628a841ef2e1b537d7c2cb2dbe89 = L.marker(
[26.709885921474974, 50.06167415670523],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_6201520408c9c45c1777d18b52d529a3 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e53c0946fcf9634231b11599a0694347 = L.popup({
"maxWidth": 320,
});
var html_5c8bce508e825a72d56427c358ea3ae6 = $(`<div id="html_5c8bce508e825a72d56427c358ea3ae6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الجري الممتع للترفيه<br> <b>الرقم الموحد:</b> 7042070461<br> <b>السجل التجاري:</b> 2066613118<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.709885921474974,50.06167415670523" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e53c0946fcf9634231b11599a0694347.setContent(html_5c8bce508e825a72d56427c358ea3ae6);
marker_754e628a841ef2e1b537d7c2cb2dbe89.bindPopup(popup_e53c0946fcf9634231b11599a0694347)
;
marker_754e628a841ef2e1b537d7c2cb2dbe89.setIcon(icon_6201520408c9c45c1777d18b52d529a3);
var marker_d933ba13cdf191626b00679ace2860ba = L.marker(
[26.70130744, 50.05930516],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_f3dcf2ca0bd478c2e8cd8e26f03cea09 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1c4627f880ab68c3cd5ca3a4df37700c = L.popup({
"maxWidth": 320,
});
var html_f688d18b7dee0f6477e80041fd950328 = $(`<div id="html_f688d18b7dee0f6477e80041fd950328" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة كاس العالمية للمقاولات المحدودة<br> <b>الرقم الموحد:</b> 7001445803<br> <b>السجل التجاري:</b> 2054000282<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70130744,50.05930516" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1c4627f880ab68c3cd5ca3a4df37700c.setContent(html_f688d18b7dee0f6477e80041fd950328);
marker_d933ba13cdf191626b00679ace2860ba.bindPopup(popup_1c4627f880ab68c3cd5ca3a4df37700c)
;
marker_d933ba13cdf191626b00679ace2860ba.setIcon(icon_f3dcf2ca0bd478c2e8cd8e26f03cea09);
var marker_e7b0e5737b612bc594887746520e1a0f = L.marker(
[26.70504599, 50.06553728],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_268b69df0ecb29ef33e30873eeeaead9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_02326e0cd90524a575ecfe80522347c0 = L.popup({
"maxWidth": 320,
});
var html_85fc25f6fdd4fc8162d99b9f6df12a7c = $(`<div id="html_85fc25f6fdd4fc8162d99b9f6df12a7c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة شخصيات رحيمة التجارية<br> <b>الرقم الموحد:</b> 7007019230<br> <b>السجل التجاري:</b> 2054100234<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70504599,50.06553728" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_02326e0cd90524a575ecfe80522347c0.setContent(html_85fc25f6fdd4fc8162d99b9f6df12a7c);
marker_e7b0e5737b612bc594887746520e1a0f.bindPopup(popup_02326e0cd90524a575ecfe80522347c0)
;
marker_e7b0e5737b612bc594887746520e1a0f.setIcon(icon_268b69df0ecb29ef33e30873eeeaead9);
var marker_e07a7c7fdce266563c788e86a873dbe7 = L.marker(
[26.7091508323958, 50.063605465714495],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_bf775ea12b2c02741a6c886b8cace802 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c7e6ec0fc9ebc11ec0e5772c9dec330a = L.popup({
"maxWidth": 320,
});
var html_eb7087ae462104e4671842dfbf58467c = $(`<div id="html_eb7087ae462104e4671842dfbf58467c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مجموعة الشيخ الدولية للتجارة والمقاولات شركة الشخص الواحد شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001775720<br> <b>السجل التجاري:</b> 2054001713<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7091508323958,50.063605465714495" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c7e6ec0fc9ebc11ec0e5772c9dec330a.setContent(html_eb7087ae462104e4671842dfbf58467c);
marker_e07a7c7fdce266563c788e86a873dbe7.bindPopup(popup_c7e6ec0fc9ebc11ec0e5772c9dec330a)
;
marker_e07a7c7fdce266563c788e86a873dbe7.setIcon(icon_bf775ea12b2c02741a6c886b8cace802);
var marker_78291ffff08a524f8911a7973f12bf19 = L.marker(
[26.7050338572542, 50.060112555232095],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_b34b5a031e9f111fc4d8f110be5c79c0 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9aa628d1d1736c1cc4d25f33cf38222b = L.popup({
"maxWidth": 320,
});
var html_73f456afed2c6445b7cd2a6488f8516b = $(`<div id="html_73f456afed2c6445b7cd2a6488f8516b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مانع يحي آل همام للمقاولات العامة<br> <b>الرقم الموحد:</b> 7006402270<br> <b>السجل التجاري:</b> 2050056979<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7050338572542,50.060112555232095" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9aa628d1d1736c1cc4d25f33cf38222b.setContent(html_73f456afed2c6445b7cd2a6488f8516b);
marker_78291ffff08a524f8911a7973f12bf19.bindPopup(popup_9aa628d1d1736c1cc4d25f33cf38222b)
;
marker_78291ffff08a524f8911a7973f12bf19.setIcon(icon_b34b5a031e9f111fc4d8f110be5c79c0);
var marker_71b075cdc680c95198030c86cd0fa619 = L.marker(
[26.70477339, 50.06662362],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_850e9598bc5c24eb803f931568ce31cf = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a9cea3821810674b21480f3e5f839205 = L.popup({
"maxWidth": 320,
});
var html_96ebdadbb38cfc52b76abe5d12e9fbfc = $(`<div id="html_96ebdadbb38cfc52b76abe5d12e9fbfc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة واحة الذهبي لتقديم الوجبات شركة شخص واحد<br> <b>الرقم الموحد:</b> 7028195431<br> <b>السجل التجاري:</b> 2051240507<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70477339,50.06662362" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a9cea3821810674b21480f3e5f839205.setContent(html_96ebdadbb38cfc52b76abe5d12e9fbfc);
marker_71b075cdc680c95198030c86cd0fa619.bindPopup(popup_a9cea3821810674b21480f3e5f839205)
;
marker_71b075cdc680c95198030c86cd0fa619.setIcon(icon_850e9598bc5c24eb803f931568ce31cf);
var marker_62e67163bfddd197f85e089b794bb6ea = L.marker(
[26.70791063, 50.06254608],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_a61ace5c4a277712362504c73c81d308 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_261898bdd36a40c58c193c48ec339461 = L.popup({
"maxWidth": 320,
});
var html_1757f3e08368dd387014e377dc04f040 = $(`<div id="html_1757f3e08368dd387014e377dc04f040" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مستقبل المملكة للتجارة والمقاولات<br> <b>الرقم الموحد:</b> 7001777759<br> <b>السجل التجاري:</b> 2054001468<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70791063,50.06254608" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_261898bdd36a40c58c193c48ec339461.setContent(html_1757f3e08368dd387014e377dc04f040);
marker_62e67163bfddd197f85e089b794bb6ea.bindPopup(popup_261898bdd36a40c58c193c48ec339461)
;
marker_62e67163bfddd197f85e089b794bb6ea.setIcon(icon_a61ace5c4a277712362504c73c81d308);
var marker_c2654f7f635c12c6039cb82167c847e8 = L.marker(
[26.71065018, 50.06438443],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_983fb3a879bfdcf99993d82f86fb4de2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e2f988b1798b7b37b7d92706e7870d9f = L.popup({
"maxWidth": 320,
});
var html_5a81ed47cbdfb79977d11a92ed3599ad = $(`<div id="html_5a81ed47cbdfb79977d11a92ed3599ad" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الطريق السريع العربية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001890008<br> <b>السجل التجاري:</b> 2066002880<br> <b>الحي:</b> الدانة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71065018,50.06438443" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e2f988b1798b7b37b7d92706e7870d9f.setContent(html_5a81ed47cbdfb79977d11a92ed3599ad);
marker_c2654f7f635c12c6039cb82167c847e8.bindPopup(popup_e2f988b1798b7b37b7d92706e7870d9f)
;
marker_c2654f7f635c12c6039cb82167c847e8.setIcon(icon_983fb3a879bfdcf99993d82f86fb4de2);
var marker_4885140abe9ba80650f27d867c5a53f2 = L.marker(
[26.69725997, 50.05328533],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_0b25e30e3ea92d09c7c01d1ec2e6aabb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8784e5c6c03ba2795c24434ccebc8667 = L.popup({
"maxWidth": 320,
});
var html_b2279b8046403c7eeebcab3b41158c77 = $(`<div id="html_b2279b8046403c7eeebcab3b41158c77" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة فهد سليمان التميمي و شركاءه للتجارة و المقاولات و الصناعة<br> <b>الرقم الموحد:</b> 7001530349<br> <b>السجل التجاري:</b> 2054000297<br> <b>الحي:</b> البستان<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.69725997,50.05328533" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8784e5c6c03ba2795c24434ccebc8667.setContent(html_b2279b8046403c7eeebcab3b41158c77);
marker_4885140abe9ba80650f27d867c5a53f2.bindPopup(popup_8784e5c6c03ba2795c24434ccebc8667)
;
marker_4885140abe9ba80650f27d867c5a53f2.setIcon(icon_0b25e30e3ea92d09c7c01d1ec2e6aabb);
var marker_846a7f0776d6ade1a4e301b0389c7d02 = L.marker(
[26.696927125949095, 50.063934773784],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_107367aac58a291d4b4d36aa4ae0b967 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_72027945082b8cb9b9705c4be5743dd7 = L.popup({
"maxWidth": 320,
});
var html_6a73321c0feb6c4eeee94cf7687ab688 = $(`<div id="html_6a73321c0feb6c4eeee94cf7687ab688" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة جلوي محمد القحطاني للنقليات<br> <b>الرقم الموحد:</b> 7014895788<br> <b>السجل التجاري:</b> 2066002381<br> <b>الحي:</b> البستان<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.696927125949095,50.063934773784" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_72027945082b8cb9b9705c4be5743dd7.setContent(html_6a73321c0feb6c4eeee94cf7687ab688);
marker_846a7f0776d6ade1a4e301b0389c7d02.bindPopup(popup_72027945082b8cb9b9705c4be5743dd7)
;
marker_846a7f0776d6ade1a4e301b0389c7d02.setIcon(icon_107367aac58a291d4b4d36aa4ae0b967);
var marker_ef30ce23eb0c1c59146a027a42e07d7f = L.marker(
[26.69608596, 50.06035263],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_70cca1ed225aefe8688f8de57179b893 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2a5b81dafeb51d0c148a38b41f1deb83 = L.popup({
"maxWidth": 320,
});
var html_3bcb386755cfef00aec56d883f973086 = $(`<div id="html_3bcb386755cfef00aec56d883f973086" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة رأس الخليج للمقاولات العامة شركة ذات المسؤولية المحدودة من شخص واحد<br> <b>الرقم الموحد:</b> 7001608095<br> <b>السجل التجاري:</b> 2066002150<br> <b>الحي:</b> البستان<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.69608596,50.06035263" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2a5b81dafeb51d0c148a38b41f1deb83.setContent(html_3bcb386755cfef00aec56d883f973086);
marker_ef30ce23eb0c1c59146a027a42e07d7f.bindPopup(popup_2a5b81dafeb51d0c148a38b41f1deb83)
;
marker_ef30ce23eb0c1c59146a027a42e07d7f.setIcon(icon_70cca1ed225aefe8688f8de57179b893);
var marker_16d48a3ba6c2bca6f5738860a2b607dd = L.marker(
[26.69624972, 50.05872653],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_3730f8027cf52769ec0a1d8936214ac7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_69015e70b3663d721e0a31cb5805bce3 = L.popup({
"maxWidth": 320,
});
var html_7f9700e663867d891fd6d5ac92e023bb = $(`<div id="html_7f9700e663867d891fd6d5ac92e023bb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة رابكو للمقاولات والخدمات الصناعية<br> <b>الرقم الموحد:</b> 7001429997<br> <b>السجل التجاري:</b> 2066001774<br> <b>الحي:</b> البستان<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.69624972,50.05872653" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_69015e70b3663d721e0a31cb5805bce3.setContent(html_7f9700e663867d891fd6d5ac92e023bb);
marker_16d48a3ba6c2bca6f5738860a2b607dd.bindPopup(popup_69015e70b3663d721e0a31cb5805bce3)
;
marker_16d48a3ba6c2bca6f5738860a2b607dd.setIcon(icon_3730f8027cf52769ec0a1d8936214ac7);
var marker_8981ebf37b2fdb222792e63cccfe2bf8 = L.marker(
[26.70014476, 50.0595423],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_f28cc7e3f8a84273c59fac416af37c2c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6ad8988885d638df41a85c3d1ba3e6fd = L.popup({
"maxWidth": 320,
});
var html_dab32bf9651a265468a9c58f9503355b = $(`<div id="html_dab32bf9651a265468a9c58f9503355b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة محمد سالم السويدي لخدمات السقالات وحلول وسائل الوصول<br> <b>الرقم الموحد:</b> 7001473524<br> <b>السجل التجاري:</b> 2066002153<br> <b>الحي:</b> البستان<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70014476,50.0595423" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6ad8988885d638df41a85c3d1ba3e6fd.setContent(html_dab32bf9651a265468a9c58f9503355b);
marker_8981ebf37b2fdb222792e63cccfe2bf8.bindPopup(popup_6ad8988885d638df41a85c3d1ba3e6fd)
;
marker_8981ebf37b2fdb222792e63cccfe2bf8.setIcon(icon_f28cc7e3f8a84273c59fac416af37c2c);
var marker_95fdfbceb42106670341644db40dc040 = L.marker(
[26.70751505, 50.07126693],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_83a87f3cdcf106fc070081f6cc9bc0ca = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c3934a9c3e581d2b4b15b55ab9730900 = L.popup({
"maxWidth": 320,
});
var html_a10ba0a2fac676dcca07014e6b808823 = $(`<div id="html_a10ba0a2fac676dcca07014e6b808823" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سوما المحدودة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7004318924<br> <b>السجل التجاري:</b> 2054100360<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70751505,50.07126693" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c3934a9c3e581d2b4b15b55ab9730900.setContent(html_a10ba0a2fac676dcca07014e6b808823);
marker_95fdfbceb42106670341644db40dc040.bindPopup(popup_c3934a9c3e581d2b4b15b55ab9730900)
;
marker_95fdfbceb42106670341644db40dc040.setIcon(icon_83a87f3cdcf106fc070081f6cc9bc0ca);
var marker_7c44186c23f58e8e805ee2a278ef4089 = L.marker(
[26.70785333, 50.07171349],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_debda770f116f8110a1473d5ebfa01f8 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f4c937c4630b18f153d50c247b26e267 = L.popup({
"maxWidth": 320,
});
var html_072973cf00e9e79cd83c971960c01b11 = $(`<div id="html_072973cf00e9e79cd83c971960c01b11" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة نجران للتجارة والمقاولات لاصحابها سعيد علي محمد آل سرور وشركاه<br> <b>الرقم الموحد:</b> 7000044888<br> <b>السجل التجاري:</b> 2054000086<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70785333,50.07171349" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f4c937c4630b18f153d50c247b26e267.setContent(html_072973cf00e9e79cd83c971960c01b11);
marker_7c44186c23f58e8e805ee2a278ef4089.bindPopup(popup_f4c937c4630b18f153d50c247b26e267)
;
marker_7c44186c23f58e8e805ee2a278ef4089.setIcon(icon_debda770f116f8110a1473d5ebfa01f8);
var marker_861c268137523d235dd4eef4337e207c = L.marker(
[26.70818725, 50.06805487],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_ceb10bcc7574b1bb12e2cf2517f7d1d4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0eb11f5951d2c74e7c37d481a310186d = L.popup({
"maxWidth": 320,
});
var html_f81dcb3d75a27f2fa711614b850c336a = $(`<div id="html_f81dcb3d75a27f2fa711614b850c336a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة حامدعبدالخالق الغامدى وشركاه للتجاره والإستيرادشركة مساهمة مبسطة<br> <b>الرقم الموحد:</b> 7000706031<br> <b>السجل التجاري:</b> 2054001094<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70818725,50.06805487" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0eb11f5951d2c74e7c37d481a310186d.setContent(html_f81dcb3d75a27f2fa711614b850c336a);
marker_861c268137523d235dd4eef4337e207c.bindPopup(popup_0eb11f5951d2c74e7c37d481a310186d)
;
marker_861c268137523d235dd4eef4337e207c.setIcon(icon_ceb10bcc7574b1bb12e2cf2517f7d1d4);
var marker_ece705c18424375c527babea57307c24 = L.marker(
[26.7091234627888, 50.0687632837406],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_719e9c25eaf813b5d0002aa58ffd09ca = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ff34dae9906cefbc18bb1a98b761661d = L.popup({
"maxWidth": 320,
});
var html_98dd14d59e114e8731cca8e54697dfb5 = $(`<div id="html_98dd14d59e114e8731cca8e54697dfb5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة أعتمد للصيانة<br> <b>الرقم الموحد:</b> 7008386331<br> <b>السجل التجاري:</b> 2066612232<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7091234627888,50.0687632837406" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ff34dae9906cefbc18bb1a98b761661d.setContent(html_98dd14d59e114e8731cca8e54697dfb5);
marker_ece705c18424375c527babea57307c24.bindPopup(popup_ff34dae9906cefbc18bb1a98b761661d)
;
marker_ece705c18424375c527babea57307c24.setIcon(icon_719e9c25eaf813b5d0002aa58ffd09ca);
var marker_103100905844e32574477da4acece236 = L.marker(
[26.706582392881977, 50.06833853200078],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_35e7d138ec1d646b463bf14f5d63f0df = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_39daaad7de66bc52c7bd6343e3bd8b0e = L.popup({
"maxWidth": 320,
});
var html_8e83dec1f0f4d5e52ad1af7ba0347261 = $(`<div id="html_8e83dec1f0f4d5e52ad1af7ba0347261" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة تجهيز فلكس للمقاولات<br> <b>الرقم الموحد:</b> 7038138546<br> <b>السجل التجاري:</b> 2066612923<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.706582392881977,50.06833853200078" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_39daaad7de66bc52c7bd6343e3bd8b0e.setContent(html_8e83dec1f0f4d5e52ad1af7ba0347261);
marker_103100905844e32574477da4acece236.bindPopup(popup_39daaad7de66bc52c7bd6343e3bd8b0e)
;
marker_103100905844e32574477da4acece236.setIcon(icon_35e7d138ec1d646b463bf14f5d63f0df);
var marker_4f441c94781b0be373b821a92ccbc43c = L.marker(
[26.70827149, 50.06615974],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_816b6cde415996cb6cc302dcaddf5c5f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_639c33b45dcb91288c1505f57e8230b7 = L.popup({
"maxWidth": 320,
});
var html_54130c7af83264a6f65af5a41963636e = $(`<div id="html_54130c7af83264a6f65af5a41963636e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> وكالة بصمتك للدعاية والاعلان<br> <b>الرقم الموحد:</b> 7025157731<br> <b>السجل التجاري:</b> 2066612808<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70827149,50.06615974" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_639c33b45dcb91288c1505f57e8230b7.setContent(html_54130c7af83264a6f65af5a41963636e);
marker_4f441c94781b0be373b821a92ccbc43c.bindPopup(popup_639c33b45dcb91288c1505f57e8230b7)
;
marker_4f441c94781b0be373b821a92ccbc43c.setIcon(icon_816b6cde415996cb6cc302dcaddf5c5f);
var marker_d6d20b5cf96d9737d691c5ca6def6461 = L.marker(
[26.7096870973486, 50.0699660963335],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_1363ca320e9a45c6d3554df9754d274f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fec7fe30d976c36deb42a1d2dd648822 = L.popup({
"maxWidth": 320,
});
var html_02b8ad35397fdbbdf811fba08b9e901b = $(`<div id="html_02b8ad35397fdbbdf811fba08b9e901b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة حمد هادي آل زميع للمقاولات<br> <b>الرقم الموحد:</b> 7006771435<br> <b>السجل التجاري:</b> 2054000620<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7096870973486,50.0699660963335" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fec7fe30d976c36deb42a1d2dd648822.setContent(html_02b8ad35397fdbbdf811fba08b9e901b);
marker_d6d20b5cf96d9737d691c5ca6def6461.bindPopup(popup_fec7fe30d976c36deb42a1d2dd648822)
;
marker_d6d20b5cf96d9737d691c5ca6def6461.setIcon(icon_1363ca320e9a45c6d3554df9754d274f);
var marker_71657ab54c46883d0fffe79be7c96218 = L.marker(
[26.70889638, 50.06643301],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_96c906830405fc9db54010943b2abf1d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ac8e636198e77dee3a92b4c6a85cfeab = L.popup({
"maxWidth": 320,
});
var html_fd6a1c79f9c96b869d7dc5c87097b41e = $(`<div id="html_fd6a1c79f9c96b869d7dc5c87097b41e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة اطلال العرب المحدودة<br> <b>الرقم الموحد:</b> 7027931257<br> <b>السجل التجاري:</b> 2066612496<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70889638,50.06643301" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ac8e636198e77dee3a92b4c6a85cfeab.setContent(html_fd6a1c79f9c96b869d7dc5c87097b41e);
marker_71657ab54c46883d0fffe79be7c96218.bindPopup(popup_ac8e636198e77dee3a92b4c6a85cfeab)
;
marker_71657ab54c46883d0fffe79be7c96218.setIcon(icon_96c906830405fc9db54010943b2abf1d);
var marker_8df5f837f3b427b7557eae8c59692afc = L.marker(
[26.7065828058072, 50.0732398576347],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_3e9d82cde4d29a2ad9dcaac95f997857 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2204a75865be29891ce8ffd2fa927cee = L.popup({
"maxWidth": 320,
});
var html_a169aff655116fbe88307caeb1e4ca70 = $(`<div id="html_a169aff655116fbe88307caeb1e4ca70" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عبدالله هادي بالحارث وشركاه<br> <b>الرقم الموحد:</b> 7001429278<br> <b>السجل التجاري:</b> 2066001825<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7065828058072,50.0732398576347" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2204a75865be29891ce8ffd2fa927cee.setContent(html_a169aff655116fbe88307caeb1e4ca70);
marker_8df5f837f3b427b7557eae8c59692afc.bindPopup(popup_2204a75865be29891ce8ffd2fa927cee)
;
marker_8df5f837f3b427b7557eae8c59692afc.setIcon(icon_3e9d82cde4d29a2ad9dcaac95f997857);
var marker_581a8c2e446d57f5c6898979df333f16 = L.marker(
[26.71072647, 50.06737734],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_8b8cb99e9138ed41662a664aa3834336 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_270974c2ceac69c84cb0562b2703d125 = L.popup({
"maxWidth": 320,
});
var html_17f9d7833e52dd159c5b9d8e10cd203e = $(`<div id="html_17f9d7833e52dd159c5b9d8e10cd203e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة حورية المشارق للمقاولات العامة<br> <b>الرقم الموحد:</b> 7004372335<br> <b>السجل التجاري:</b> 2066611674<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.71072647,50.06737734" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_270974c2ceac69c84cb0562b2703d125.setContent(html_17f9d7833e52dd159c5b9d8e10cd203e);
marker_581a8c2e446d57f5c6898979df333f16.bindPopup(popup_270974c2ceac69c84cb0562b2703d125)
;
marker_581a8c2e446d57f5c6898979df333f16.setIcon(icon_8b8cb99e9138ed41662a664aa3834336);
var marker_f14e7ddbbf6188ead362e8d6410fb815 = L.marker(
[26.70375481, 50.06785615],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_61cd53f259b8a9f83c7519b00ded3ec1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3907a0956fa388d8bede0ebe488d5ae8 = L.popup({
"maxWidth": 320,
});
var html_0ea43598b76d9ea9aa6035329705a70f = $(`<div id="html_0ea43598b76d9ea9aa6035329705a70f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة استدامة التحكم البيئي للخدمات البيئية<br> <b>الرقم الموحد:</b> 7007846640<br> <b>السجل التجاري:</b> 2066004555<br> <b>الحي:</b> الاندلس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70375481,50.06785615" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3907a0956fa388d8bede0ebe488d5ae8.setContent(html_0ea43598b76d9ea9aa6035329705a70f);
marker_f14e7ddbbf6188ead362e8d6410fb815.bindPopup(popup_3907a0956fa388d8bede0ebe488d5ae8)
;
marker_f14e7ddbbf6188ead362e8d6410fb815.setIcon(icon_61cd53f259b8a9f83c7519b00ded3ec1);
var marker_7342abf70202792c984bf5561f751cc6 = L.marker(
[26.703731182519, 50.06861414740419],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_97e2566002bf431ae05e42cc5d239a52 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_546b88b6bce2f54f0e4b1ffb2e893ff0 = L.popup({
"maxWidth": 320,
});
var html_74f04b98a54ec8f50963603055eb4a72 = $(`<div id="html_74f04b98a54ec8f50963603055eb4a72" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة سيرفيتيك العربية تردينغ آند كونتر<br> <b>الرقم الموحد:</b> 7028234115<br> <b>السجل التجاري:</b> 2066612516<br> <b>الحي:</b> الاندلس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.703731182519,50.06861414740419" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_546b88b6bce2f54f0e4b1ffb2e893ff0.setContent(html_74f04b98a54ec8f50963603055eb4a72);
marker_7342abf70202792c984bf5561f751cc6.bindPopup(popup_546b88b6bce2f54f0e4b1ffb2e893ff0)
;
marker_7342abf70202792c984bf5561f751cc6.setIcon(icon_97e2566002bf431ae05e42cc5d239a52);
var marker_435c91f1cdd6afc0e681ba90cdca08e9 = L.marker(
[26.7006292193197, 50.0664454423802],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_e500846e8b547a10d6041184f99d641a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c57a292a337d59dd7cecd424b8a9c348 = L.popup({
"maxWidth": 320,
});
var html_b4006b6692c2ef6ff63f391cf69adf76 = $(`<div id="html_b4006b6692c2ef6ff63f391cf69adf76" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أبناء حسين كاظم الصادق للمقاولات المحدودة<br> <b>الرقم الموحد:</b> 7001403802<br> <b>السجل التجاري:</b> 2054001769<br> <b>الحي:</b> الاندلس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7006292193197,50.0664454423802" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c57a292a337d59dd7cecd424b8a9c348.setContent(html_b4006b6692c2ef6ff63f391cf69adf76);
marker_435c91f1cdd6afc0e681ba90cdca08e9.bindPopup(popup_c57a292a337d59dd7cecd424b8a9c348)
;
marker_435c91f1cdd6afc0e681ba90cdca08e9.setIcon(icon_e500846e8b547a10d6041184f99d641a);
var marker_17fb1a2e24892f76dba72b683539ae70 = L.marker(
[26.70363038, 50.07260747],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_dcb644e9a0f6775092436212e7b45395 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_72d85be3a941c9dfcab48fdbbf3e94c5 = L.popup({
"maxWidth": 320,
});
var html_f695244e69112b7c46d990e2984f47be = $(`<div id="html_f695244e69112b7c46d990e2984f47be" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أبناء محمد هاشل سرور المحدودة<br> <b>الرقم الموحد:</b> 7009369856<br> <b>السجل التجاري:</b> 2066000342<br> <b>الحي:</b> الاندلس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70363038,50.07260747" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_72d85be3a941c9dfcab48fdbbf3e94c5.setContent(html_f695244e69112b7c46d990e2984f47be);
marker_17fb1a2e24892f76dba72b683539ae70.bindPopup(popup_72d85be3a941c9dfcab48fdbbf3e94c5)
;
marker_17fb1a2e24892f76dba72b683539ae70.setIcon(icon_dcb644e9a0f6775092436212e7b45395);
var marker_bd8f635b58dc9046c399e45bd32db973 = L.marker(
[26.70307277, 50.06865688],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_a9b857e855a8331815321ffe3ca2342c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1a10c08b5965bcd3d2138d708c8424a7 = L.popup({
"maxWidth": 320,
});
var html_8d4be6750758d890eda3f63f52af67a4 = $(`<div id="html_8d4be6750758d890eda3f63f52af67a4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة التراث الشرقي للمقاولات العامة<br> <b>الرقم الموحد:</b> 7012664178<br> <b>السجل التجاري:</b> 2057003284<br> <b>الحي:</b> الاندلس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70307277,50.06865688" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1a10c08b5965bcd3d2138d708c8424a7.setContent(html_8d4be6750758d890eda3f63f52af67a4);
marker_bd8f635b58dc9046c399e45bd32db973.bindPopup(popup_1a10c08b5965bcd3d2138d708c8424a7)
;
marker_bd8f635b58dc9046c399e45bd32db973.setIcon(icon_a9b857e855a8331815321ffe3ca2342c);
var marker_c6256de468bbe94e3c26f1b56a2cc518 = L.marker(
[26.70246972, 50.07001101],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_afe6a7fe8009af60cd05624456a7789c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cf86876e419507362e76e6bf42a81bfb = L.popup({
"maxWidth": 320,
});
var html_38b6e7dfac2d21b2abb6db5cf9e96d4d = $(`<div id="html_38b6e7dfac2d21b2abb6db5cf9e96d4d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مبارك صالح واخوانه شركة راك العربيه للانشاءات العالمية<br> <b>الرقم الموحد:</b> 7000587068<br> <b>السجل التجاري:</b> 2054000830<br> <b>الحي:</b> الاندلس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70246972,50.07001101" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cf86876e419507362e76e6bf42a81bfb.setContent(html_38b6e7dfac2d21b2abb6db5cf9e96d4d);
marker_c6256de468bbe94e3c26f1b56a2cc518.bindPopup(popup_cf86876e419507362e76e6bf42a81bfb)
;
marker_c6256de468bbe94e3c26f1b56a2cc518.setIcon(icon_afe6a7fe8009af60cd05624456a7789c);
var marker_0ae009b7d8da4ba6d9910ed2dba7c6ab = L.marker(
[26.7036351, 50.07239239],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_04c1f707c5f26e37df833c8dce7aa0d3 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a6bf5e0f84b261145a854d41a2338da3 = L.popup({
"maxWidth": 320,
});
var html_164db3d8c0b0128ab7c45448061aa647 = $(`<div id="html_164db3d8c0b0128ab7c45448061aa647" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة خالد مهدي ال زليق للمقاولات العامة<br> <b>الرقم الموحد:</b> 7014957372<br> <b>السجل التجاري:</b> 2058000040<br> <b>الحي:</b> الاندلس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7036351,50.07239239" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a6bf5e0f84b261145a854d41a2338da3.setContent(html_164db3d8c0b0128ab7c45448061aa647);
marker_0ae009b7d8da4ba6d9910ed2dba7c6ab.bindPopup(popup_a6bf5e0f84b261145a854d41a2338da3)
;
marker_0ae009b7d8da4ba6d9910ed2dba7c6ab.setIcon(icon_04c1f707c5f26e37df833c8dce7aa0d3);
var marker_876d8270543e0eeb2b41818093ba2e9d = L.marker(
[26.70229875, 50.0686703],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_0928a1db23eeab50b9cc177af1b781f6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a902ff8e77d78a8511a9424e90f5a33c = L.popup({
"maxWidth": 320,
});
var html_16c87186db60be7b3c4432ce0c153e83 = $(`<div id="html_16c87186db60be7b3c4432ce0c153e83" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الجزيرة المعماري للمقاولات<br> <b>الرقم الموحد:</b> 7034298443<br> <b>السجل التجاري:</b> 2066612792<br> <b>الحي:</b> الاندلس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70229875,50.0686703" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a902ff8e77d78a8511a9424e90f5a33c.setContent(html_16c87186db60be7b3c4432ce0c153e83);
marker_876d8270543e0eeb2b41818093ba2e9d.bindPopup(popup_a902ff8e77d78a8511a9424e90f5a33c)
;
marker_876d8270543e0eeb2b41818093ba2e9d.setIcon(icon_0928a1db23eeab50b9cc177af1b781f6);
var marker_83ddac7ff6c078e18c4ad31a48a2b71d = L.marker(
[26.7026958374404, 50.068429470602894],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_9c52a27ef6a24876477dc4cbeb6f76e5 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c755cafad8e722326afdb349d56b76c0 = L.popup({
"maxWidth": 320,
});
var html_33d55f7e20b1bdb09182616defbaf10a = $(`<div id="html_33d55f7e20b1bdb09182616defbaf10a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> وكالة النورس للدعاية والاعلان<br> <b>الرقم الموحد:</b> 7012044876<br> <b>السجل التجاري:</b> 2066002816<br> <b>الحي:</b> الاندلس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7026958374404,50.068429470602894" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c755cafad8e722326afdb349d56b76c0.setContent(html_33d55f7e20b1bdb09182616defbaf10a);
marker_83ddac7ff6c078e18c4ad31a48a2b71d.bindPopup(popup_c755cafad8e722326afdb349d56b76c0)
;
marker_83ddac7ff6c078e18c4ad31a48a2b71d.setIcon(icon_9c52a27ef6a24876477dc4cbeb6f76e5);
var marker_d5694e844078525658d20be2c62a6e55 = L.marker(
[26.701961868442705, 50.0671339415438],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_a90d9f889461a1257681319675514dea = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6ab1a13f7e7d1d96c4510853a1126c6b = L.popup({
"maxWidth": 320,
});
var html_c17b3baeda7e89a448497c9add57a11e = $(`<div id="html_c17b3baeda7e89a448497c9add57a11e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة جزر اسيا المحدودة<br> <b>الرقم الموحد:</b> 7006883941<br> <b>السجل التجاري:</b> 2066003991<br> <b>الحي:</b> الاندلس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.701961868442705,50.0671339415438" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6ab1a13f7e7d1d96c4510853a1126c6b.setContent(html_c17b3baeda7e89a448497c9add57a11e);
marker_d5694e844078525658d20be2c62a6e55.bindPopup(popup_6ab1a13f7e7d1d96c4510853a1126c6b)
;
marker_d5694e844078525658d20be2c62a6e55.setIcon(icon_a90d9f889461a1257681319675514dea);
var marker_6da41566e16cf0aeed5ec846f74f6fb8 = L.marker(
[26.7053903, 50.07193043],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_7b21a137df14a5a06245354a7a6e7c56 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bc84c1205e08399b817551d9eec9d6cc = L.popup({
"maxWidth": 320,
});
var html_b867823f58fedceb433aaae65e501295 = $(`<div id="html_b867823f58fedceb433aaae65e501295" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة آي تي اس تيستينغ سيرفيسسز شركة شخص واحد<br> <b>الرقم الموحد:</b> 7004916925<br> <b>السجل التجاري:</b> 2066611726<br> <b>الحي:</b> الاندلس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7053903,50.07193043" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bc84c1205e08399b817551d9eec9d6cc.setContent(html_b867823f58fedceb433aaae65e501295);
marker_6da41566e16cf0aeed5ec846f74f6fb8.bindPopup(popup_bc84c1205e08399b817551d9eec9d6cc)
;
marker_6da41566e16cf0aeed5ec846f74f6fb8.setIcon(icon_7b21a137df14a5a06245354a7a6e7c56);
var marker_a26bba34481ea4e000d0936f9c5b61cf = L.marker(
[26.70624974, 50.07431724],
{
}
).addTo(map_fa8eee646c2eedde8fb19d24e1668537);
var icon_85e79f1e7d00ffd0f3b9737066740c19 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_28f5be0c29a9a2bb03ef8f57eabf6ddc = L.popup({
"maxWidth": 320,
});
var html_f7213bc1fe06535961024c7f9d45b3a2 = $(`<div id="html_f7213bc1fe06535961024c7f9d45b3a2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أحمد مشعان الشمري وشركاه للتجارة<br> <b>الرقم الموحد:</b> 7010459720<br> <b>السجل التجاري:</b> 2066002108<br> <b>الحي:</b> الاندلس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.70624974,50.07431724" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_28f5be0c29a9a2bb03ef8f57eabf6ddc.setContent(html_f7213bc1fe06535961024c7f9d45b3a2);
marker_a26bba34481ea4e000d0936f9c5b61cf.bindPopup(popup_28f5be0c29a9a2bb03ef8f57eabf6ddc)
;
marker_a26bba34481ea4e000d0936f9c5b61cf.setIcon(icon_85e79f1e7d00ffd0f3b9737066740c19);
</script>
</html> |