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 | <!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_2c80ecda256df11d196b95feb0fda62b {
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_34" onclick="
var panel = document.getElementById('stats_34');
var btn = document.getElementById('btn_stats_34');
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_34" 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;
">زينب جعفر بن محمد آل ربح - 34</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 98</div>
<div><b>عدد الحارات:</b> 24</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• الجميمة: 13</div><div>• الاوجام: 12</div><div>• ج19: 10</div><div>• الثريا: 10</div><div>• حزم: 8</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_34_زينب_جعفر_بن_محمد_آل_ربح.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;">(76)</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;">(22)</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_2c80ecda256df11d196b95feb0fda62b" ></div>
</body>
<script>
var map_2c80ecda256df11d196b95feb0fda62b = L.map(
"map_2c80ecda256df11d196b95feb0fda62b",
{
center: [26.594269887211638, 49.9595500282465],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_325001d6f6669c62d024e0de8bd9cc2e = 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_325001d6f6669c62d024e0de8bd9cc2e.addTo(map_2c80ecda256df11d196b95feb0fda62b);
var tile_layer_b770d779a868f8be2c9270c4fe3780e2 = 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_b770d779a868f8be2c9270c4fe3780e2.addTo(map_2c80ecda256df11d196b95feb0fda62b);
var tile_layer_d79954a98e27f6867fbd55711454463d = 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_d79954a98e27f6867fbd55711454463d.addTo(map_2c80ecda256df11d196b95feb0fda62b);
var locate_control_77b27a0c04745face147d42f42d147b0 = L.control.locate(
{}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var marker_d86a4861cfae96c33caf7b01973fae7a = L.marker(
[26.66532699, 49.84900565],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_7809fbe8249a1620f356ab5fab87bccf = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_571a8e531e1fcdbf5cb3ecc0b8d2c4ab = L.popup({
"maxWidth": 320,
});
var html_ee1afc0d30afbecc693a837b6e9e3f00 = $(`<div id="html_ee1afc0d30afbecc693a837b6e9e3f00" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أبناء عبدالوهاب منصور المعلم القابضة<br> <b>الرقم الموحد:</b> 7003013872<br> <b>السجل التجاري:</b> 2050109210<br> <b>الحي:</b> ابومعن<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.66532699,49.84900565" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_571a8e531e1fcdbf5cb3ecc0b8d2c4ab.setContent(html_ee1afc0d30afbecc693a837b6e9e3f00);
marker_d86a4861cfae96c33caf7b01973fae7a.bindPopup(popup_571a8e531e1fcdbf5cb3ecc0b8d2c4ab)
;
marker_d86a4861cfae96c33caf7b01973fae7a.setIcon(icon_7809fbe8249a1620f356ab5fab87bccf);
var marker_1411c970257cae5416350723be588c7b = L.marker(
[26.657991537468096, 49.807396922685],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_142586b1ee0098a15f6971cf2e948121 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bc413747b5d64ec4841a6c2ac96401b7 = L.popup({
"maxWidth": 320,
});
var html_e8d973df46d9ab8b580d27ccf5baa260 = $(`<div id="html_e8d973df46d9ab8b580d27ccf5baa260" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة القمة الاولى للنقليات شركة شخص واحد<br> <b>الرقم الموحد:</b> 7013459669<br> <b>السجل التجاري:</b> 2063016267<br> <b>الحي:</b> ابومعن<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.657991537468096,49.807396922685" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bc413747b5d64ec4841a6c2ac96401b7.setContent(html_e8d973df46d9ab8b580d27ccf5baa260);
marker_1411c970257cae5416350723be588c7b.bindPopup(popup_bc413747b5d64ec4841a6c2ac96401b7)
;
marker_1411c970257cae5416350723be588c7b.setIcon(icon_142586b1ee0098a15f6971cf2e948121);
var marker_a57448a0de0306246db49a47d0d80f9b = L.marker(
[26.591552024470047, 49.9372562070822],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_c1cf9c7f6aac359746953e0b758ce284 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_50f0d54c6afb17e2d3d84316288f09d3 = L.popup({
"maxWidth": 320,
});
var html_c93d758879ea7a3eda70cee0f3b73fbc = $(`<div id="html_c93d758879ea7a3eda70cee0f3b73fbc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عبدالعزيز سعيد المحروس التجارية<br> <b>الرقم الموحد:</b> 7003752529<br> <b>السجل التجاري:</b> 2063034051<br> <b>الحي:</b> الخترشيه<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.591552024470047,49.9372562070822" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_50f0d54c6afb17e2d3d84316288f09d3.setContent(html_c93d758879ea7a3eda70cee0f3b73fbc);
marker_a57448a0de0306246db49a47d0d80f9b.bindPopup(popup_50f0d54c6afb17e2d3d84316288f09d3)
;
marker_a57448a0de0306246db49a47d0d80f9b.setIcon(icon_c1cf9c7f6aac359746953e0b758ce284);
var marker_d957e62e7c95bd49feee1bed132b40d1 = L.marker(
[26.6272514630001, 49.912146293],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_be58c998da37bc1086a2b8a5577136ae = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4fb2dc1ddddebe9d883ea7f8b7f65e19 = L.popup({
"maxWidth": 320,
});
var html_acd9537a22bf1513b5f4c5531f75dde9 = $(`<div id="html_acd9537a22bf1513b5f4c5531f75dde9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ناصر سالم آل حيدر وشريكة للمقاولات عامة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001383046<br> <b>السجل التجاري:</b> 2063605934<br> <b>الحي:</b> الخترشيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.6272514630001,49.912146293" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4fb2dc1ddddebe9d883ea7f8b7f65e19.setContent(html_acd9537a22bf1513b5f4c5531f75dde9);
marker_d957e62e7c95bd49feee1bed132b40d1.bindPopup(popup_4fb2dc1ddddebe9d883ea7f8b7f65e19)
;
marker_d957e62e7c95bd49feee1bed132b40d1.setIcon(icon_be58c998da37bc1086a2b8a5577136ae);
var marker_0d2889143a85265bd9ad3c0d11391f96 = L.marker(
[26.6262232, 49.82409026],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_85f72ee63ade87b917e5c337aac602f6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_94b7d763e760bafbab7ccd87ce69a414 = L.popup({
"maxWidth": 320,
});
var html_6a2e55b5eda1d71f6fabbf084b7416c5 = $(`<div id="html_6a2e55b5eda1d71f6fabbf084b7416c5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> الشركة المتكاملة اللوجستية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7032150422<br> <b>السجل التجاري:</b> 2051245072<br> <b>الحي:</b> الرويحه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.6262232,49.82409026" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_94b7d763e760bafbab7ccd87ce69a414.setContent(html_6a2e55b5eda1d71f6fabbf084b7416c5);
marker_0d2889143a85265bd9ad3c0d11391f96.bindPopup(popup_94b7d763e760bafbab7ccd87ce69a414)
;
marker_0d2889143a85265bd9ad3c0d11391f96.setIcon(icon_85f72ee63ade87b917e5c337aac602f6);
var marker_b24432516690d1b26d492b53295c80ff = L.marker(
[26.74301318, 49.87655327],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_a9d9023c69a678e8b2eb5ca91becd6dc = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5503554c14192028cfe8a82769f3041c = L.popup({
"maxWidth": 320,
});
var html_f5d436cd831513869ff938c13acbfe21 = $(`<div id="html_f5d436cd831513869ff938c13acbfe21" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة محمد سالم السويدي للمعدات والنقل شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001405229<br> <b>السجل التجاري:</b> 2066001781<br> <b>الحي:</b> مزارع الكواكب ومجموعه مزارع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.74301318,49.87655327" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5503554c14192028cfe8a82769f3041c.setContent(html_f5d436cd831513869ff938c13acbfe21);
marker_b24432516690d1b26d492b53295c80ff.bindPopup(popup_5503554c14192028cfe8a82769f3041c)
;
marker_b24432516690d1b26d492b53295c80ff.setIcon(icon_a9d9023c69a678e8b2eb5ca91becd6dc);
var marker_f9aacce06bcaa2562ecb50b589ad20c7 = L.marker(
[26.7256652648402, 49.8838386511585],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_173dfe90936003979e092a3e5797e6b7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1c8fa4c86733bd92ad1c6802b64ec73b = L.popup({
"maxWidth": 320,
});
var html_ec61ae1a0f021d1971fc0f200ffd3759 = $(`<div id="html_ec61ae1a0f021d1971fc0f200ffd3759" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة اعمار الشاطى للصناعة<br> <b>الرقم الموحد:</b> 7001761654<br> <b>السجل التجاري:</b> 2063023120<br> <b>الحي:</b> مزارع الكواكب ومجموعه مزارع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.7256652648402,49.8838386511585" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1c8fa4c86733bd92ad1c6802b64ec73b.setContent(html_ec61ae1a0f021d1971fc0f200ffd3759);
marker_f9aacce06bcaa2562ecb50b589ad20c7.bindPopup(popup_1c8fa4c86733bd92ad1c6802b64ec73b)
;
marker_f9aacce06bcaa2562ecb50b589ad20c7.setIcon(icon_173dfe90936003979e092a3e5797e6b7);
var marker_09a1cbbc6efeebffe3dcd8e036394536 = L.marker(
[26.6625699, 49.80161572],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_723a14d1da9eb990e019da0a2f600e5d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_57c5cd06336f1fda6c749da928110db5 = L.popup({
"maxWidth": 320,
});
var html_2a4c3dedec39ebb93a1a529ac399a8e9 = $(`<div id="html_2a4c3dedec39ebb93a1a529ac399a8e9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عبر البقاع للنقليات<br> <b>الرقم الموحد:</b> 7031044832<br> <b>السجل التجاري:</b> 2053122236<br> <b>الحي:</b> مزارع مقله<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.6625699,49.80161572" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_57c5cd06336f1fda6c749da928110db5.setContent(html_2a4c3dedec39ebb93a1a529ac399a8e9);
marker_09a1cbbc6efeebffe3dcd8e036394536.bindPopup(popup_57c5cd06336f1fda6c749da928110db5)
;
marker_09a1cbbc6efeebffe3dcd8e036394536.setIcon(icon_723a14d1da9eb990e019da0a2f600e5d);
var marker_0c6d7ffe97c397d7f4ea7b96f28ca2be = L.marker(
[26.5610206898695, 49.9450966666198],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_1aca7167f2c8dd042d02c701d7baa64e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8f7302c92c38df7336d6f3bc38049cbb = L.popup({
"maxWidth": 320,
});
var html_09640d3d438395057cab91699fff11b7 = $(`<div id="html_09640d3d438395057cab91699fff11b7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة نبع الصحراء للتشغيل والصيانة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7005701276<br> <b>السجل التجاري:</b> 2050121433<br> <b>الحي:</b> الاوجام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5610206898695,49.9450966666198" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8f7302c92c38df7336d6f3bc38049cbb.setContent(html_09640d3d438395057cab91699fff11b7);
marker_0c6d7ffe97c397d7f4ea7b96f28ca2be.bindPopup(popup_8f7302c92c38df7336d6f3bc38049cbb)
;
marker_0c6d7ffe97c397d7f4ea7b96f28ca2be.setIcon(icon_1aca7167f2c8dd042d02c701d7baa64e);
var marker_b2338ff103ba0c9f92d4e3ef5245dc8f = L.marker(
[26.57148871, 49.94609351],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_77d0367fa7449748eb44fbb2507d425b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4967d9e5fb1eb3358b9c2122827d9259 = L.popup({
"maxWidth": 320,
});
var html_3dde81063391653183033f2f32f2fae4 = $(`<div id="html_3dde81063391653183033f2f32f2fae4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ليل وقمر للمقاولات<br> <b>الرقم الموحد:</b> 7012665282<br> <b>السجل التجاري:</b> 2053014754<br> <b>الحي:</b> الاوجام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.57148871,49.94609351" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4967d9e5fb1eb3358b9c2122827d9259.setContent(html_3dde81063391653183033f2f32f2fae4);
marker_b2338ff103ba0c9f92d4e3ef5245dc8f.bindPopup(popup_4967d9e5fb1eb3358b9c2122827d9259)
;
marker_b2338ff103ba0c9f92d4e3ef5245dc8f.setIcon(icon_77d0367fa7449748eb44fbb2507d425b);
var marker_6731f078e3cde0086cff1d40a5c9a96c = L.marker(
[26.5664514, 49.94304922],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_fce97ffcd45a78d633ffec2e1e3e3a98 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f4a78b619921f9c06776d0b31a6cbedc = L.popup({
"maxWidth": 320,
});
var html_cc9742ce7bc0ce8f10391ac11275217b = $(`<div id="html_cc9742ce7bc0ce8f10391ac11275217b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة علي منصور آل مرزوق للمقاولات العامة<br> <b>الرقم الموحد:</b> 7012403858<br> <b>السجل التجاري:</b> 2053017658<br> <b>الحي:</b> الاوجام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5664514,49.94304922" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f4a78b619921f9c06776d0b31a6cbedc.setContent(html_cc9742ce7bc0ce8f10391ac11275217b);
marker_6731f078e3cde0086cff1d40a5c9a96c.bindPopup(popup_f4a78b619921f9c06776d0b31a6cbedc)
;
marker_6731f078e3cde0086cff1d40a5c9a96c.setIcon(icon_fce97ffcd45a78d633ffec2e1e3e3a98);
var marker_ce29cb863581d4f5d1ef2882d098fdda = L.marker(
[26.548968765, 49.940555096],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_aad00bb4e75ba13a861788840c0a14a6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1244292fde1422766bbfb30c5cb80cdd = L.popup({
"maxWidth": 320,
});
var html_7bdb4225563882c9022c9bf5528aea63 = $(`<div id="html_7bdb4225563882c9022c9bf5528aea63" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> ملحمة احمد علي الحريري التجارية<br> <b>الرقم الموحد:</b> 7002369408<br> <b>السجل التجاري:</b> 2050207168<br> <b>الحي:</b> الاوجام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.548968765,49.940555096" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1244292fde1422766bbfb30c5cb80cdd.setContent(html_7bdb4225563882c9022c9bf5528aea63);
marker_ce29cb863581d4f5d1ef2882d098fdda.bindPopup(popup_1244292fde1422766bbfb30c5cb80cdd)
;
marker_ce29cb863581d4f5d1ef2882d098fdda.setIcon(icon_aad00bb4e75ba13a861788840c0a14a6);
var marker_abd2af0aec73d0bca036578040552212 = L.marker(
[26.57156807, 49.94606151],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_05e63dbd4b9d3e0fcfad773433e45c9c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f8b6285026d21c9ebbe0621ea2f8dff1 = L.popup({
"maxWidth": 320,
});
var html_aeb0ffe627c38c706c97cd69ce72cbe3 = $(`<div id="html_aeb0ffe627c38c706c97cd69ce72cbe3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة صباح الخيرات للمقاولات العامة<br> <b>الرقم الموحد:</b> 7014948421<br> <b>السجل التجاري:</b> 2053024877<br> <b>الحي:</b> الاوجام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.57156807,49.94606151" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f8b6285026d21c9ebbe0621ea2f8dff1.setContent(html_aeb0ffe627c38c706c97cd69ce72cbe3);
marker_abd2af0aec73d0bca036578040552212.bindPopup(popup_f8b6285026d21c9ebbe0621ea2f8dff1)
;
marker_abd2af0aec73d0bca036578040552212.setIcon(icon_05e63dbd4b9d3e0fcfad773433e45c9c);
var marker_c09d0d55aac453c496ea07f8391f5652 = L.marker(
[26.57143243, 49.94609631],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_011282b1d4b0481acd6a9668c67c3b78 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0eda90b185817b2886915237aaa957bf = L.popup({
"maxWidth": 320,
});
var html_3bd1350385f127369f6579733b86753d = $(`<div id="html_3bd1350385f127369f6579733b86753d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة نور وصباح للتجارة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7028306301<br> <b>السجل التجاري:</b> 2053120808<br> <b>الحي:</b> الاوجام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.57143243,49.94609631" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0eda90b185817b2886915237aaa957bf.setContent(html_3bd1350385f127369f6579733b86753d);
marker_c09d0d55aac453c496ea07f8391f5652.bindPopup(popup_0eda90b185817b2886915237aaa957bf)
;
marker_c09d0d55aac453c496ea07f8391f5652.setIcon(icon_011282b1d4b0481acd6a9668c67c3b78);
var marker_895dcdc2e7af0ba62ed753132436ba44 = L.marker(
[26.57157522, 49.94612736],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_b1a8eb5c2691078c93b90a84b0d98b73 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ce4af70b2e7663cf20e731f285f74206 = L.popup({
"maxWidth": 320,
});
var html_7ad597bafc356a3589b09eb1e1717be5 = $(`<div id="html_7ad597bafc356a3589b09eb1e1717be5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة صبح وخير للمقاولات<br> <b>الرقم الموحد:</b> 7009167219<br> <b>السجل التجاري:</b> 2050105039<br> <b>الحي:</b> الاوجام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.57157522,49.94612736" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ce4af70b2e7663cf20e731f285f74206.setContent(html_7ad597bafc356a3589b09eb1e1717be5);
marker_895dcdc2e7af0ba62ed753132436ba44.bindPopup(popup_ce4af70b2e7663cf20e731f285f74206)
;
marker_895dcdc2e7af0ba62ed753132436ba44.setIcon(icon_b1a8eb5c2691078c93b90a84b0d98b73);
var marker_cdc25bde2158d64cba28d36819627bf5 = L.marker(
[26.55721551, 49.94648702],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_3a16cdca13001e0c53bb0c16f9f514d3 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_da079faebdbc7b9c3569129d00335ff7 = L.popup({
"maxWidth": 320,
});
var html_081ab07c91e95541e1d2e35bc5feb377 = $(`<div id="html_081ab07c91e95541e1d2e35bc5feb377" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة حسين قاسم بن علي آل مطر<br> <b>الرقم الموحد:</b> 7017855037<br> <b>السجل التجاري:</b> 2053116803<br> <b>الحي:</b> الاوجام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.55721551,49.94648702" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_da079faebdbc7b9c3569129d00335ff7.setContent(html_081ab07c91e95541e1d2e35bc5feb377);
marker_cdc25bde2158d64cba28d36819627bf5.bindPopup(popup_da079faebdbc7b9c3569129d00335ff7)
;
marker_cdc25bde2158d64cba28d36819627bf5.setIcon(icon_3a16cdca13001e0c53bb0c16f9f514d3);
var marker_5bb392a176cedf6f068f2e15920e1e44 = L.marker(
[26.54884441, 49.95300506],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_9b43458a34fce490ce8adf555a9f0e84 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_58dbf380fd071ec2b8c3aeba4dee7a67 = L.popup({
"maxWidth": 320,
});
var html_9bc8d81e440543f5794fbc532b6ad7d4 = $(`<div id="html_9bc8d81e440543f5794fbc532b6ad7d4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع الحداد للطابوق والخرسانه الجاهزه<br> <b>الرقم الموحد:</b> 7013506113<br> <b>السجل التجاري:</b> 2053008608<br> <b>الحي:</b> الاوجام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.54884441,49.95300506" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_58dbf380fd071ec2b8c3aeba4dee7a67.setContent(html_9bc8d81e440543f5794fbc532b6ad7d4);
marker_5bb392a176cedf6f068f2e15920e1e44.bindPopup(popup_58dbf380fd071ec2b8c3aeba4dee7a67)
;
marker_5bb392a176cedf6f068f2e15920e1e44.setIcon(icon_9b43458a34fce490ce8adf555a9f0e84);
var marker_caba9ea20acd6079baab0a4cbe6fcd9f = L.marker(
[26.55961417, 49.94544191],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_033203fed0edfbb3d978920b2fe7e563 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_11d2044e5bd4aef1a32d0bd460a5d718 = L.popup({
"maxWidth": 320,
});
var html_7fdf43cb999ac033de4608330307f976 = $(`<div id="html_7fdf43cb999ac033de4608330307f976" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة اللؤلؤة للخدمات اللوجستية<br> <b>الرقم الموحد:</b> 7005023689<br> <b>السجل التجاري:</b> 2063605971<br> <b>الحي:</b> الاوجام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.55961417,49.94544191" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_11d2044e5bd4aef1a32d0bd460a5d718.setContent(html_7fdf43cb999ac033de4608330307f976);
marker_caba9ea20acd6079baab0a4cbe6fcd9f.bindPopup(popup_11d2044e5bd4aef1a32d0bd460a5d718)
;
marker_caba9ea20acd6079baab0a4cbe6fcd9f.setIcon(icon_033203fed0edfbb3d978920b2fe7e563);
var marker_c3bdc3c66d4b6c0764450b7593bc425e = L.marker(
[26.552274435535505, 49.9456373076632],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_cb9a9dce750748a06ea295777f72cf81 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2f0a7bd01850e897391301935b31c288 = L.popup({
"maxWidth": 320,
});
var html_0d2abe667fad9aac284000142084aab1 = $(`<div id="html_0d2abe667fad9aac284000142084aab1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> استديو قمرة الغدير للتصوير<br> <b>الرقم الموحد:</b> 7011818742<br> <b>السجل التجاري:</b> 2053030430<br> <b>الحي:</b> الاوجام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.552274435535505,49.9456373076632" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2f0a7bd01850e897391301935b31c288.setContent(html_0d2abe667fad9aac284000142084aab1);
marker_c3bdc3c66d4b6c0764450b7593bc425e.bindPopup(popup_2f0a7bd01850e897391301935b31c288)
;
marker_c3bdc3c66d4b6c0764450b7593bc425e.setIcon(icon_cb9a9dce750748a06ea295777f72cf81);
var marker_5f681b9e631c6921ae78ad42b4b0643a = L.marker(
[26.56448324, 49.94244488],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_5331096c626650e6ab25bd64c85159dc = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_173a628a77b208bdfd32f797a58aa6e8 = L.popup({
"maxWidth": 320,
});
var html_f164a48f7c6d65b0c01853463fc1d3d0 = $(`<div id="html_f164a48f7c6d65b0c01853463fc1d3d0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أحمد ومتعب سعود السنان وشركاهم للمقاولات<br> <b>الرقم الموحد:</b> 7001612436<br> <b>السجل التجاري:</b> 2053010773<br> <b>الحي:</b> الاوجام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.56448324,49.94244488" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_173a628a77b208bdfd32f797a58aa6e8.setContent(html_f164a48f7c6d65b0c01853463fc1d3d0);
marker_5f681b9e631c6921ae78ad42b4b0643a.bindPopup(popup_173a628a77b208bdfd32f797a58aa6e8)
;
marker_5f681b9e631c6921ae78ad42b4b0643a.setIcon(icon_5331096c626650e6ab25bd64c85159dc);
var marker_e5c2b17f72d558c1c340ee91619f556f = L.marker(
[26.6355128498722, 49.9131914089722],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_62c1b94616ab666afbb887c288a98898 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fde7682b3bc2be8ff7d74cc3a687862c = L.popup({
"maxWidth": 320,
});
var html_05185116cf2452020c46e66bb2b6f79b = $(`<div id="html_05185116cf2452020c46e66bb2b6f79b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أنيار الشرق الأوسط للتجارة والمقاولات شركة شخص واحد<br> <b>الرقم الموحد:</b> 7006263318<br> <b>السجل التجاري:</b> 2063606079<br> <b>الحي:</b> الحزم<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.6355128498722,49.9131914089722" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fde7682b3bc2be8ff7d74cc3a687862c.setContent(html_05185116cf2452020c46e66bb2b6f79b);
marker_e5c2b17f72d558c1c340ee91619f556f.bindPopup(popup_fde7682b3bc2be8ff7d74cc3a687862c)
;
marker_e5c2b17f72d558c1c340ee91619f556f.setIcon(icon_62c1b94616ab666afbb887c288a98898);
var marker_c00783e48cad345ba7420b935e67a871 = L.marker(
[26.639360682821646, 49.9201302247892],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_e0a69d6cb3a3e8c0b0ccec4007f88172 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_074c47830e1b2b02605413a4ea5f218b = L.popup({
"maxWidth": 320,
});
var html_5ac32e909dcf614d095f6d417629354b = $(`<div id="html_5ac32e909dcf614d095f6d417629354b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ساره سعد عمار ال سالم للمقاولات العامة<br> <b>الرقم الموحد:</b> 7043476790<br> <b>السجل التجاري:</b> 5950150778<br> <b>الحي:</b> الحزم<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.639360682821646,49.9201302247892" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_074c47830e1b2b02605413a4ea5f218b.setContent(html_5ac32e909dcf614d095f6d417629354b);
marker_c00783e48cad345ba7420b935e67a871.bindPopup(popup_074c47830e1b2b02605413a4ea5f218b)
;
marker_c00783e48cad345ba7420b935e67a871.setIcon(icon_e0a69d6cb3a3e8c0b0ccec4007f88172);
var marker_046a9f0092cf5fad767ff2731bc7bb2d = L.marker(
[26.63577335, 49.9143108],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_5a137583a559930b7ada3511e12ca7c7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_eb728d0282714a0fe90fe981519659f0 = L.popup({
"maxWidth": 320,
});
var html_d82bfb017070eebcae2ebb5d464613ed = $(`<div id="html_d82bfb017070eebcae2ebb5d464613ed" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مجمع نهج الشفاء الطبي<br> <b>الرقم الموحد:</b> 7001794309<br> <b>السجل التجاري:</b> 2053021099<br> <b>الحي:</b> الحزم<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.63577335,49.9143108" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_eb728d0282714a0fe90fe981519659f0.setContent(html_d82bfb017070eebcae2ebb5d464613ed);
marker_046a9f0092cf5fad767ff2731bc7bb2d.bindPopup(popup_eb728d0282714a0fe90fe981519659f0)
;
marker_046a9f0092cf5fad767ff2731bc7bb2d.setIcon(icon_5a137583a559930b7ada3511e12ca7c7);
var marker_05ad0aab8fdbd9e204774b67fbab1e14 = L.marker(
[26.58065318, 49.99240544],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_f973dd99a308ef4173c92643e9a17b3e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_02caa23cffc1ff8dae63a5ca68f24562 = L.popup({
"maxWidth": 320,
});
var html_2ecefb01a11af10510d4454bb46a0e79 = $(`<div id="html_2ecefb01a11af10510d4454bb46a0e79" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عبدالله بن علي آل عبدالعال للمقاولات عامة<br> <b>الرقم الموحد:</b> 7006466671<br> <b>السجل التجاري:</b> 2053018891<br> <b>الحي:</b> القديح<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.58065318,49.99240544" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_02caa23cffc1ff8dae63a5ca68f24562.setContent(html_2ecefb01a11af10510d4454bb46a0e79);
marker_05ad0aab8fdbd9e204774b67fbab1e14.bindPopup(popup_02caa23cffc1ff8dae63a5ca68f24562)
;
marker_05ad0aab8fdbd9e204774b67fbab1e14.setIcon(icon_f973dd99a308ef4173c92643e9a17b3e);
var marker_cbc7b53ebd0bec806e49bce5068eedc2 = L.marker(
[26.5641481794414, 49.9841465261348],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_7c2d41d95a9ff40a0352d214157fef6a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_40cacb994c5a95751467b152a7fc1e15 = L.popup({
"maxWidth": 320,
});
var html_a77cd844ac3c8c9b44ade4b84e87edc3 = $(`<div id="html_a77cd844ac3c8c9b44ade4b84e87edc3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة السيف الشرقي شركة الشخص الواحد شركة شخص واحد<br> <b>الرقم الموحد:</b> 7011008740<br> <b>السجل التجاري:</b> 2053032110<br> <b>الحي:</b> القديح<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5641481794414,49.9841465261348" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_40cacb994c5a95751467b152a7fc1e15.setContent(html_a77cd844ac3c8c9b44ade4b84e87edc3);
marker_cbc7b53ebd0bec806e49bce5068eedc2.bindPopup(popup_40cacb994c5a95751467b152a7fc1e15)
;
marker_cbc7b53ebd0bec806e49bce5068eedc2.setIcon(icon_7c2d41d95a9ff40a0352d214157fef6a);
var marker_8a027b0381f982c8f6f2fddd49d88ada = L.marker(
[26.57135504, 49.98733503],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_5206de1ff5e65c03fc11775d0d38ccc8 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d444781f9112505ca53f2adf2b2d7273 = L.popup({
"maxWidth": 320,
});
var html_050b7824462bffcb8e1072dec3f85309 = $(`<div id="html_050b7824462bffcb8e1072dec3f85309" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة زهراء احمد بن احمد آل تريك للمقاولات<br> <b>الرقم الموحد:</b> 7004351404<br> <b>السجل التجاري:</b> 2050116591<br> <b>الحي:</b> القديح<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.57135504,49.98733503" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d444781f9112505ca53f2adf2b2d7273.setContent(html_050b7824462bffcb8e1072dec3f85309);
marker_8a027b0381f982c8f6f2fddd49d88ada.bindPopup(popup_d444781f9112505ca53f2adf2b2d7273)
;
marker_8a027b0381f982c8f6f2fddd49d88ada.setIcon(icon_5206de1ff5e65c03fc11775d0d38ccc8);
var marker_3cabdb6de849d637905c1a9b0f416a7b = L.marker(
[26.57262525, 49.99071303],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_a454c9bfd40b3015312130e7b0ea9d51 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a21c9d26cd19de081e574b6d34efa3e2 = L.popup({
"maxWidth": 320,
});
var html_07e71962f9d7bc7b4c4c21a86459f7a7 = $(`<div id="html_07e71962f9d7bc7b4c4c21a86459f7a7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة نور مصر للتعبئة والتغليف<br> <b>الرقم الموحد:</b> 7014950732<br> <b>السجل التجاري:</b> 2050125625<br> <b>الحي:</b> القديح<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.57262525,49.99071303" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a21c9d26cd19de081e574b6d34efa3e2.setContent(html_07e71962f9d7bc7b4c4c21a86459f7a7);
marker_3cabdb6de849d637905c1a9b0f416a7b.bindPopup(popup_a21c9d26cd19de081e574b6d34efa3e2)
;
marker_3cabdb6de849d637905c1a9b0f416a7b.setIcon(icon_a454c9bfd40b3015312130e7b0ea9d51);
var marker_69a40890ce1132f94c06f0fd68ef06f7 = L.marker(
[26.570179706823502, 49.98204162254876],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_5dfbcb244301eb32ecb50623bd8bbbe0 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_417a950e9183190e3332bfdf5c1d9df4 = L.popup({
"maxWidth": 320,
});
var html_74ac6d157d7b06d46526e634bdd0831d = $(`<div id="html_74ac6d157d7b06d46526e634bdd0831d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة موسى بن جعفر بن محمد المطاوعه لتأجير المعدات الثقيلة<br> <b>الرقم الموحد:</b> 7027887558<br> <b>السجل التجاري:</b> 2053120556<br> <b>الحي:</b> القديح<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.570179706823502,49.98204162254876" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_417a950e9183190e3332bfdf5c1d9df4.setContent(html_74ac6d157d7b06d46526e634bdd0831d);
marker_69a40890ce1132f94c06f0fd68ef06f7.bindPopup(popup_417a950e9183190e3332bfdf5c1d9df4)
;
marker_69a40890ce1132f94c06f0fd68ef06f7.setIcon(icon_5dfbcb244301eb32ecb50623bd8bbbe0);
var marker_4e8cebd8b0a9f01d1f284273f4f32ce0 = L.marker(
[26.564478067473026, 49.98882871095509],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_9e25455d4570fdecdaf761ddcbd1e96a = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3d3b219b11dcfa7437702ecab605edf0 = L.popup({
"maxWidth": 320,
});
var html_46edac17003216b70f14601f12cf0149 = $(`<div id="html_46edac17003216b70f14601f12cf0149" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة شروق النيل<br> <b>الرقم الموحد:</b> 7021478537<br> <b>السجل التجاري:</b> 2050142250<br> <b>الحي:</b> القديح<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.564478067473026,49.98882871095509" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3d3b219b11dcfa7437702ecab605edf0.setContent(html_46edac17003216b70f14601f12cf0149);
marker_4e8cebd8b0a9f01d1f284273f4f32ce0.bindPopup(popup_3d3b219b11dcfa7437702ecab605edf0)
;
marker_4e8cebd8b0a9f01d1f284273f4f32ce0.setIcon(icon_9e25455d4570fdecdaf761ddcbd1e96a);
var marker_142ff5ead33331706067833e7e826db1 = L.marker(
[26.5644866, 49.98884492],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_3bd72af0c93db64e18b04f81740957c1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_295a0c2cdb8acc0a938587d87925dcef = L.popup({
"maxWidth": 320,
});
var html_fc66d4b1f7bb73eebadae3a22aa000a1 = $(`<div id="html_fc66d4b1f7bb73eebadae3a22aa000a1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عبدالعزيز احمد آل عبدالعزيز للمقاولات<br> <b>الرقم الموحد:</b> 7007300192<br> <b>السجل التجاري:</b> 2050100385<br> <b>الحي:</b> القديح<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5644866,49.98884492" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_295a0c2cdb8acc0a938587d87925dcef.setContent(html_fc66d4b1f7bb73eebadae3a22aa000a1);
marker_142ff5ead33331706067833e7e826db1.bindPopup(popup_295a0c2cdb8acc0a938587d87925dcef)
;
marker_142ff5ead33331706067833e7e826db1.setIcon(icon_3bd72af0c93db64e18b04f81740957c1);
var marker_7303c9d7164f59173faac9b7ffff90e2 = L.marker(
[26.56540682, 49.9810292],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_a720b9288f7177ff267dda527ac73fdf = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e29dc1ceaadaecf6bfc89880172c9113 = L.popup({
"maxWidth": 320,
});
var html_eb96f4c922e7f65a879f6d2dad949217 = $(`<div id="html_eb96f4c922e7f65a879f6d2dad949217" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> وكالة عقيل عبدالكريم بن ابراهيم الصفار للسفر و السياحة<br> <b>الرقم الموحد:</b> 7009015236<br> <b>السجل التجاري:</b> 2053114209<br> <b>الحي:</b> القديح<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.56540682,49.9810292" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e29dc1ceaadaecf6bfc89880172c9113.setContent(html_eb96f4c922e7f65a879f6d2dad949217);
marker_7303c9d7164f59173faac9b7ffff90e2.bindPopup(popup_e29dc1ceaadaecf6bfc89880172c9113)
;
marker_7303c9d7164f59173faac9b7ffff90e2.setIcon(icon_a720b9288f7177ff267dda527ac73fdf);
var marker_4a13f8e44922c812ab2b66f9ac56e057 = L.marker(
[26.48596757, 49.98757355500004],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_d0490b3ed6fe6e9fea93c42e3c0e12ab = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b0132ac103dfa6d7500869b07d3417c0 = L.popup({
"maxWidth": 320,
});
var html_bb17eb3da29eb4a5d17af7bff43ff269 = $(`<div id="html_bb17eb3da29eb4a5d17af7bff43ff269" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة هاليبورتون انيرجي سيرفيسيز انك<br> <b>الرقم الموحد:</b> 7000643986<br> <b>السجل التجاري:</b> 2051005390<br> <b>الحي:</b> ج19<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.48596757,49.98757355500004" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b0132ac103dfa6d7500869b07d3417c0.setContent(html_bb17eb3da29eb4a5d17af7bff43ff269);
marker_4a13f8e44922c812ab2b66f9ac56e057.bindPopup(popup_b0132ac103dfa6d7500869b07d3417c0)
;
marker_4a13f8e44922c812ab2b66f9ac56e057.setIcon(icon_d0490b3ed6fe6e9fea93c42e3c0e12ab);
var marker_9abdda105856854e244209c80645c5e9 = L.marker(
[26.48736731, 49.98638392],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_6adc727ddf7f5c6aa3ab95bf2dfb0308 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1b630b3a70310dfae6bfefc32d129f43 = L.popup({
"maxWidth": 320,
});
var html_49bde138fc7a632fc81389b8fbae985e = $(`<div id="html_49bde138fc7a632fc81389b8fbae985e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة هاليبورتون السعودية انديستريز سيرفسز المحدودة<br> <b>الرقم الموحد:</b> 7001396022<br> <b>السجل التجاري:</b> 2052000745<br> <b>الحي:</b> ج19<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.48736731,49.98638392" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1b630b3a70310dfae6bfefc32d129f43.setContent(html_49bde138fc7a632fc81389b8fbae985e);
marker_9abdda105856854e244209c80645c5e9.bindPopup(popup_1b630b3a70310dfae6bfefc32d129f43)
;
marker_9abdda105856854e244209c80645c5e9.setIcon(icon_6adc727ddf7f5c6aa3ab95bf2dfb0308);
var marker_af38c188ea6b736637e6f945dcd4088c = L.marker(
[26.5050758, 49.9747261],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_25ad5d81b7bdda53747815098ac7cd4e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_14c41167eb42de72042248ea24f5f30c = L.popup({
"maxWidth": 320,
});
var html_c33646be5633fa6e5963e2a828de19d0 = $(`<div id="html_c33646be5633fa6e5963e2a828de19d0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مبان الحوت للمقاولات العامة<br> <b>الرقم الموحد:</b> 7017500344<br> <b>السجل التجاري:</b> 2050135771<br> <b>الحي:</b> ج19<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5050758,49.9747261" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_14c41167eb42de72042248ea24f5f30c.setContent(html_c33646be5633fa6e5963e2a828de19d0);
marker_af38c188ea6b736637e6f945dcd4088c.bindPopup(popup_14c41167eb42de72042248ea24f5f30c)
;
marker_af38c188ea6b736637e6f945dcd4088c.setIcon(icon_25ad5d81b7bdda53747815098ac7cd4e);
var marker_7678009d11b9dc10210b0a19b2e5cd54 = L.marker(
[26.49502071, 49.95781473],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_ff2a6b1ace17321143f6cf85966a86e1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_560ba6c9731e5e1dc514fff58b171271 = L.popup({
"maxWidth": 320,
});
var html_76d4de291b02f6d00bae4e0aac9119d2 = $(`<div id="html_76d4de291b02f6d00bae4e0aac9119d2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الحصان للمقاولات<br> <b>الرقم الموحد:</b> 7011727026<br> <b>السجل التجاري:</b> 2050004344<br> <b>الحي:</b> ج19<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.49502071,49.95781473" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_560ba6c9731e5e1dc514fff58b171271.setContent(html_76d4de291b02f6d00bae4e0aac9119d2);
marker_7678009d11b9dc10210b0a19b2e5cd54.bindPopup(popup_560ba6c9731e5e1dc514fff58b171271)
;
marker_7678009d11b9dc10210b0a19b2e5cd54.setIcon(icon_ff2a6b1ace17321143f6cf85966a86e1);
var marker_dff6c509f51bb513bfaf847a515a1bc5 = L.marker(
[26.49114716, 49.97757254],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_9aa85943b9668df1944121333ed8984c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_063ad11917e1a7098714f578ac4224c7 = L.popup({
"maxWidth": 320,
});
var html_554940ed0bfd7830ff27e28a3df96896 = $(`<div id="html_554940ed0bfd7830ff27e28a3df96896" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة وجبتي المميزة لتقديم الوجبات<br> <b>الرقم الموحد:</b> 7007767952<br> <b>السجل التجاري:</b> 2063034606<br> <b>الحي:</b> ج19<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.49114716,49.97757254" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_063ad11917e1a7098714f578ac4224c7.setContent(html_554940ed0bfd7830ff27e28a3df96896);
marker_dff6c509f51bb513bfaf847a515a1bc5.bindPopup(popup_063ad11917e1a7098714f578ac4224c7)
;
marker_dff6c509f51bb513bfaf847a515a1bc5.setIcon(icon_9aa85943b9668df1944121333ed8984c);
var marker_57b2b974c4d7d8106c76920ce2fd1b25 = L.marker(
[26.507593415880187, 49.972908176504255],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_43422bde58474ed95dcdd3ff1ad3cf5e = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2e06d8750e3c04d7e9aad6c67f8a0b68 = L.popup({
"maxWidth": 320,
});
var html_6afee9b3db3905880f241fc221121415 = $(`<div id="html_6afee9b3db3905880f241fc221121415" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عبدالكريم احمد ناصر العمار للتجارة<br> <b>الرقم الموحد:</b> 7012805888<br> <b>السجل التجاري:</b> 2053101816<br> <b>الحي:</b> ج19<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.507593415880187,49.972908176504255" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2e06d8750e3c04d7e9aad6c67f8a0b68.setContent(html_6afee9b3db3905880f241fc221121415);
marker_57b2b974c4d7d8106c76920ce2fd1b25.bindPopup(popup_2e06d8750e3c04d7e9aad6c67f8a0b68)
;
marker_57b2b974c4d7d8106c76920ce2fd1b25.setIcon(icon_43422bde58474ed95dcdd3ff1ad3cf5e);
var marker_8f4ed2cb5341ae0f34c188b9de97bc42 = L.marker(
[26.4997338554335, 49.968233100368],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_b04f21ed4d05e695ba5bf440ffa02ee6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_667d0fe7b1bae971aafd57b42ef76230 = L.popup({
"maxWidth": 320,
});
var html_b113c9422bfdcbaf27325e6b08938f94 = $(`<div id="html_b113c9422bfdcbaf27325e6b08938f94" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة نابورس العربية المحدودة<br> <b>الرقم الموحد:</b> 7000017868<br> <b>السجل التجاري:</b> 2051002523<br> <b>الحي:</b> ج19<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.4997338554335,49.968233100368" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_667d0fe7b1bae971aafd57b42ef76230.setContent(html_b113c9422bfdcbaf27325e6b08938f94);
marker_8f4ed2cb5341ae0f34c188b9de97bc42.bindPopup(popup_667d0fe7b1bae971aafd57b42ef76230)
;
marker_8f4ed2cb5341ae0f34c188b9de97bc42.setIcon(icon_b04f21ed4d05e695ba5bf440ffa02ee6);
var marker_1b1e9b562012d8d8996031829e4a681d = L.marker(
[26.504626908422004, 49.973642975091934],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_122d3a2a771d9eefd8836740013777a6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_59178386dfd806ced996ad9c0b04fea9 = L.popup({
"maxWidth": 320,
});
var html_01b3cc5a651436eb0f1e8ac33df57b38 = $(`<div id="html_01b3cc5a651436eb0f1e8ac33df57b38" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة غيوم الدمام للصناعة<br> <b>الرقم الموحد:</b> 7008898681<br> <b>السجل التجاري:</b> 2050124990<br> <b>الحي:</b> ج19<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.504626908422004,49.973642975091934" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_59178386dfd806ced996ad9c0b04fea9.setContent(html_01b3cc5a651436eb0f1e8ac33df57b38);
marker_1b1e9b562012d8d8996031829e4a681d.bindPopup(popup_59178386dfd806ced996ad9c0b04fea9)
;
marker_1b1e9b562012d8d8996031829e4a681d.setIcon(icon_122d3a2a771d9eefd8836740013777a6);
var marker_3c279311ce4386db44e14b4d5c59b641 = L.marker(
[26.4873833042747, 49.9863937742556],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_f9be4dc4cf2721c781a2bb27085454e3 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2080c013d3743065d904f5fc153c27f9 = L.popup({
"maxWidth": 320,
});
var html_146f2ca80c8ce9dc1525f3adde6ca6e4 = $(`<div id="html_146f2ca80c8ce9dc1525f3adde6ca6e4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سبيري صن السعودية المحدودة<br> <b>الرقم الموحد:</b> 7000263231<br> <b>السجل التجاري:</b> 2050059212<br> <b>الحي:</b> ج19<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.4873833042747,49.9863937742556" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2080c013d3743065d904f5fc153c27f9.setContent(html_146f2ca80c8ce9dc1525f3adde6ca6e4);
marker_3c279311ce4386db44e14b4d5c59b641.bindPopup(popup_2080c013d3743065d904f5fc153c27f9)
;
marker_3c279311ce4386db44e14b4d5c59b641.setIcon(icon_f9be4dc4cf2721c781a2bb27085454e3);
var marker_2db569e41eb72eb1cd0d69152ee243a1 = L.marker(
[26.51343947, 49.96555917],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_e8418b8f1105fe1e0676dc38445b4b96 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d3fee58ee8ab8c97240888ab52377371 = L.popup({
"maxWidth": 320,
});
var html_18bdd35608456387722e8058a169c14f = $(`<div id="html_18bdd35608456387722e8058a169c14f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> الشركة الوطنية لتقنية النفط شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001386965<br> <b>السجل التجاري:</b> 2051022374<br> <b>الحي:</b> ج19<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.51343947,49.96555917" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d3fee58ee8ab8c97240888ab52377371.setContent(html_18bdd35608456387722e8058a169c14f);
marker_2db569e41eb72eb1cd0d69152ee243a1.bindPopup(popup_d3fee58ee8ab8c97240888ab52377371)
;
marker_2db569e41eb72eb1cd0d69152ee243a1.setIcon(icon_e8418b8f1105fe1e0676dc38445b4b96);
var marker_501f2a69f6cafe117b49a8fb2a3e7057 = L.marker(
[26.5927743103612, 49.9792412333024],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_e5afbeb72837a09a2026acaeee6ea633 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_03faf84d49d2814492b5cf421b9e03d0 = L.popup({
"maxWidth": 320,
});
var html_c5f94943b4281c4e450a8e6b6cfadfa5 = $(`<div id="html_c5f94943b4281c4e450a8e6b6cfadfa5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة رواسي الانشاء والتطوير<br> <b>الرقم الموحد:</b> 7007141794<br> <b>السجل التجاري:</b> 2053101947<br> <b>الحي:</b> الريف<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.5927743103612,49.9792412333024" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_03faf84d49d2814492b5cf421b9e03d0.setContent(html_c5f94943b4281c4e450a8e6b6cfadfa5);
marker_501f2a69f6cafe117b49a8fb2a3e7057.bindPopup(popup_03faf84d49d2814492b5cf421b9e03d0)
;
marker_501f2a69f6cafe117b49a8fb2a3e7057.setIcon(icon_e5afbeb72837a09a2026acaeee6ea633);
var marker_8fc4529ab1a58a978f86a10c4f3a0cf5 = L.marker(
[26.59182627, 49.97798481],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_e685bbf6331eb00cda17530d6228ef46 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_afbfc4085f1967cf27d53493fea54559 = L.popup({
"maxWidth": 320,
});
var html_ae4f417711fd8a4e14c76e48b8867171 = $(`<div id="html_ae4f417711fd8a4e14c76e48b8867171" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة محمد بن عبدالله بن محمد آل مشيخص<br> <b>الرقم الموحد:</b> 7005735092<br> <b>السجل التجاري:</b> 2050121568<br> <b>الحي:</b> الريف<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.59182627,49.97798481" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_afbfc4085f1967cf27d53493fea54559.setContent(html_ae4f417711fd8a4e14c76e48b8867171);
marker_8fc4529ab1a58a978f86a10c4f3a0cf5.bindPopup(popup_afbfc4085f1967cf27d53493fea54559)
;
marker_8fc4529ab1a58a978f86a10c4f3a0cf5.setIcon(icon_e685bbf6331eb00cda17530d6228ef46);
var marker_2e021a8327344ea23c7f05e1ab30f2d2 = L.marker(
[26.59680568, 49.97965518],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_d893e05277ec2270a8580f7ec05cbbab = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_badc0900e11921d76732cb95f6b68802 = L.popup({
"maxWidth": 320,
});
var html_b688b1516bf3466a6ce41060b0005a58 = $(`<div id="html_b688b1516bf3466a6ce41060b0005a58" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة زكي بن احمد بن علي آل علوي للمقاولات<br> <b>الرقم الموحد:</b> 7004883463<br> <b>السجل التجاري:</b> 2050118764<br> <b>الحي:</b> الريف<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.59680568,49.97965518" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_badc0900e11921d76732cb95f6b68802.setContent(html_b688b1516bf3466a6ce41060b0005a58);
marker_2e021a8327344ea23c7f05e1ab30f2d2.bindPopup(popup_badc0900e11921d76732cb95f6b68802)
;
marker_2e021a8327344ea23c7f05e1ab30f2d2.setIcon(icon_d893e05277ec2270a8580f7ec05cbbab);
var marker_6f6d5b83ca537f3cc0f5a9740bc28532 = L.marker(
[26.60072517, 49.97974548],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_c082c49720b295fc95d99ecdcff43c47 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_11cd84effa3bbcec74826be39638b6ce = L.popup({
"maxWidth": 320,
});
var html_0c8f2d58eb5f22ad3a34eae16a8f23c0 = $(`<div id="html_0c8f2d58eb5f22ad3a34eae16a8f23c0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مباني كيان للمقاولات<br> <b>الرقم الموحد:</b> 7014774454<br> <b>السجل التجاري:</b> 2053005460<br> <b>الحي:</b> الريف<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.60072517,49.97974548" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_11cd84effa3bbcec74826be39638b6ce.setContent(html_0c8f2d58eb5f22ad3a34eae16a8f23c0);
marker_6f6d5b83ca537f3cc0f5a9740bc28532.bindPopup(popup_11cd84effa3bbcec74826be39638b6ce)
;
marker_6f6d5b83ca537f3cc0f5a9740bc28532.setIcon(icon_c082c49720b295fc95d99ecdcff43c47);
var marker_db25667e7b2a2963d6b389cbe950f33f = L.marker(
[26.5654084932986, 49.9931406997113],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_04e872668e9f3c42fbaa267d41f827ef = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a00abf805bd5b0fbf819f003a7306788 = L.popup({
"maxWidth": 320,
});
var html_498c3611ea5afa5be0a6da99f181e274 = $(`<div id="html_498c3611ea5afa5be0a6da99f181e274" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة محمد بن سعد بن محمد المعجل التجارية<br> <b>الرقم الموحد:</b> 7012753153<br> <b>السجل التجاري:</b> 2052002765<br> <b>الحي:</b> البحاري<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5654084932986,49.9931406997113" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a00abf805bd5b0fbf819f003a7306788.setContent(html_498c3611ea5afa5be0a6da99f181e274);
marker_db25667e7b2a2963d6b389cbe950f33f.bindPopup(popup_a00abf805bd5b0fbf819f003a7306788)
;
marker_db25667e7b2a2963d6b389cbe950f33f.setIcon(icon_04e872668e9f3c42fbaa267d41f827ef);
var marker_8577eac9f2e2e20e79a777f150bfa28d = L.marker(
[26.5651562607759, 49.99402621881391],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_c3f56b61f7e3ac205eb52cd713f39e84 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d3053d4b7cb9b909bcb89a4bddb0e389 = L.popup({
"maxWidth": 320,
});
var html_3371cc6ef1f2b2381064d76b5d51d129 = $(`<div id="html_3371cc6ef1f2b2381064d76b5d51d129" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة علي بن احمد الفرج<br> <b>الرقم الموحد:</b> 7007359586<br> <b>السجل التجاري:</b> 2050220202<br> <b>الحي:</b> البحاري<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5651562607759,49.99402621881391" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d3053d4b7cb9b909bcb89a4bddb0e389.setContent(html_3371cc6ef1f2b2381064d76b5d51d129);
marker_8577eac9f2e2e20e79a777f150bfa28d.bindPopup(popup_d3053d4b7cb9b909bcb89a4bddb0e389)
;
marker_8577eac9f2e2e20e79a777f150bfa28d.setIcon(icon_c3f56b61f7e3ac205eb52cd713f39e84);
var marker_fc5b4288fcf85dc789db8bde54443bdf = L.marker(
[26.5699131431968, 49.9906529473246],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_51bb17fa18e63cfcd05503726a63b6b8 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_aa43b030288361f9ff515732ae0873bd = L.popup({
"maxWidth": 320,
});
var html_4c803009e325962ecac4dd9f8388fbe9 = $(`<div id="html_4c803009e325962ecac4dd9f8388fbe9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة محمد بن علي العلويات<br> <b>الرقم الموحد:</b> 7014671189<br> <b>السجل التجاري:</b> 2053024688<br> <b>الحي:</b> البحاري<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.5699131431968,49.9906529473246" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_aa43b030288361f9ff515732ae0873bd.setContent(html_4c803009e325962ecac4dd9f8388fbe9);
marker_fc5b4288fcf85dc789db8bde54443bdf.bindPopup(popup_aa43b030288361f9ff515732ae0873bd)
;
marker_fc5b4288fcf85dc789db8bde54443bdf.setIcon(icon_51bb17fa18e63cfcd05503726a63b6b8);
var marker_9167db19083377f7a5b666a762c7bb7f = L.marker(
[26.64075732, 49.95043638],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_023d9f57cf7d1da168344dd9e94eec67 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d6095a1d3c2f7a6f3d18dd9691fd7238 = L.popup({
"maxWidth": 320,
});
var html_d3057fe82a14a82584e080c8a64d8a69 = $(`<div id="html_d3057fe82a14a82584e080c8a64d8a69" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة دنيا العصفور النسائي<br> <b>الرقم الموحد:</b> 7014719830<br> <b>السجل التجاري:</b> 2051028643<br> <b>الحي:</b> العروبة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.64075732,49.95043638" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d6095a1d3c2f7a6f3d18dd9691fd7238.setContent(html_d3057fe82a14a82584e080c8a64d8a69);
marker_9167db19083377f7a5b666a762c7bb7f.bindPopup(popup_d6095a1d3c2f7a6f3d18dd9691fd7238)
;
marker_9167db19083377f7a5b666a762c7bb7f.setIcon(icon_023d9f57cf7d1da168344dd9e94eec67);
var marker_fc048a045bb4d5fe44272419ca99264f = L.marker(
[26.5816939204121, 49.9766796132879],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_b52207e5594cd4f5c8f2ec53d0fd402d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4f41ffde0d6348becbce660241d70a9d = L.popup({
"maxWidth": 320,
});
var html_2504d2cef214218b970509c5bee234a0 = $(`<div id="html_2504d2cef214218b970509c5bee234a0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ماجد حسين لباد للمقاولات<br> <b>الرقم الموحد:</b> 7013036509<br> <b>السجل التجاري:</b> 2053029741<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5816939204121,49.9766796132879" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4f41ffde0d6348becbce660241d70a9d.setContent(html_2504d2cef214218b970509c5bee234a0);
marker_fc048a045bb4d5fe44272419ca99264f.bindPopup(popup_4f41ffde0d6348becbce660241d70a9d)
;
marker_fc048a045bb4d5fe44272419ca99264f.setIcon(icon_b52207e5594cd4f5c8f2ec53d0fd402d);
var marker_40aecb613a150b75de630f3495d53770 = L.marker(
[26.5816920022894, 49.9792556528716],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_919a6ee1489655dbd7c99ca33ff227df = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f7dde72d8721360a00ff15b9b0461d05 = L.popup({
"maxWidth": 320,
});
var html_f5556d02fa75d84fb510a8720bf175bf = $(`<div id="html_f5556d02fa75d84fb510a8720bf175bf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عصر الانشاءات المعمارية المحدودة<br> <b>الرقم الموحد:</b> 7011980120<br> <b>السجل التجاري:</b> 2053018173<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5816920022894,49.9792556528716" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f7dde72d8721360a00ff15b9b0461d05.setContent(html_f5556d02fa75d84fb510a8720bf175bf);
marker_40aecb613a150b75de630f3495d53770.bindPopup(popup_f7dde72d8721360a00ff15b9b0461d05)
;
marker_40aecb613a150b75de630f3495d53770.setIcon(icon_919a6ee1489655dbd7c99ca33ff227df);
var marker_3e80f785c72a14b305413f8daccb3520 = L.marker(
[26.58262058, 49.97720715],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_7586a384b092d4660adb8bc9d30d6045 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7b667589a8d874ebcdbfbd4f4a642d69 = L.popup({
"maxWidth": 320,
});
var html_b5079cdd07d8801978b0333d618be41a = $(`<div id="html_b5079cdd07d8801978b0333d618be41a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة شريفة علي المبيوق وشريكها<br> <b>الرقم الموحد:</b> 7008600301<br> <b>السجل التجاري:</b> 2053113876<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.58262058,49.97720715" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7b667589a8d874ebcdbfbd4f4a642d69.setContent(html_b5079cdd07d8801978b0333d618be41a);
marker_3e80f785c72a14b305413f8daccb3520.bindPopup(popup_7b667589a8d874ebcdbfbd4f4a642d69)
;
marker_3e80f785c72a14b305413f8daccb3520.setIcon(icon_7586a384b092d4660adb8bc9d30d6045);
var marker_775106b53cde4740027e6ff230582d39 = L.marker(
[26.5805888892516, 49.9735132761068],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_b8ed09d4c46d290e141fbc10253d59cf = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_852c58fbab0f49f1e8d59e30a5fcd7af = L.popup({
"maxWidth": 320,
});
var html_7575909bb027c81a3b2284c218ec57cc = $(`<div id="html_7575909bb027c81a3b2284c218ec57cc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة جمال جعفر آل جمال وشركاه للمقاولات العامة<br> <b>الرقم الموحد:</b> 7009428306<br> <b>السجل التجاري:</b> 2053014620<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5805888892516,49.9735132761068" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_852c58fbab0f49f1e8d59e30a5fcd7af.setContent(html_7575909bb027c81a3b2284c218ec57cc);
marker_775106b53cde4740027e6ff230582d39.bindPopup(popup_852c58fbab0f49f1e8d59e30a5fcd7af)
;
marker_775106b53cde4740027e6ff230582d39.setIcon(icon_b8ed09d4c46d290e141fbc10253d59cf);
var marker_6a24116f2a6341df77526c8d6a56b363 = L.marker(
[26.5847823445159, 49.9807018666634],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_468cca8e97243b5bfcd2e44f6c3f7185 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8d4e1adf1757b5ab8c91e73cfba3999e = L.popup({
"maxWidth": 320,
});
var html_9bc8faaba4f12c5e0126de8e410b5f9c = $(`<div id="html_9bc8faaba4f12c5e0126de8e410b5f9c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة محمد نصر آل ياسين للمقاولات العامة<br> <b>الرقم الموحد:</b> 7007619229<br> <b>السجل التجاري:</b> 2053101775<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5847823445159,49.9807018666634" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8d4e1adf1757b5ab8c91e73cfba3999e.setContent(html_9bc8faaba4f12c5e0126de8e410b5f9c);
marker_6a24116f2a6341df77526c8d6a56b363.bindPopup(popup_8d4e1adf1757b5ab8c91e73cfba3999e)
;
marker_6a24116f2a6341df77526c8d6a56b363.setIcon(icon_468cca8e97243b5bfcd2e44f6c3f7185);
var marker_48177ec71155faef65e0f2376236938d = L.marker(
[26.5808194105001, 49.9748808050001],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_d21b7eec622fe5d7b28e3f4021aa78f3 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_98315a274f98b215d2919046ca7d63c2 = L.popup({
"maxWidth": 320,
});
var html_a3566947811001f4a9c0daf76300060a = $(`<div id="html_a3566947811001f4a9c0daf76300060a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة حسين بن علي الشيخ للمقاولات العامة<br> <b>الرقم الموحد:</b> 7036316920<br> <b>السجل التجاري:</b> 2053124639<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.5808194105001,49.9748808050001" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_98315a274f98b215d2919046ca7d63c2.setContent(html_a3566947811001f4a9c0daf76300060a);
marker_48177ec71155faef65e0f2376236938d.bindPopup(popup_98315a274f98b215d2919046ca7d63c2)
;
marker_48177ec71155faef65e0f2376236938d.setIcon(icon_d21b7eec622fe5d7b28e3f4021aa78f3);
var marker_d6eb0bc539cb0c081bfcab70c1f6f7d8 = L.marker(
[26.58103064, 49.97566627],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_21e514ee44a4b6eb575041654b918753 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_71b393760d96dd786f20f91928d74069 = L.popup({
"maxWidth": 320,
});
var html_0022b8ff1ff9e1b24547c13734447ee0 = $(`<div id="html_0022b8ff1ff9e1b24547c13734447ee0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة حسين علي آل حيدر وشركاؤه<br> <b>الرقم الموحد:</b> 7002004070<br> <b>السجل التجاري:</b> 2053111418<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.58097064,49.97566627" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_71b393760d96dd786f20f91928d74069.setContent(html_0022b8ff1ff9e1b24547c13734447ee0);
marker_d6eb0bc539cb0c081bfcab70c1f6f7d8.bindPopup(popup_71b393760d96dd786f20f91928d74069)
;
marker_d6eb0bc539cb0c081bfcab70c1f6f7d8.setIcon(icon_21e514ee44a4b6eb575041654b918753);
var marker_45c41359d756fffc90316271e6d90c92 = L.marker(
[26.58091064, 49.97566627],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_42861b497f4031b7e75466e1019ac784 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_633f530f196b9ca6eef8e067c2d8cb92 = L.popup({
"maxWidth": 320,
});
var html_45b2b1e6a6ada418aa66958698403d4e = $(`<div id="html_45b2b1e6a6ada418aa66958698403d4e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مفهوم العالمية للمقاولات العامة<br> <b>الرقم الموحد:</b> 7012973835<br> <b>السجل التجاري:</b> 2050052491<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.58097064,49.97566627" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_633f530f196b9ca6eef8e067c2d8cb92.setContent(html_45b2b1e6a6ada418aa66958698403d4e);
marker_45c41359d756fffc90316271e6d90c92.bindPopup(popup_633f530f196b9ca6eef8e067c2d8cb92)
;
marker_45c41359d756fffc90316271e6d90c92.setIcon(icon_42861b497f4031b7e75466e1019ac784);
var marker_0e377c641b8d37cb6e64c62bb3c99caf = L.marker(
[26.57947862, 49.97950204],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_f4796cb2ba369cbd588fa5fd46035efc = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2d044a88ff30b0535b55dede826e17aa = L.popup({
"maxWidth": 320,
});
var html_9d3368e462d02979f1966f1ece767ad2 = $(`<div id="html_9d3368e462d02979f1966f1ece767ad2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة علي محمد الباد للمقاولات العامة<br> <b>الرقم الموحد:</b> 7012488123<br> <b>السجل التجاري:</b> 2053021995<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.57947862,49.97950204" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2d044a88ff30b0535b55dede826e17aa.setContent(html_9d3368e462d02979f1966f1ece767ad2);
marker_0e377c641b8d37cb6e64c62bb3c99caf.bindPopup(popup_2d044a88ff30b0535b55dede826e17aa)
;
marker_0e377c641b8d37cb6e64c62bb3c99caf.setIcon(icon_f4796cb2ba369cbd588fa5fd46035efc);
var marker_d16d12422157717d636875d12e8a3427 = L.marker(
[26.5815210598626, 49.9758285183364],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_9632e0d6b2b4399b4eb521225b90f751 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_70ff58cecdb8fbb20b485130a7f99009 = L.popup({
"maxWidth": 320,
});
var html_496bb890b361f0bb320924986aeed2b9 = $(`<div id="html_496bb890b361f0bb320924986aeed2b9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة زينب محمد آل فرج وشريكها<br> <b>الرقم الموحد:</b> 7030251297<br> <b>السجل التجاري:</b> 2053121867<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5815210598626,49.9758285183364" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_70ff58cecdb8fbb20b485130a7f99009.setContent(html_496bb890b361f0bb320924986aeed2b9);
marker_d16d12422157717d636875d12e8a3427.bindPopup(popup_70ff58cecdb8fbb20b485130a7f99009)
;
marker_d16d12422157717d636875d12e8a3427.setIcon(icon_9632e0d6b2b4399b4eb521225b90f751);
var marker_9879219d1c10b87c0ee08a5f9b78c3f3 = L.marker(
[26.58236611, 49.98219469],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_2077371c931a421b97a959d2de065fa9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a6a7871a7db27300eeebacc8d560c505 = L.popup({
"maxWidth": 320,
});
var html_f7656967802e6a4ba948af112ecf8825 = $(`<div id="html_f7656967802e6a4ba948af112ecf8825" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مؤيد بن جعفر بن علي آل سهو للتجارة<br> <b>الرقم الموحد:</b> 7014726108<br> <b>السجل التجاري:</b> 2053030418<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.58236611,49.98219469" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a6a7871a7db27300eeebacc8d560c505.setContent(html_f7656967802e6a4ba948af112ecf8825);
marker_9879219d1c10b87c0ee08a5f9b78c3f3.bindPopup(popup_a6a7871a7db27300eeebacc8d560c505)
;
marker_9879219d1c10b87c0ee08a5f9b78c3f3.setIcon(icon_2077371c931a421b97a959d2de065fa9);
var marker_ffebf58e72da7199e2e4d9b52d15ffb0 = L.marker(
[26.580645848689, 49.9738222386472],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_60d36455b0b270ec724318f59e875a99 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6e4fc49b83129bc508dc609a943bc46d = L.popup({
"maxWidth": 320,
});
var html_0f41e49d13d5bbece4b166d673a00cb7 = $(`<div id="html_0f41e49d13d5bbece4b166d673a00cb7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة قصي عبدالمحسن ابوجوهر للمقاولات العامة<br> <b>الرقم الموحد:</b> 7007939049<br> <b>السجل التجاري:</b> 2053034980<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.580645848689,49.9738222386472" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6e4fc49b83129bc508dc609a943bc46d.setContent(html_0f41e49d13d5bbece4b166d673a00cb7);
marker_ffebf58e72da7199e2e4d9b52d15ffb0.bindPopup(popup_6e4fc49b83129bc508dc609a943bc46d)
;
marker_ffebf58e72da7199e2e4d9b52d15ffb0.setIcon(icon_60d36455b0b270ec724318f59e875a99);
var marker_469c15ccb1aa2deaf3664c1154b29d39 = L.marker(
[26.5873868127425, 49.9787861959477],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_39a07539eb06dc4d08677f2f4ec049b4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_144408bbf00f646d0ce6e7068dd49699 = L.popup({
"maxWidth": 320,
});
var html_466a90b68811ca1780bfcfda79c0fec6 = $(`<div id="html_466a90b68811ca1780bfcfda79c0fec6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة زكي عبدالعزيز الفرج للمقاولات<br> <b>الرقم الموحد:</b> 7014649441<br> <b>السجل التجاري:</b> 2053012957<br> <b>الحي:</b> الجميمة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5873868127425,49.9787861959477" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_144408bbf00f646d0ce6e7068dd49699.setContent(html_466a90b68811ca1780bfcfda79c0fec6);
marker_469c15ccb1aa2deaf3664c1154b29d39.bindPopup(popup_144408bbf00f646d0ce6e7068dd49699)
;
marker_469c15ccb1aa2deaf3664c1154b29d39.setIcon(icon_39a07539eb06dc4d08677f2f4ec049b4);
var marker_6a40d54e55596611b8b720e1f6d66c73 = L.marker(
[26.65271483, 49.92198987],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_e9ec6420da096d82a9e040c2f8a8761d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1e4556c96b3169b14bb9146103922b8f = L.popup({
"maxWidth": 320,
});
var html_b6efceff67a260bbb8219562f9e5c58d = $(`<div id="html_b6efceff67a260bbb8219562f9e5c58d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مطعم عوافي الشام لخدمات الاعاشة<br> <b>الرقم الموحد:</b> 7028233745<br> <b>السجل التجاري:</b> 2053120771<br> <b>الحي:</b> البدور<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.65271483,49.92198987" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1e4556c96b3169b14bb9146103922b8f.setContent(html_b6efceff67a260bbb8219562f9e5c58d);
marker_6a40d54e55596611b8b720e1f6d66c73.bindPopup(popup_1e4556c96b3169b14bb9146103922b8f)
;
marker_6a40d54e55596611b8b720e1f6d66c73.setIcon(icon_e9ec6420da096d82a9e040c2f8a8761d);
var marker_d461e616fce68d355efaa94e1efcc4a3 = L.marker(
[26.6578768318623, 49.9516214523864],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_4d3c9d4b5c80f57c5783a5b3511d584a = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9dfaf8140f88b5d99cf231a95d0d544d = L.popup({
"maxWidth": 320,
});
var html_fdc961ab50fd68d22646be1f757a045a = $(`<div id="html_fdc961ab50fd68d22646be1f757a045a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الخيرات الصفا التجارية<br> <b>الرقم الموحد:</b> 7013336776<br> <b>السجل التجاري:</b> 2063010040<br> <b>الحي:</b> المنار<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.6578768318623,49.9516214523864" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9dfaf8140f88b5d99cf231a95d0d544d.setContent(html_fdc961ab50fd68d22646be1f757a045a);
marker_d461e616fce68d355efaa94e1efcc4a3.bindPopup(popup_9dfaf8140f88b5d99cf231a95d0d544d)
;
marker_d461e616fce68d355efaa94e1efcc4a3.setIcon(icon_4d3c9d4b5c80f57c5783a5b3511d584a);
var marker_0f114a7a619af9787fba8194ebd7a51e = L.marker(
[26.66368826, 49.95273169],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_4b834e2bda39f02e07dd41a82474a02d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e20fc4a17dc024d03fda1fbcfef63cb7 = L.popup({
"maxWidth": 320,
});
var html_f9e8f45605ac117705dad9e73f91d87c = $(`<div id="html_f9e8f45605ac117705dad9e73f91d87c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة فنون صفوى للمقاولات العامة<br> <b>الرقم الموحد:</b> 7006405893<br> <b>السجل التجاري:</b> 2063030648<br> <b>الحي:</b> المنار<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.66368826,49.95273169" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e20fc4a17dc024d03fda1fbcfef63cb7.setContent(html_f9e8f45605ac117705dad9e73f91d87c);
marker_0f114a7a619af9787fba8194ebd7a51e.bindPopup(popup_e20fc4a17dc024d03fda1fbcfef63cb7)
;
marker_0f114a7a619af9787fba8194ebd7a51e.setIcon(icon_4b834e2bda39f02e07dd41a82474a02d);
var marker_b0c1cac364261edc4230fd2f4e98ee8c = L.marker(
[26.6004631625463, 49.9808387721459],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_3e9ca21637dec91214fc2f8015251e9a = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6da8aa5eb7bf42f7466e284009f51909 = L.popup({
"maxWidth": 320,
});
var html_a74137dd17ffcec92d01de4555aff6d9 = $(`<div id="html_a74137dd17ffcec92d01de4555aff6d9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة محمد احمد بن شبر علي للمقاولات العامة<br> <b>الرقم الموحد:</b> 7008729910<br> <b>السجل التجاري:</b> 2053114008<br> <b>الحي:</b> الثريا<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.6004631625463,49.9808387721459" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6da8aa5eb7bf42f7466e284009f51909.setContent(html_a74137dd17ffcec92d01de4555aff6d9);
marker_b0c1cac364261edc4230fd2f4e98ee8c.bindPopup(popup_6da8aa5eb7bf42f7466e284009f51909)
;
marker_b0c1cac364261edc4230fd2f4e98ee8c.setIcon(icon_3e9ca21637dec91214fc2f8015251e9a);
var marker_5975e6db05caaae46521eb64b250a801 = L.marker(
[26.5986842678193, 49.9825901902024],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_eb0e6683c4cc953524b95e66029dcc25 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e1dc2c8e2047ee2e59cafa27a9f64c9d = L.popup({
"maxWidth": 320,
});
var html_1f529e322cf0015bfe2433aaeb0832d6 = $(`<div id="html_1f529e322cf0015bfe2433aaeb0832d6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عباس حسن انصيف وشريكه للمقاولات العامة<br> <b>الرقم الموحد:</b> 7009366266<br> <b>السجل التجاري:</b> 2050104168<br> <b>الحي:</b> الثريا<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.5986842678193,49.9825901902024" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e1dc2c8e2047ee2e59cafa27a9f64c9d.setContent(html_1f529e322cf0015bfe2433aaeb0832d6);
marker_5975e6db05caaae46521eb64b250a801.bindPopup(popup_e1dc2c8e2047ee2e59cafa27a9f64c9d)
;
marker_5975e6db05caaae46521eb64b250a801.setIcon(icon_eb0e6683c4cc953524b95e66029dcc25);
var marker_edd19dcb49542b2467dd2cc9046ab7df = L.marker(
[26.59783055, 49.98126491],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_8b94c5569bbf5e79f6322f868db29d8f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a5c64131ee117a460c7bbe7264d9f2c1 = L.popup({
"maxWidth": 320,
});
var html_987a0525d56b55605e096093a9a7a258 = $(`<div id="html_987a0525d56b55605e096093a9a7a258" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة محمد أحمد آل ابراهيم للمقاولات العامة<br> <b>الرقم الموحد:</b> 7015653046<br> <b>السجل التجاري:</b> 2053114708<br> <b>الحي:</b> الثريا<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.59783055,49.98126491" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a5c64131ee117a460c7bbe7264d9f2c1.setContent(html_987a0525d56b55605e096093a9a7a258);
marker_edd19dcb49542b2467dd2cc9046ab7df.bindPopup(popup_a5c64131ee117a460c7bbe7264d9f2c1)
;
marker_edd19dcb49542b2467dd2cc9046ab7df.setIcon(icon_8b94c5569bbf5e79f6322f868db29d8f);
var marker_c5f02d164c3a5ebd0f036bad1ba37e33 = L.marker(
[26.59757151, 49.98527587],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_5dbdd1794643f46f753ea41ba16a7ba1 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_74d376c54f16efcbfc0d5b1b96a90aa1 = L.popup({
"maxWidth": 320,
});
var html_64ab130114f08c82e90c578b1e99f652 = $(`<div id="html_64ab130114f08c82e90c578b1e99f652" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة حسين بن علي بن حسين آل تحيفه لصيد الاسماك<br> <b>الرقم الموحد:</b> 7013859660<br> <b>السجل التجاري:</b> 2053026973<br> <b>الحي:</b> الثريا<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.59751151,49.98527587" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_74d376c54f16efcbfc0d5b1b96a90aa1.setContent(html_64ab130114f08c82e90c578b1e99f652);
marker_c5f02d164c3a5ebd0f036bad1ba37e33.bindPopup(popup_74d376c54f16efcbfc0d5b1b96a90aa1)
;
marker_c5f02d164c3a5ebd0f036bad1ba37e33.setIcon(icon_5dbdd1794643f46f753ea41ba16a7ba1);
var marker_453466abd8a1e32fa5a75d9ebf2f0a1b = L.marker(
[26.59745151, 49.98527587],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_af8d0a272d5790f2ee0e81c28d796726 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d0ad170b5eb54ccd364574894ba5be98 = L.popup({
"maxWidth": 320,
});
var html_b872e8788d0b5c286b0b055dd2d899e4 = $(`<div id="html_b872e8788d0b5c286b0b055dd2d899e4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة علي حسين ال تحيفة لصيد الاسماك<br> <b>الرقم الموحد:</b> 7013448241<br> <b>السجل التجاري:</b> 2053026978<br> <b>الحي:</b> الثريا<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.59751151,49.98527587" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d0ad170b5eb54ccd364574894ba5be98.setContent(html_b872e8788d0b5c286b0b055dd2d899e4);
marker_453466abd8a1e32fa5a75d9ebf2f0a1b.bindPopup(popup_d0ad170b5eb54ccd364574894ba5be98)
;
marker_453466abd8a1e32fa5a75d9ebf2f0a1b.setIcon(icon_af8d0a272d5790f2ee0e81c28d796726);
var marker_ac87583461b0c13b5f94f6512e265587 = L.marker(
[26.6005049155842, 49.9806693604828],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_ef69b8619ff6d9331532acd9177dd60c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_93c5f4596615ad889cdd9941ac9a09e4 = L.popup({
"maxWidth": 320,
});
var html_270496417551b53bc44eb9dd78969844 = $(`<div id="html_270496417551b53bc44eb9dd78969844" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة جلال وهب بن حسن القطان للمقاولات العامة<br> <b>الرقم الموحد:</b> 7003737280<br> <b>السجل التجاري:</b> 2050111184<br> <b>الحي:</b> الثريا<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.6005049155842,49.9806693604828" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_93c5f4596615ad889cdd9941ac9a09e4.setContent(html_270496417551b53bc44eb9dd78969844);
marker_ac87583461b0c13b5f94f6512e265587.bindPopup(popup_93c5f4596615ad889cdd9941ac9a09e4)
;
marker_ac87583461b0c13b5f94f6512e265587.setIcon(icon_ef69b8619ff6d9331532acd9177dd60c);
var marker_c7deeb45d4e39fc2b34a2af89638bfc6 = L.marker(
[26.59671341, 49.98107799],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_1965eea6b12e5c66deebbfba929fd8f9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c998f3a79e9799750e5d21c3fa3c5050 = L.popup({
"maxWidth": 320,
});
var html_58a3d3361bbb3ab8f75aea8916065ea8 = $(`<div id="html_58a3d3361bbb3ab8f75aea8916065ea8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أمجد احمد سبيتي وشريكه<br> <b>الرقم الموحد:</b> 7016108081<br> <b>السجل التجاري:</b> 2053115203<br> <b>الحي:</b> الثريا<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.59671341,49.98107799" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c998f3a79e9799750e5d21c3fa3c5050.setContent(html_58a3d3361bbb3ab8f75aea8916065ea8);
marker_c7deeb45d4e39fc2b34a2af89638bfc6.bindPopup(popup_c998f3a79e9799750e5d21c3fa3c5050)
;
marker_c7deeb45d4e39fc2b34a2af89638bfc6.setIcon(icon_1965eea6b12e5c66deebbfba929fd8f9);
var marker_ba20d9acb253ed76285d8b426beaa7b8 = L.marker(
[26.5957991242282, 49.983058952734496],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_063b7095d02091d0af22b17ffbd00836 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cf63f085763f55603814b09535affa5e = L.popup({
"maxWidth": 320,
});
var html_d4a2955d2e3cf212840a4a76681943f1 = $(`<div id="html_d4a2955d2e3cf212840a4a76681943f1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة قاسم حسن اشبيني للمقاولات العامة<br> <b>الرقم الموحد:</b> 7012722968<br> <b>السجل التجاري:</b> 2053017606<br> <b>الحي:</b> الثريا<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5957991242282,49.983058952734496" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cf63f085763f55603814b09535affa5e.setContent(html_d4a2955d2e3cf212840a4a76681943f1);
marker_ba20d9acb253ed76285d8b426beaa7b8.bindPopup(popup_cf63f085763f55603814b09535affa5e)
;
marker_ba20d9acb253ed76285d8b426beaa7b8.setIcon(icon_063b7095d02091d0af22b17ffbd00836);
var marker_899cbefb2da2f5a559e8c348331ec2e6 = L.marker(
[26.60129048, 49.98003054],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_0fa95d17106f9901d9fbee0d81d5a20b = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e30a37cc9fdcede312f721a055465663 = L.popup({
"maxWidth": 320,
});
var html_bd1629de0e057ff9fd7a117b3b9439ee = $(`<div id="html_bd1629de0e057ff9fd7a117b3b9439ee" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة محمد بن عبدالله بن احمد الناصر للمقاولات العامة<br> <b>الرقم الموحد:</b> 7030453570<br> <b>السجل التجاري:</b> 2053121989<br> <b>الحي:</b> الثريا<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.60129048,49.98003054" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e30a37cc9fdcede312f721a055465663.setContent(html_bd1629de0e057ff9fd7a117b3b9439ee);
marker_899cbefb2da2f5a559e8c348331ec2e6.bindPopup(popup_e30a37cc9fdcede312f721a055465663)
;
marker_899cbefb2da2f5a559e8c348331ec2e6.setIcon(icon_0fa95d17106f9901d9fbee0d81d5a20b);
var marker_34eecf42cca850266ad8a481298aadf1 = L.marker(
[26.599294756924095, 49.9815147473158],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_946a863be23aad6ac0398ec7f12cfa9c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_463639ad81d6ec289b40b8704edc66c1 = L.popup({
"maxWidth": 320,
});
var html_c9389ec06274a8991afe3db880925715 = $(`<div id="html_c9389ec06274a8991afe3db880925715" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مهدي أحمد بن حسن الشيخ للمقاولات<br> <b>الرقم الموحد:</b> 7011391047<br> <b>السجل التجاري:</b> 2053033343<br> <b>الحي:</b> الثريا<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.599294756924095,49.9815147473158" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_463639ad81d6ec289b40b8704edc66c1.setContent(html_c9389ec06274a8991afe3db880925715);
marker_34eecf42cca850266ad8a481298aadf1.bindPopup(popup_463639ad81d6ec289b40b8704edc66c1)
;
marker_34eecf42cca850266ad8a481298aadf1.setIcon(icon_946a863be23aad6ac0398ec7f12cfa9c);
var marker_322284a5f4cb86d68ce5230f9aa9ab40 = L.marker(
[26.649846943518096, 49.9569104626563],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_9c374c919ee3f3d47a81a123ea0ac894 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4bcd2fe21ec1e86efedb9abb9612831d = L.popup({
"maxWidth": 320,
});
var html_a2369a4d6ea54758c4e3b8216df6ffcc = $(`<div id="html_a2369a4d6ea54758c4e3b8216df6ffcc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة تجميد الحريق التجارية<br> <b>الرقم الموحد:</b> 7006653609<br> <b>السجل التجاري:</b> 2063014730<br> <b>الحي:</b> حزم<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.649846943518096,49.9569104626563" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4bcd2fe21ec1e86efedb9abb9612831d.setContent(html_a2369a4d6ea54758c4e3b8216df6ffcc);
marker_322284a5f4cb86d68ce5230f9aa9ab40.bindPopup(popup_4bcd2fe21ec1e86efedb9abb9612831d)
;
marker_322284a5f4cb86d68ce5230f9aa9ab40.setIcon(icon_9c374c919ee3f3d47a81a123ea0ac894);
var marker_9221bb3a741a0871ee48af463bd43799 = L.marker(
[26.6509462013885, 49.9506211386755],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_bff6a6170b7f93ad165cacb1a8ea3d82 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0dfeac51aef9019873d62b4253af556e = L.popup({
"maxWidth": 320,
});
var html_aa6715dfe7582412bbb0f36c69daad75 = $(`<div id="html_aa6715dfe7582412bbb0f36c69daad75" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة سعيد حسين الصادق لصيد الاسماك<br> <b>الرقم الموحد:</b> 7014596048<br> <b>السجل التجاري:</b> 2055023890<br> <b>الحي:</b> حزم<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.6509462013885,49.9506211386755" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0dfeac51aef9019873d62b4253af556e.setContent(html_aa6715dfe7582412bbb0f36c69daad75);
marker_9221bb3a741a0871ee48af463bd43799.bindPopup(popup_0dfeac51aef9019873d62b4253af556e)
;
marker_9221bb3a741a0871ee48af463bd43799.setIcon(icon_bff6a6170b7f93ad165cacb1a8ea3d82);
var marker_63ac4ddcb12603e3e8d267c47a31db60 = L.marker(
[26.64365558274265, 49.95667259638076],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_2d0028d5cd88879136ca5856c526aa94 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_085eee76136fb03134284043258eec68 = L.popup({
"maxWidth": 320,
});
var html_9b24a8b1971fe13dd4f332bca53e7f1c = $(`<div id="html_9b24a8b1971fe13dd4f332bca53e7f1c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مناف جابر الشلاتي للمقاولات العامة<br> <b>الرقم الموحد:</b> 7014027739<br> <b>السجل التجاري:</b> 2063016514<br> <b>الحي:</b> حزم<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.64365558274265,49.95667259638076" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_085eee76136fb03134284043258eec68.setContent(html_9b24a8b1971fe13dd4f332bca53e7f1c);
marker_63ac4ddcb12603e3e8d267c47a31db60.bindPopup(popup_085eee76136fb03134284043258eec68)
;
marker_63ac4ddcb12603e3e8d267c47a31db60.setIcon(icon_2d0028d5cd88879136ca5856c526aa94);
var marker_6f20f3028638eabeb0032b2cb9cff51d = L.marker(
[26.64530052, 49.96033756],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_a9c54f720d8fda0eac589554f1d15b12 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9b8358f51d1afb3637f0085923688d08 = L.popup({
"maxWidth": 320,
});
var html_6e7eb317654a56f1fe01974841d257b5 = $(`<div id="html_6e7eb317654a56f1fe01974841d257b5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة زوم الصفا للصيانة<br> <b>الرقم الموحد:</b> 7004716549<br> <b>السجل التجاري:</b> 2063605941<br> <b>الحي:</b> حزم<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.64530052,49.96033756" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9b8358f51d1afb3637f0085923688d08.setContent(html_6e7eb317654a56f1fe01974841d257b5);
marker_6f20f3028638eabeb0032b2cb9cff51d.bindPopup(popup_9b8358f51d1afb3637f0085923688d08)
;
marker_6f20f3028638eabeb0032b2cb9cff51d.setIcon(icon_a9c54f720d8fda0eac589554f1d15b12);
var marker_8438db1c88a2c2d1b689ea65a2b9f5ec = L.marker(
[26.64905762, 49.95492232],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_6de8861ca847f86ff05d22cb047f247b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ceb0239311249c3879e712ac45f0ce13 = L.popup({
"maxWidth": 320,
});
var html_16dc1476cbfe6b66cf0585262d29a245 = $(`<div id="html_16dc1476cbfe6b66cf0585262d29a245" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مطلق بن محمد بن عبدالله الهاجري المحدودة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7011600603<br> <b>السجل التجاري:</b> 2063010491<br> <b>الحي:</b> حزم<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.64905762,49.95492232" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ceb0239311249c3879e712ac45f0ce13.setContent(html_16dc1476cbfe6b66cf0585262d29a245);
marker_8438db1c88a2c2d1b689ea65a2b9f5ec.bindPopup(popup_ceb0239311249c3879e712ac45f0ce13)
;
marker_8438db1c88a2c2d1b689ea65a2b9f5ec.setIcon(icon_6de8861ca847f86ff05d22cb047f247b);
var marker_6f4f050ec0a4c78402fbfe5adf1a17cc = L.marker(
[26.64991814, 49.95323017],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_0d88bbeb061f15c9d831e4b75281d7af = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1cb96ea9fd6df5413f90fd6cb471d3ad = L.popup({
"maxWidth": 320,
});
var html_50f1f423d9c2a354a1d2f2085fceb059 = $(`<div id="html_50f1f423d9c2a354a1d2f2085fceb059" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مجمع العيادات التخصصية الطبي<br> <b>الرقم الموحد:</b> 7014442698<br> <b>السجل التجاري:</b> 2063014480<br> <b>الحي:</b> حزم<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.64991814,49.95323017" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1cb96ea9fd6df5413f90fd6cb471d3ad.setContent(html_50f1f423d9c2a354a1d2f2085fceb059);
marker_6f4f050ec0a4c78402fbfe5adf1a17cc.bindPopup(popup_1cb96ea9fd6df5413f90fd6cb471d3ad)
;
marker_6f4f050ec0a4c78402fbfe5adf1a17cc.setIcon(icon_0d88bbeb061f15c9d831e4b75281d7af);
var marker_b1acb6aee81b83f354fb89942dbd4448 = L.marker(
[26.64397811, 49.95733771],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_ec8d3e89cde6229c445dc99ecfd289d0 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9dfa07626b2598f220f5a433ba295966 = L.popup({
"maxWidth": 320,
});
var html_50de7794307ea7576843d71b0d834a65 = $(`<div id="html_50de7794307ea7576843d71b0d834a65" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة احلا ساس التجارية<br> <b>الرقم الموحد:</b> 7006570407<br> <b>السجل التجاري:</b> 2063605284<br> <b>الحي:</b> حزم<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.64397811,49.95733771" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9dfa07626b2598f220f5a433ba295966.setContent(html_50de7794307ea7576843d71b0d834a65);
marker_b1acb6aee81b83f354fb89942dbd4448.bindPopup(popup_9dfa07626b2598f220f5a433ba295966)
;
marker_b1acb6aee81b83f354fb89942dbd4448.setIcon(icon_ec8d3e89cde6229c445dc99ecfd289d0);
var marker_8327f9e1620912fb94f927891cfe0e8a = L.marker(
[26.645825844964495, 49.9601483831774],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_f36d6523749b2bed6339d3802ede7b4a = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4b0d880fb74117fb8e3e13fb08941406 = L.popup({
"maxWidth": 320,
});
var html_d7d8bcc4a48c7065c1ca1f407c577d86 = $(`<div id="html_d7d8bcc4a48c7065c1ca1f407c577d86" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مكتب عبدالمنعم ابراهيم ابراهيم ال ابراهيم للعقارات<br> <b>الرقم الموحد:</b> 7005950394<br> <b>السجل التجاري:</b> 2063606060<br> <b>الحي:</b> حزم<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.645825844964495,49.9601483831774" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4b0d880fb74117fb8e3e13fb08941406.setContent(html_d7d8bcc4a48c7065c1ca1f407c577d86);
marker_8327f9e1620912fb94f927891cfe0e8a.bindPopup(popup_4b0d880fb74117fb8e3e13fb08941406)
;
marker_8327f9e1620912fb94f927891cfe0e8a.setIcon(icon_f36d6523749b2bed6339d3802ede7b4a);
var marker_67d29d32dea863db2a6b321a41a7af53 = L.marker(
[26.5935813524852, 49.981680318562496],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_1325262a6f2ad52dc71fe483355fd99a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_36cfaebedc0e4d934cf6819323399ef5 = L.popup({
"maxWidth": 320,
});
var html_c3fe73ea1df239c79001931a426a8c71 = $(`<div id="html_c3fe73ea1df239c79001931a426a8c71" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة علي محمد اتحيفه للمقاولات العامه<br> <b>الرقم الموحد:</b> 7012890179<br> <b>السجل التجاري:</b> 2053029904<br> <b>الحي:</b> العوامية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5935813524852,49.981680318562496" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_36cfaebedc0e4d934cf6819323399ef5.setContent(html_c3fe73ea1df239c79001931a426a8c71);
marker_67d29d32dea863db2a6b321a41a7af53.bindPopup(popup_36cfaebedc0e4d934cf6819323399ef5)
;
marker_67d29d32dea863db2a6b321a41a7af53.setIcon(icon_1325262a6f2ad52dc71fe483355fd99a);
var marker_906e865a1b212d56750d8923105e7ca3 = L.marker(
[26.59135901, 49.9816971],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_f0ccef5307c574dc96f96a8e1fff4e1b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_be892e3628f59444cd2dc6d90dd2c1c9 = L.popup({
"maxWidth": 320,
});
var html_909c6951f2853ad7536442320c9fc2eb = $(`<div id="html_909c6951f2853ad7536442320c9fc2eb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الخليج الذهبي لتأجير المعدات<br> <b>الرقم الموحد:</b> 7009052627<br> <b>السجل التجاري:</b> 2051232673<br> <b>الحي:</b> العوامية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.59135901,49.9816971" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_be892e3628f59444cd2dc6d90dd2c1c9.setContent(html_909c6951f2853ad7536442320c9fc2eb);
marker_906e865a1b212d56750d8923105e7ca3.bindPopup(popup_be892e3628f59444cd2dc6d90dd2c1c9)
;
marker_906e865a1b212d56750d8923105e7ca3.setIcon(icon_f0ccef5307c574dc96f96a8e1fff4e1b);
var marker_7318cc1a3d6a3683e427f9bf3c6816c0 = L.marker(
[26.58836602, 49.98089448],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_e02ffe7691a6890aafd53da6613cfdfc = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_396adc92229956752387479c15afe6ad = L.popup({
"maxWidth": 320,
});
var html_44e294ee5e757843fd3fa56ece7d803a = $(`<div id="html_44e294ee5e757843fd3fa56ece7d803a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة شبكة الإنفاق للاتصالات و تقنية المعلومات<br> <b>الرقم الموحد:</b> 7013089144<br> <b>السجل التجاري:</b> 2053024529<br> <b>الحي:</b> العوامية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.58836602,49.98089448" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_396adc92229956752387479c15afe6ad.setContent(html_44e294ee5e757843fd3fa56ece7d803a);
marker_7318cc1a3d6a3683e427f9bf3c6816c0.bindPopup(popup_396adc92229956752387479c15afe6ad)
;
marker_7318cc1a3d6a3683e427f9bf3c6816c0.setIcon(icon_e02ffe7691a6890aafd53da6613cfdfc);
var marker_0005610b276a9555835c490490fa5310 = L.marker(
[26.58647175, 49.98267872],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_2a1a7c66a8bf4b0307b70edeaa235ccf = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f038769b4ea721b54cb1c518f4206963 = L.popup({
"maxWidth": 320,
});
var html_ba88dde55040a89b66a65350ec8920be = $(`<div id="html_ba88dde55040a89b66a65350ec8920be" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة زينب سعود العقيلي للمقاولات العامة<br> <b>الرقم الموحد:</b> 7012334996<br> <b>السجل التجاري:</b> 2053101568<br> <b>الحي:</b> العوامية<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.58647175,49.98267872" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f038769b4ea721b54cb1c518f4206963.setContent(html_ba88dde55040a89b66a65350ec8920be);
marker_0005610b276a9555835c490490fa5310.bindPopup(popup_f038769b4ea721b54cb1c518f4206963)
;
marker_0005610b276a9555835c490490fa5310.setIcon(icon_2a1a7c66a8bf4b0307b70edeaa235ccf);
var marker_87d620b5880ee0c3d0b3ce01e95f625c = L.marker(
[26.5857327371372, 49.9840037420964],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_5a9b784f6dd2362a2e667304f833aa8c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_260e2bd98816fdc1d6e6786847cb2f10 = L.popup({
"maxWidth": 320,
});
var html_aea327999f978b64e6bdbbce866f1a48 = $(`<div id="html_aea327999f978b64e6bdbbce866f1a48" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مركز فاطمه شاكر بن علي الشيخ الرياضي<br> <b>الرقم الموحد:</b> 7026612775<br> <b>السجل التجاري:</b> 2053119786<br> <b>الحي:</b> العوامية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5857327371372,49.9840037420964" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_260e2bd98816fdc1d6e6786847cb2f10.setContent(html_aea327999f978b64e6bdbbce866f1a48);
marker_87d620b5880ee0c3d0b3ce01e95f625c.bindPopup(popup_260e2bd98816fdc1d6e6786847cb2f10)
;
marker_87d620b5880ee0c3d0b3ce01e95f625c.setIcon(icon_5a9b784f6dd2362a2e667304f833aa8c);
var marker_b823cd561a48bcbe12bea97aaae6900a = L.marker(
[26.65671643, 49.95424699],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_4b9ef15392d2ae4206e539da946f7039 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fbde6c16ce065f4e230f1f2ce2427c3a = L.popup({
"maxWidth": 320,
});
var html_66be413b691d7e570b3729b991be1687 = $(`<div id="html_66be413b691d7e570b3729b991be1687" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة دانه الشرق للصيانة<br> <b>الرقم الموحد:</b> 7021441196<br> <b>السجل التجاري:</b> 2063606724<br> <b>الحي:</b> الربوة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.65671643,49.95424699" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fbde6c16ce065f4e230f1f2ce2427c3a.setContent(html_66be413b691d7e570b3729b991be1687);
marker_b823cd561a48bcbe12bea97aaae6900a.bindPopup(popup_fbde6c16ce065f4e230f1f2ce2427c3a)
;
marker_b823cd561a48bcbe12bea97aaae6900a.setIcon(icon_4b9ef15392d2ae4206e539da946f7039);
var marker_5594033a57add15c31de4f5c91e238bb = L.marker(
[26.6570551450862, 49.9592029730771],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_eb9bd23ec344c8bc83f4de47c83805eb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2e47c64108ba67cb5376b8c7d90c2012 = L.popup({
"maxWidth": 320,
});
var html_ecc9b1ab1d44bd911fa169bfc3efb488 = $(`<div id="html_ecc9b1ab1d44bd911fa169bfc3efb488" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة آمنه صالح بن جاسم آل حمدان للمقاولات<br> <b>الرقم الموحد:</b> 7005660605<br> <b>السجل التجاري:</b> 2063606030<br> <b>الحي:</b> الربوة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.6570551450862,49.9592029730771" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2e47c64108ba67cb5376b8c7d90c2012.setContent(html_ecc9b1ab1d44bd911fa169bfc3efb488);
marker_5594033a57add15c31de4f5c91e238bb.bindPopup(popup_2e47c64108ba67cb5376b8c7d90c2012)
;
marker_5594033a57add15c31de4f5c91e238bb.setIcon(icon_eb9bd23ec344c8bc83f4de47c83805eb);
var marker_ade85a08ae14319a5747520816cb7a46 = L.marker(
[26.5949907420322, 49.9822010207118],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_b7d6379c50a9d1247e51478b5b6eb7f7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_73e1bc733daf0708b9da02b98106e067 = L.popup({
"maxWidth": 320,
});
var html_f1b12662cd782770c58b26601341577c = $(`<div id="html_f1b12662cd782770c58b26601341577c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة القادة العالميه للمقاولات العامة<br> <b>الرقم الموحد:</b> 7015136067<br> <b>السجل التجاري:</b> 2050208720<br> <b>الحي:</b> النرجس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.5949907420322,49.9822010207118" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_73e1bc733daf0708b9da02b98106e067.setContent(html_f1b12662cd782770c58b26601341577c);
marker_ade85a08ae14319a5747520816cb7a46.bindPopup(popup_73e1bc733daf0708b9da02b98106e067)
;
marker_ade85a08ae14319a5747520816cb7a46.setIcon(icon_b7d6379c50a9d1247e51478b5b6eb7f7);
var marker_4857b6ae298bc6c5674e94bfe5cd9be0 = L.marker(
[26.64282127, 49.95629903],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_75147976529571727e630a05541b1080 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_69cd3ac673fa83fbcd9489a1d3b1420e = L.popup({
"maxWidth": 320,
});
var html_c1353c02a803e4e89bc8f385387e6f12 = $(`<div id="html_c1353c02a803e4e89bc8f385387e6f12" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مجمع سلامتك الطبي<br> <b>الرقم الموحد:</b> 7011047417<br> <b>السجل التجاري:</b> 2063012494<br> <b>الحي:</b> الصفا<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.64282127,49.95629903" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_69cd3ac673fa83fbcd9489a1d3b1420e.setContent(html_c1353c02a803e4e89bc8f385387e6f12);
marker_4857b6ae298bc6c5674e94bfe5cd9be0.bindPopup(popup_69cd3ac673fa83fbcd9489a1d3b1420e)
;
marker_4857b6ae298bc6c5674e94bfe5cd9be0.setIcon(icon_75147976529571727e630a05541b1080);
var marker_b09435ac5df2db5f4984c7328c01893d = L.marker(
[26.58384597, 49.99120458],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_0214238412934997a5408e7adb7515f8 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fca0de4449a5a237c5e73d69e49da389 = L.popup({
"maxWidth": 320,
});
var html_97dc89909b521633f7615b953c5cbd2e = $(`<div id="html_97dc89909b521633f7615b953c5cbd2e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة جعفر عبدرب الرسول الزاهر للغاز<br> <b>الرقم الموحد:</b> 7012909581<br> <b>السجل التجاري:</b> 2053010674<br> <b>الحي:</b> الزارة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.58384597,49.99120458" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fca0de4449a5a237c5e73d69e49da389.setContent(html_97dc89909b521633f7615b953c5cbd2e);
marker_b09435ac5df2db5f4984c7328c01893d.bindPopup(popup_fca0de4449a5a237c5e73d69e49da389)
;
marker_b09435ac5df2db5f4984c7328c01893d.setIcon(icon_0214238412934997a5408e7adb7515f8);
var marker_9a419edf3ad7a7440e4f778ba9edd5bf = L.marker(
[26.6532719136464, 49.9559060785038],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_a5d7f3441350cb6d2affa42f8cf96109 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_00da4542700722b55306dab32362275f = L.popup({
"maxWidth": 320,
});
var html_d2e99d40288e94e6fcb94834d04182f8 = $(`<div id="html_d2e99d40288e94e6fcb94834d04182f8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مركز الصحه والقوه الرياضي<br> <b>الرقم الموحد:</b> 7006469758<br> <b>السجل التجاري:</b> 2063016313<br> <b>الحي:</b> المروة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.6532719136464,49.9559060785038" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_00da4542700722b55306dab32362275f.setContent(html_d2e99d40288e94e6fcb94834d04182f8);
marker_9a419edf3ad7a7440e4f778ba9edd5bf.bindPopup(popup_00da4542700722b55306dab32362275f)
;
marker_9a419edf3ad7a7440e4f778ba9edd5bf.setIcon(icon_a5d7f3441350cb6d2affa42f8cf96109);
var marker_e6b2ca1220fa090884b27d61fae2db97 = L.marker(
[26.6528192238428, 49.9574623122561],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_a22b5ed4899584cd84c13e09e918ff4d = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3be5bdbffb007b9efe55eff66b209a71 = L.popup({
"maxWidth": 320,
});
var html_74f298b24b176d51ac66ee6c6d72c44e = $(`<div id="html_74f298b24b176d51ac66ee6c6d72c44e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مركز أرض السعادة ضيافة الأطفال الأهلية<br> <b>الرقم الموحد:</b> 7018025358<br> <b>السجل التجاري:</b> 2063606682<br> <b>الحي:</b> المروة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.6528192238428,49.9574623122561" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3be5bdbffb007b9efe55eff66b209a71.setContent(html_74f298b24b176d51ac66ee6c6d72c44e);
marker_e6b2ca1220fa090884b27d61fae2db97.bindPopup(popup_3be5bdbffb007b9efe55eff66b209a71)
;
marker_e6b2ca1220fa090884b27d61fae2db97.setIcon(icon_a22b5ed4899584cd84c13e09e918ff4d);
var marker_ade528e22b819101a5a082dc910d25a6 = L.marker(
[26.6510218, 49.96094314],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_4aeb13557f0e7acc72d9964e78120fad = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_353959ff94ab281d510b1d59ce4cb547 = L.popup({
"maxWidth": 320,
});
var html_6ff0347fac0288b59f1e407e460aca68 = $(`<div id="html_6ff0347fac0288b59f1e407e460aca68" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سلسبيل الصفا للتشغيل والصيانة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7013899799<br> <b>السجل التجاري:</b> 2063019814<br> <b>الحي:</b> المروة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.6510218,49.96094314" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_353959ff94ab281d510b1d59ce4cb547.setContent(html_6ff0347fac0288b59f1e407e460aca68);
marker_ade528e22b819101a5a082dc910d25a6.bindPopup(popup_353959ff94ab281d510b1d59ce4cb547)
;
marker_ade528e22b819101a5a082dc910d25a6.setIcon(icon_4aeb13557f0e7acc72d9964e78120fad);
var marker_347bc12b0e74505946d74bda1c5bad53 = L.marker(
[26.646760529862, 49.96492729723015],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_e58c9e243c2573f32881b905c878ad3d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7f6b5ecf7f6654df58914ed2c88a3c8f = L.popup({
"maxWidth": 320,
});
var html_dab944ddc81c08ec420fb2c75f7c0391 = $(`<div id="html_dab944ddc81c08ec420fb2c75f7c0391" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الشلال الذهبي التجارية<br> <b>الرقم الموحد:</b> 7013903245<br> <b>السجل التجاري:</b> 2053010208<br> <b>الحي:</b> المروة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.646760529862,49.96492729723015" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7f6b5ecf7f6654df58914ed2c88a3c8f.setContent(html_dab944ddc81c08ec420fb2c75f7c0391);
marker_347bc12b0e74505946d74bda1c5bad53.bindPopup(popup_7f6b5ecf7f6654df58914ed2c88a3c8f)
;
marker_347bc12b0e74505946d74bda1c5bad53.setIcon(icon_e58c9e243c2573f32881b905c878ad3d);
var marker_8e662765b40f2cc313aa2ab1cf265fa3 = L.marker(
[26.6404531145485, 49.9640631147202],
{
}
).addTo(map_2c80ecda256df11d196b95feb0fda62b);
var icon_29a2ee5985507ff88468f7a9dc1473fd = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5620ae87459f1bf9789979b2859090d2 = L.popup({
"maxWidth": 320,
});
var html_ec7fdf442be671f50b266c0e270111b8 = $(`<div id="html_ec7fdf442be671f50b266c0e270111b8" 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> 2063003737<br> <b>الحي:</b> الشورى<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.6404531145485,49.9640631147202" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5620ae87459f1bf9789979b2859090d2.setContent(html_ec7fdf442be671f50b266c0e270111b8);
marker_8e662765b40f2cc313aa2ab1cf265fa3.bindPopup(popup_5620ae87459f1bf9789979b2859090d2)
;
marker_8e662765b40f2cc313aa2ab1cf265fa3.setIcon(icon_29a2ee5985507ff88468f7a9dc1473fd);
</script>
</html> |