8323f89
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 | <!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_cb1a2f8d6a49da16b473a7fbd3943058 {
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_44" onclick="
var panel = document.getElementById('stats_44');
var btn = document.getElementById('btn_stats_44');
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_44" 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;
">عبدالهادي حسين بن ابراهيم الهاشم - 44</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 118</div>
<div><b>عدد الحارات:</b> 39</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• الطرف: 9</div><div>• الفيصلية الثاني: 8</div><div>• الشهابية: 8</div><div>• الروضة: 7</div><div>• الملك فهد: 6</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_44_عبدالهادي_حسين_بن_ابراهيم_الهاشم.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;">(82)</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;">(36)</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_cb1a2f8d6a49da16b473a7fbd3943058" ></div>
</body>
<script>
var map_cb1a2f8d6a49da16b473a7fbd3943058 = L.map(
"map_cb1a2f8d6a49da16b473a7fbd3943058",
{
center: [25.3572110789713, 49.65486297285594],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_72716788c86ed84c5c59c7b222963810 = 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_72716788c86ed84c5c59c7b222963810.addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var tile_layer_03c728d7a1571815ae9822926bdac8af = 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_03c728d7a1571815ae9822926bdac8af.addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var tile_layer_033d485bb0a56fc2e34dfe5215d2f8f2 = 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_033d485bb0a56fc2e34dfe5215d2f8f2.addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var locate_control_440350ca3d34b83a64b28d774d880c4a = L.control.locate(
{}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var marker_dfcbaf37d3f22aaf6d0b37256349473d = L.marker(
[25.27206546, 49.81766092],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_e0ed60777567958c7c774317dd522933 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_32ca9e510b3f779f0e8158fab5f90265 = L.popup({
"maxWidth": 320,
});
var html_47cb77e6d07e263ae8b7d7110f800e4c = $(`<div id="html_47cb77e6d07e263ae8b7d7110f800e4c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الحسين والعفالق<br> <b>الرقم الموحد:</b> 7000675368<br> <b>السجل التجاري:</b> 2252000559<br> <b>الحي:</b> الباهيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.27206546,49.81766092" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_32ca9e510b3f779f0e8158fab5f90265.setContent(html_47cb77e6d07e263ae8b7d7110f800e4c);
marker_dfcbaf37d3f22aaf6d0b37256349473d.bindPopup(popup_32ca9e510b3f779f0e8158fab5f90265)
;
marker_dfcbaf37d3f22aaf6d0b37256349473d.setIcon(icon_e0ed60777567958c7c774317dd522933);
var marker_e53f8f106791191e0367d553405332dd = L.marker(
[25.264831398431, 49.831992168927],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_aff643354640bd1e3c95a93547de08c1 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fb71cd49c9a905f23b436d85ae133f33 = L.popup({
"maxWidth": 320,
});
var html_2d408ea429a09e0af190ecd4701a3422 = $(`<div id="html_2d408ea429a09e0af190ecd4701a3422" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الشركة الشرقية للخرسانة الجاهزة<br> <b>الرقم الموحد:</b> 7006950930<br> <b>السجل التجاري:</b> 2251042103<br> <b>الحي:</b> الباهيه<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.264831398431,49.831992168927" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fb71cd49c9a905f23b436d85ae133f33.setContent(html_2d408ea429a09e0af190ecd4701a3422);
marker_e53f8f106791191e0367d553405332dd.bindPopup(popup_fb71cd49c9a905f23b436d85ae133f33)
;
marker_e53f8f106791191e0367d553405332dd.setIcon(icon_aff643354640bd1e3c95a93547de08c1);
var marker_dac0fe551a7f83179c265dc541ecec56 = L.marker(
[25.25084755, 49.82512186],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_56c6e72393fc5542cca1bb121c3896cb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4ea29c356ed6d628482fc2a41c3ce62d = L.popup({
"maxWidth": 320,
});
var html_267b5d3e33b3095019e9334fe116cc83 = $(`<div id="html_267b5d3e33b3095019e9334fe116cc83" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع صالح سليم القنبر للمنتجات الاسمنتية<br> <b>الرقم الموحد:</b> 7004710781<br> <b>السجل التجاري:</b> 2251492340<br> <b>الحي:</b> الباهيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.25084755,49.82512186" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4ea29c356ed6d628482fc2a41c3ce62d.setContent(html_267b5d3e33b3095019e9334fe116cc83);
marker_dac0fe551a7f83179c265dc541ecec56.bindPopup(popup_4ea29c356ed6d628482fc2a41c3ce62d)
;
marker_dac0fe551a7f83179c265dc541ecec56.setIcon(icon_56c6e72393fc5542cca1bb121c3896cb);
var marker_02f474c24fea298462cc4b69f2c1c0d4 = L.marker(
[25.26939693, 49.81555445],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_f943efacac33e6dcf0ac93e00cd38290 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a19cc711d8cd927b4dc9d335a515e5dd = L.popup({
"maxWidth": 320,
});
var html_988094744533b388bedff077d9340d17 = $(`<div id="html_988094744533b388bedff077d9340d17" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع شركة تنمية المصادر للخرسانة الجاهزة<br> <b>الرقم الموحد:</b> 7001471890<br> <b>السجل التجاري:</b> 2252040798<br> <b>الحي:</b> الباهيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.26939693,49.81555445" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a19cc711d8cd927b4dc9d335a515e5dd.setContent(html_988094744533b388bedff077d9340d17);
marker_02f474c24fea298462cc4b69f2c1c0d4.bindPopup(popup_a19cc711d8cd927b4dc9d335a515e5dd)
;
marker_02f474c24fea298462cc4b69f2c1c0d4.setIcon(icon_f943efacac33e6dcf0ac93e00cd38290);
var marker_53a59648705ba65dcb1d7785b68ad3a5 = L.marker(
[25.40425253, 49.6932722],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_fbce0debedc604311591856e790a3791 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_72f9af59efc70983b2e5d8cc8f31313b = L.popup({
"maxWidth": 320,
});
var html_0a78783510d52f7034623c0b2341d950 = $(`<div id="html_0a78783510d52f7034623c0b2341d950" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة باب المزاج التجارية<br> <b>الرقم الموحد:</b> 7008189891<br> <b>السجل التجاري:</b> 2031104491<br> <b>الحي:</b> التهيميه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.40425253,49.6932722" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_72f9af59efc70983b2e5d8cc8f31313b.setContent(html_0a78783510d52f7034623c0b2341d950);
marker_53a59648705ba65dcb1d7785b68ad3a5.bindPopup(popup_72f9af59efc70983b2e5d8cc8f31313b)
;
marker_53a59648705ba65dcb1d7785b68ad3a5.setIcon(icon_fbce0debedc604311591856e790a3791);
var marker_f03fd1b16313ad3a9fb2e57f47dc4ff6 = L.marker(
[25.390761067110205, 49.75556337274611],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_d7284d9ca10ca300f15221ebeb426633 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_09e992699014df4ea01e189a5253801e = L.popup({
"maxWidth": 320,
});
var html_e93583af3e43f3089498c8621cade2fe = $(`<div id="html_e93583af3e43f3089498c8621cade2fe" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الشوايا الذكيه لتقديم الوجبات<br> <b>الرقم الموحد:</b> 7038289893<br> <b>السجل التجاري:</b> 2031115062<br> <b>الحي:</b> الجشة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.390761067110205,49.75556337274611" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_09e992699014df4ea01e189a5253801e.setContent(html_e93583af3e43f3089498c8621cade2fe);
marker_f03fd1b16313ad3a9fb2e57f47dc4ff6.bindPopup(popup_09e992699014df4ea01e189a5253801e)
;
marker_f03fd1b16313ad3a9fb2e57f47dc4ff6.setIcon(icon_d7284d9ca10ca300f15221ebeb426633);
var marker_c439b49e691dba8b34050b14f1dcda72 = L.marker(
[25.374478507748496, 49.7243842527193],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_2e538d25c444b824ecb5cd0ce2d41bb2 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dadc7de3be78b47ea9ee645ca79005fa = L.popup({
"maxWidth": 320,
});
var html_b2dff7fb08ccfa473fed0a81a266828e = $(`<div id="html_b2dff7fb08ccfa473fed0a81a266828e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ستور التوريدات التجارية<br> <b>الرقم الموحد:</b> 7002061203<br> <b>السجل التجاري:</b> 2250160665<br> <b>الحي:</b> الجفر<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.374478507748496,49.7243842527193" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dadc7de3be78b47ea9ee645ca79005fa.setContent(html_b2dff7fb08ccfa473fed0a81a266828e);
marker_c439b49e691dba8b34050b14f1dcda72.bindPopup(popup_dadc7de3be78b47ea9ee645ca79005fa)
;
marker_c439b49e691dba8b34050b14f1dcda72.setIcon(icon_2e538d25c444b824ecb5cd0ce2d41bb2);
var marker_81939f3a92e35b0d5770027ecbdc996e = L.marker(
[25.3787644616193, 49.72368686044351],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_7f11a037be607da7f0e7c2bdd62f62d6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cce625d0d457392f4246d5c532a5625f = L.popup({
"maxWidth": 320,
});
var html_6a54cb5dc6d3c4a12334ea739c10ff5a = $(`<div id="html_6a54cb5dc6d3c4a12334ea739c10ff5a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عبدالله مهنا الجمعان وأولاده للمقاولات<br> <b>الرقم الموحد:</b> 7009243333<br> <b>السجل التجاري:</b> 2250001372<br> <b>الحي:</b> الجفر<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3787644616193,49.72368686044351" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cce625d0d457392f4246d5c532a5625f.setContent(html_6a54cb5dc6d3c4a12334ea739c10ff5a);
marker_81939f3a92e35b0d5770027ecbdc996e.bindPopup(popup_cce625d0d457392f4246d5c532a5625f)
;
marker_81939f3a92e35b0d5770027ecbdc996e.setIcon(icon_7f11a037be607da7f0e7c2bdd62f62d6);
var marker_13cf982a0d008d4f6b025815e0b5be0d = L.marker(
[25.37990764506563, 49.72982367609832],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_3261eaac197e12aa2240252e00b73d2f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b8a7e9aadc037ddabb146317a7fbfe77 = L.popup({
"maxWidth": 320,
});
var html_522d9badb245cea674419b17f379261f = $(`<div id="html_522d9badb245cea674419b17f379261f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عزة المجد التجارية<br> <b>الرقم الموحد:</b> 7041355483<br> <b>السجل التجاري:</b> 2050193860<br> <b>الحي:</b> الجفر<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.37990764506563,49.72982367609832" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b8a7e9aadc037ddabb146317a7fbfe77.setContent(html_522d9badb245cea674419b17f379261f);
marker_13cf982a0d008d4f6b025815e0b5be0d.bindPopup(popup_b8a7e9aadc037ddabb146317a7fbfe77)
;
marker_13cf982a0d008d4f6b025815e0b5be0d.setIcon(icon_3261eaac197e12aa2240252e00b73d2f);
var marker_badfb9639c116287bd1e7cc866940130 = L.marker(
[25.41293778, 49.72127837],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_32da50e579bfbded87489f01ce946683 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2276070c76ff7e53dbb9dd4e5cb8eb1b = L.popup({
"maxWidth": 320,
});
var html_fc7f6389eda278273eefe82e2737fbcc = $(`<div id="html_fc7f6389eda278273eefe82e2737fbcc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مجمع الرضا الطبي<br> <b>الرقم الموحد:</b> 7013879957<br> <b>السجل التجاري:</b> 2250010136<br> <b>الحي:</b> الحوطة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.41293778,49.72127837" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2276070c76ff7e53dbb9dd4e5cb8eb1b.setContent(html_fc7f6389eda278273eefe82e2737fbcc);
marker_badfb9639c116287bd1e7cc866940130.bindPopup(popup_2276070c76ff7e53dbb9dd4e5cb8eb1b)
;
marker_badfb9639c116287bd1e7cc866940130.setIcon(icon_32da50e579bfbded87489f01ce946683);
var marker_1f69f040e42c32394632fa9bf37464ed = L.marker(
[25.41460894, 49.72323866],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_26cd401b94bd8ed21c229023d5a58480 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7d92739aae8cfe1aed6c448e7ee60d0a = L.popup({
"maxWidth": 320,
});
var html_c809a445186408cf660d67abd0443609 = $(`<div id="html_c809a445186408cf660d67abd0443609" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة كون الأقفال للتجارة<br> <b>الرقم الموحد:</b> 7016036118<br> <b>السجل التجاري:</b> 2250374906<br> <b>الحي:</b> الحوطة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.41460894,49.72323866" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7d92739aae8cfe1aed6c448e7ee60d0a.setContent(html_c809a445186408cf660d67abd0443609);
marker_1f69f040e42c32394632fa9bf37464ed.bindPopup(popup_7d92739aae8cfe1aed6c448e7ee60d0a)
;
marker_1f69f040e42c32394632fa9bf37464ed.setIcon(icon_26cd401b94bd8ed21c229023d5a58480);
var marker_119f634c488be4a7b282cc1899228187 = L.marker(
[25.41459434015, 49.7211405254435],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_e5aefdd916a3ae354ffb18caa4a92818 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_47d9933ad50e838e9e8b47064a9378f7 = L.popup({
"maxWidth": 320,
});
var html_1077677d37d6af0142e46d48e44ae4bc = $(`<div id="html_1077677d37d6af0142e46d48e44ae4bc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة تغاريد للخط والرسم<br> <b>الرقم الموحد:</b> 7015060986<br> <b>السجل التجاري:</b> 2250044339<br> <b>الحي:</b> الحوطة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.41459434015,49.7211405254435" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_47d9933ad50e838e9e8b47064a9378f7.setContent(html_1077677d37d6af0142e46d48e44ae4bc);
marker_119f634c488be4a7b282cc1899228187.bindPopup(popup_47d9933ad50e838e9e8b47064a9378f7)
;
marker_119f634c488be4a7b282cc1899228187.setIcon(icon_e5aefdd916a3ae354ffb18caa4a92818);
var marker_4300b60f691230fb31170a08be95bd4b = L.marker(
[25.415237555427, 49.7222736018412],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_46dc54093ac0628f5c30388becd373a9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a0500b38a598134cbb0f8e016e5711f4 = L.popup({
"maxWidth": 320,
});
var html_23310b24109531f4bb83ecb79c46fba7 = $(`<div id="html_23310b24109531f4bb83ecb79c46fba7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة غابة نوره التجارية<br> <b>الرقم الموحد:</b> 7003515405<br> <b>السجل التجاري:</b> 2251066139<br> <b>الحي:</b> الحوطة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.415237555427,49.7222736018412" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a0500b38a598134cbb0f8e016e5711f4.setContent(html_23310b24109531f4bb83ecb79c46fba7);
marker_4300b60f691230fb31170a08be95bd4b.bindPopup(popup_a0500b38a598134cbb0f8e016e5711f4)
;
marker_4300b60f691230fb31170a08be95bd4b.setIcon(icon_46dc54093ac0628f5c30388becd373a9);
var marker_89457b7742c5906153fe65fa65f8e476 = L.marker(
[25.3976584, 49.68184023],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_a03966ee4650777656d42bd2f5173588 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3a0ef399811d039a1b6fd24edd1f13fa = L.popup({
"maxWidth": 320,
});
var html_c7a39f0b39970685656fc32785e1760d = $(`<div id="html_c7a39f0b39970685656fc32785e1760d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع نبع الرضا للصناعة<br> <b>الرقم الموحد:</b> 7005784389<br> <b>السجل التجاري:</b> 2250374223<br> <b>الحي:</b> الدالوه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3976584,49.68184023" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3a0ef399811d039a1b6fd24edd1f13fa.setContent(html_c7a39f0b39970685656fc32785e1760d);
marker_89457b7742c5906153fe65fa65f8e476.bindPopup(popup_3a0ef399811d039a1b6fd24edd1f13fa)
;
marker_89457b7742c5906153fe65fa65f8e476.setIcon(icon_a03966ee4650777656d42bd2f5173588);
var marker_a531657dd4b7c1c107c52a9c5f8af226 = L.marker(
[25.3907104758389, 49.654297223302095],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_82338f59f7decf12b0196d960024aba6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c2e5f54052bb607b1b30b45984ecee37 = L.popup({
"maxWidth": 320,
});
var html_839626c74eea088e08b5c53478ef94ef = $(`<div id="html_839626c74eea088e08b5c53478ef94ef" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة خمسة اقمار للمقاولات العامة<br> <b>الرقم الموحد:</b> 7008938255<br> <b>السجل التجاري:</b> 2031101319<br> <b>الحي:</b> الشهارين<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3907104758389,49.654297223302095" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c2e5f54052bb607b1b30b45984ecee37.setContent(html_839626c74eea088e08b5c53478ef94ef);
marker_a531657dd4b7c1c107c52a9c5f8af226.bindPopup(popup_c2e5f54052bb607b1b30b45984ecee37)
;
marker_a531657dd4b7c1c107c52a9c5f8af226.setIcon(icon_82338f59f7decf12b0196d960024aba6);
var marker_039a2e028c180c0c851f9f6b16ef0ec4 = L.marker(
[25.3932785250153, 49.6569025684898],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_199d6d5b9f18d335462964e0b097f459 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c4e5e8ee410c775f555fb8d748c3d773 = L.popup({
"maxWidth": 320,
});
var html_3827a1590be819ad963ee7596be30c69 = $(`<div id="html_3827a1590be819ad963ee7596be30c69" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ابناء محمد موسى بوخمسين<br> <b>الرقم الموحد:</b> 7011802647<br> <b>السجل التجاري:</b> 2250001187<br> <b>الحي:</b> الشهارين<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3932785250153,49.6569025684898" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c4e5e8ee410c775f555fb8d748c3d773.setContent(html_3827a1590be819ad963ee7596be30c69);
marker_039a2e028c180c0c851f9f6b16ef0ec4.bindPopup(popup_c4e5e8ee410c775f555fb8d748c3d773)
;
marker_039a2e028c180c0c851f9f6b16ef0ec4.setIcon(icon_199d6d5b9f18d335462964e0b097f459);
var marker_ea526411c8fcf96a3ed4db92337bed0a = L.marker(
[25.3575967017135, 49.7448699363973],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_022dc00ebdf18911364cb0283c760afa = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_76a17400a0f874ca8f782a14a284c34e = L.popup({
"maxWidth": 320,
});
var html_7f10d83bb42885fd04f5c0465d918e09 = $(`<div id="html_7f10d83bb42885fd04f5c0465d918e09" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة العمدة المحدودة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7002073935<br> <b>السجل التجاري:</b> 2251114862<br> <b>الحي:</b> الطرف<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.3575967017135,49.7448699363973" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_76a17400a0f874ca8f782a14a284c34e.setContent(html_7f10d83bb42885fd04f5c0465d918e09);
marker_ea526411c8fcf96a3ed4db92337bed0a.bindPopup(popup_76a17400a0f874ca8f782a14a284c34e)
;
marker_ea526411c8fcf96a3ed4db92337bed0a.setIcon(icon_022dc00ebdf18911364cb0283c760afa);
var marker_f78afb1d5e6cf43544fd4662d4970a0f = L.marker(
[25.36107669, 49.72399637],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_6c72dd068921d7cf46688117e05d85ba = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_eee3268668f58656752be932a65c1f5b = L.popup({
"maxWidth": 320,
});
var html_05b565e8c7561c7cf7c1c9c04901af2f = $(`<div id="html_05b565e8c7561c7cf7c1c9c04901af2f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة محمد علي بن عبدالله الناجم للمقاولات<br> <b>الرقم الموحد:</b> 7006243526<br> <b>السجل التجاري:</b> 2250041856<br> <b>الحي:</b> الطرف<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.36107669,49.72399637" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_eee3268668f58656752be932a65c1f5b.setContent(html_05b565e8c7561c7cf7c1c9c04901af2f);
marker_f78afb1d5e6cf43544fd4662d4970a0f.bindPopup(popup_eee3268668f58656752be932a65c1f5b)
;
marker_f78afb1d5e6cf43544fd4662d4970a0f.setIcon(icon_6c72dd068921d7cf46688117e05d85ba);
var marker_889092f9679c4a1446fc52018498a301 = L.marker(
[25.34692767, 49.71974489],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_822b2a44288b2e3b443d5a75f3f3e14c = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3ee8a92449710b2d3a21fff677abf09f = L.popup({
"maxWidth": 320,
});
var html_3661f2445db10780215ad0c86cdac22c = $(`<div id="html_3661f2445db10780215ad0c86cdac22c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة محمد بن عبدالرحمن بن صالح السلطان للمقاولات المعمارية العامة<br> <b>الرقم الموحد:</b> 7005340380<br> <b>السجل التجاري:</b> 2031100633<br> <b>الحي:</b> الطرف<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.34692767,49.71974489" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3ee8a92449710b2d3a21fff677abf09f.setContent(html_3661f2445db10780215ad0c86cdac22c);
marker_889092f9679c4a1446fc52018498a301.bindPopup(popup_3ee8a92449710b2d3a21fff677abf09f)
;
marker_889092f9679c4a1446fc52018498a301.setIcon(icon_822b2a44288b2e3b443d5a75f3f3e14c);
var marker_699e43a2caf3ee87dad67459346f55d4 = L.marker(
[25.3530242584217, 49.7348375331716],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_e681b89a296bec4d5f5ebb0ad6f8dd7b = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_860a0b6eac1cb6811dd0ed8b7a933107 = L.popup({
"maxWidth": 320,
});
var html_16c8a3071781e8a31484c79a7a09e459 = $(`<div id="html_16c8a3071781e8a31484c79a7a09e459" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة المنفذ الإحترافي للمقاولات<br> <b>الرقم الموحد:</b> 7014120583<br> <b>السجل التجاري:</b> 2250050316<br> <b>الحي:</b> الطرف<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.3530242584217,49.7348375331716" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_860a0b6eac1cb6811dd0ed8b7a933107.setContent(html_16c8a3071781e8a31484c79a7a09e459);
marker_699e43a2caf3ee87dad67459346f55d4.bindPopup(popup_860a0b6eac1cb6811dd0ed8b7a933107)
;
marker_699e43a2caf3ee87dad67459346f55d4.setIcon(icon_e681b89a296bec4d5f5ebb0ad6f8dd7b);
var marker_6a46d6f1561ca853c6230beb2295813e = L.marker(
[25.36105981, 49.72542111],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_8ec16eeca3f5e985e93b49e6fd70acca = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7120515d16fb6cda9c5ce928dcb5bce4 = L.popup({
"maxWidth": 320,
});
var html_73b43b240d4c99b136fabaa34ae1439a = $(`<div id="html_73b43b240d4c99b136fabaa34ae1439a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الامتثال القوي للمقاولات<br> <b>الرقم الموحد:</b> 7010425978<br> <b>السجل التجاري:</b> 2251112417<br> <b>الحي:</b> الطرف<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.36105981,49.72542111" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7120515d16fb6cda9c5ce928dcb5bce4.setContent(html_73b43b240d4c99b136fabaa34ae1439a);
marker_6a46d6f1561ca853c6230beb2295813e.bindPopup(popup_7120515d16fb6cda9c5ce928dcb5bce4)
;
marker_6a46d6f1561ca853c6230beb2295813e.setIcon(icon_8ec16eeca3f5e985e93b49e6fd70acca);
var marker_07f693ee8f6edb7a30ac8993883e0e4d = L.marker(
[25.35925712, 49.74201676],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_7da8c46dbe65cd1e975b3fb5c604c90a = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ed6ca2ae3a9d57d4a60138802f4d860c = L.popup({
"maxWidth": 320,
});
var html_581d8cda00ce6e7b083cb29379b3b0c1 = $(`<div id="html_581d8cda00ce6e7b083cb29379b3b0c1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة طوعه رضوان الخليفه للمقاولات العامة<br> <b>الرقم الموحد:</b> 7004990128<br> <b>السجل التجاري:</b> 2250373949<br> <b>الحي:</b> الطرف<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.35925712,49.74201676" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ed6ca2ae3a9d57d4a60138802f4d860c.setContent(html_581d8cda00ce6e7b083cb29379b3b0c1);
marker_07f693ee8f6edb7a30ac8993883e0e4d.bindPopup(popup_ed6ca2ae3a9d57d4a60138802f4d860c)
;
marker_07f693ee8f6edb7a30ac8993883e0e4d.setIcon(icon_7da8c46dbe65cd1e975b3fb5c604c90a);
var marker_1db94d02ea0f41a677da8a701d238e2d = L.marker(
[25.35627747, 49.74176415],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_e623a67804b6943ce0b07d9d75e9317c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_688f7603eacdd61bb664bd77710136ab = L.popup({
"maxWidth": 320,
});
var html_11e9b9b59be04c9f4f70261673d533c7 = $(`<div id="html_11e9b9b59be04c9f4f70261673d533c7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ريم شاكر الاحمد<br> <b>الرقم الموحد:</b> 7005682625<br> <b>السجل التجاري:</b> 2251493225<br> <b>الحي:</b> الطرف<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.35627747,49.74176415" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_688f7603eacdd61bb664bd77710136ab.setContent(html_11e9b9b59be04c9f4f70261673d533c7);
marker_1db94d02ea0f41a677da8a701d238e2d.bindPopup(popup_688f7603eacdd61bb664bd77710136ab)
;
marker_1db94d02ea0f41a677da8a701d238e2d.setIcon(icon_e623a67804b6943ce0b07d9d75e9317c);
var marker_c7e72794834c169d00b55a503b42bbdc = L.marker(
[25.3729290860001, 49.724017927],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_8917a83b2253ead13e4d868a81a73ea1 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_837e42b1a7bba6cc15d8f8a72c4d707c = L.popup({
"maxWidth": 320,
});
var html_3a273ff3bc485e492c008d849b458c64 = $(`<div id="html_3a273ff3bc485e492c008d849b458c64" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة أحمد علي الصفان للمقاولات<br> <b>الرقم الموحد:</b> 7014956895<br> <b>السجل التجاري:</b> 2250026318<br> <b>الحي:</b> الطرف<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.3729290860001,49.724017927" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_837e42b1a7bba6cc15d8f8a72c4d707c.setContent(html_3a273ff3bc485e492c008d849b458c64);
marker_c7e72794834c169d00b55a503b42bbdc.bindPopup(popup_837e42b1a7bba6cc15d8f8a72c4d707c)
;
marker_c7e72794834c169d00b55a503b42bbdc.setIcon(icon_8917a83b2253ead13e4d868a81a73ea1);
var marker_c58ef71e3efa4b74f6aa3e03b403a88f = L.marker(
[25.358672960104084, 49.72480025750747],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_1469e0af7c5eae6f174fc07a73d6ae0d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5a3ebb2b5c38e30b64653535e7d0bb72 = L.popup({
"maxWidth": 320,
});
var html_93cf55f5df896a1e04476bdb496ef09f = $(`<div id="html_93cf55f5df896a1e04476bdb496ef09f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مازن فهد البراهيم للمقاولات<br> <b>الرقم الموحد:</b> 7013028761<br> <b>السجل التجاري:</b> 2250027524<br> <b>الحي:</b> الطرف<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.358672960104084,49.72480025750747" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5a3ebb2b5c38e30b64653535e7d0bb72.setContent(html_93cf55f5df896a1e04476bdb496ef09f);
marker_c58ef71e3efa4b74f6aa3e03b403a88f.bindPopup(popup_5a3ebb2b5c38e30b64653535e7d0bb72)
;
marker_c58ef71e3efa4b74f6aa3e03b403a88f.setIcon(icon_1469e0af7c5eae6f174fc07a73d6ae0d);
var marker_ec9c02ab770ce478070935ae05775bba = L.marker(
[25.36670455, 49.7225398],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_8bb4cba6b001d4ab30a3eaba65e8bc36 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_12f3e57a7f6bec9e95b7984c2d3a85e6 = L.popup({
"maxWidth": 320,
});
var html_f9d1b9bab83af8c26d89d10d73c16259 = $(`<div id="html_f9d1b9bab83af8c26d89d10d73c16259" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الطرف النموذجية للترفيه<br> <b>الرقم الموحد:</b> 7014222025<br> <b>السجل التجاري:</b> 2250038160<br> <b>الحي:</b> مخطط مستقبلي<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.36670455,49.7225398" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_12f3e57a7f6bec9e95b7984c2d3a85e6.setContent(html_f9d1b9bab83af8c26d89d10d73c16259);
marker_ec9c02ab770ce478070935ae05775bba.bindPopup(popup_12f3e57a7f6bec9e95b7984c2d3a85e6)
;
marker_ec9c02ab770ce478070935ae05775bba.setIcon(icon_8bb4cba6b001d4ab30a3eaba65e8bc36);
var marker_cac713fc0f4d3f7b1059b15559469108 = L.marker(
[25.411031217470896, 49.7082796873203],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_5640a47000ad66cbcff5f4d5a199ce2a = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_16e40cc7e55a2ade7d71092e493b2f5d = L.popup({
"maxWidth": 320,
});
var html_b10f9b1479ee4eb46b8e1f8a49d1a93c = $(`<div id="html_b10f9b1479ee4eb46b8e1f8a49d1a93c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة علي محمد احمد السلمان للتجارة<br> <b>الرقم الموحد:</b> 7013955740<br> <b>السجل التجاري:</b> 2250160140<br> <b>الحي:</b> العراميه<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.411031217470896,49.7082796873203" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_16e40cc7e55a2ade7d71092e493b2f5d.setContent(html_b10f9b1479ee4eb46b8e1f8a49d1a93c);
marker_cac713fc0f4d3f7b1059b15559469108.bindPopup(popup_16e40cc7e55a2ade7d71092e493b2f5d)
;
marker_cac713fc0f4d3f7b1059b15559469108.setIcon(icon_5640a47000ad66cbcff5f4d5a199ce2a);
var marker_9b0faf5f48e8000e8c9f38f9ce4910fd = L.marker(
[25.42029197301893, 49.71059405015598],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_3108988ff57ec00fa72448e73b96021b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cd9906d2cb2c09e69baeb58c24937408 = L.popup({
"maxWidth": 320,
});
var html_99ef5f6ef4470f7c428c48c096281597 = $(`<div id="html_99ef5f6ef4470f7c428c48c096281597" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مركز وسط الواحة لصيانة السيارات<br> <b>الرقم الموحد:</b> 7038156514<br> <b>السجل التجاري:</b> 2031114905<br> <b>الحي:</b> العمران الغربية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.42029197301893,49.71059405015598" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cd9906d2cb2c09e69baeb58c24937408.setContent(html_99ef5f6ef4470f7c428c48c096281597);
marker_9b0faf5f48e8000e8c9f38f9ce4910fd.bindPopup(popup_cd9906d2cb2c09e69baeb58c24937408)
;
marker_9b0faf5f48e8000e8c9f38f9ce4910fd.setIcon(icon_3108988ff57ec00fa72448e73b96021b);
var marker_f237cf78e51851bec225b3ba1dde025f = L.marker(
[25.41997876098071, 49.71347155049443],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_961c36bd6656cb9046d437207647e746 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8c24c9da1e0eaa1275a6eea96449450e = L.popup({
"maxWidth": 320,
});
var html_30ceeaa86cef2c7592dfd0972574db17 = $(`<div id="html_30ceeaa86cef2c7592dfd0972574db17" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة باب الغوار<br> <b>الرقم الموحد:</b> 7002491772<br> <b>السجل التجاري:</b> 1010933437<br> <b>الحي:</b> العمران الغربية<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.41997876098071,49.71347155049443" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8c24c9da1e0eaa1275a6eea96449450e.setContent(html_30ceeaa86cef2c7592dfd0972574db17);
marker_f237cf78e51851bec225b3ba1dde025f.bindPopup(popup_8c24c9da1e0eaa1275a6eea96449450e)
;
marker_f237cf78e51851bec225b3ba1dde025f.setIcon(icon_961c36bd6656cb9046d437207647e746);
var marker_e1b1f7dfea7d397962725e3acb9b60ac = L.marker(
[25.4203350619532, 49.7106729959088],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_28bc44820eb4b56116957004dc050a59 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e62f8df3a3af3a1bbcf235694f1525c8 = L.popup({
"maxWidth": 320,
});
var html_04dbd6db93abf8cac70a97e0af796979 = $(`<div id="html_04dbd6db93abf8cac70a97e0af796979" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة احمد بن علي بن محمد الناصر للنجارة<br> <b>الرقم الموحد:</b> 7014521434<br> <b>السجل التجاري:</b> 2250019513<br> <b>الحي:</b> العمران الغربية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.4203350619532,49.7106729959088" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e62f8df3a3af3a1bbcf235694f1525c8.setContent(html_04dbd6db93abf8cac70a97e0af796979);
marker_e1b1f7dfea7d397962725e3acb9b60ac.bindPopup(popup_e62f8df3a3af3a1bbcf235694f1525c8)
;
marker_e1b1f7dfea7d397962725e3acb9b60ac.setIcon(icon_28bc44820eb4b56116957004dc050a59);
var marker_0c44a46fe3046730a2d44b760f7b84ba = L.marker(
[25.27640502, 49.69355976],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_8336f39dc8de1df5ed42fee3fd4ffa4a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5fc873945409822896a5c7029cd9e223 = L.popup({
"maxWidth": 320,
});
var html_5b279c89462745af6dbe2a5a3c8684b9 = $(`<div id="html_5b279c89462745af6dbe2a5a3c8684b9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> عيادة رعاية الصقور البيطرية<br> <b>الرقم الموحد:</b> 7030458819<br> <b>السجل التجاري:</b> 2031110352<br> <b>الحي:</b> الغويبه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.27640502,49.69355976" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5fc873945409822896a5c7029cd9e223.setContent(html_5b279c89462745af6dbe2a5a3c8684b9);
marker_0c44a46fe3046730a2d44b760f7b84ba.bindPopup(popup_5fc873945409822896a5c7029cd9e223)
;
marker_0c44a46fe3046730a2d44b760f7b84ba.setIcon(icon_8336f39dc8de1df5ed42fee3fd4ffa4a);
var marker_6957bd8b457b3b76e55b23c5be40060c = L.marker(
[25.250658677687095, 49.658424027203296],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_fba3b1aee8c18a5f81730057377b52b0 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_16dde348c8c7355161da548c823f2db3 = L.popup({
"maxWidth": 320,
});
var html_11846817edb72da77f59f468f7f5f616 = $(`<div id="html_11846817edb72da77f59f468f7f5f616" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة سواعد هجر للمقاولات<br> <b>الرقم الموحد:</b> 7014707264<br> <b>السجل التجاري:</b> 2252054285<br> <b>الحي:</b> الغويبه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.250658677687095,49.658424027203296" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_16dde348c8c7355161da548c823f2db3.setContent(html_11846817edb72da77f59f468f7f5f616);
marker_6957bd8b457b3b76e55b23c5be40060c.bindPopup(popup_16dde348c8c7355161da548c823f2db3)
;
marker_6957bd8b457b3b76e55b23c5be40060c.setIcon(icon_fba3b1aee8c18a5f81730057377b52b0);
var marker_39ef92314288c9828d5fac682b5f026d = L.marker(
[25.26087106, 49.69097597],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_5b285a5885c215e41dd323912b47247d = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f5e387e26832b9049e823141f275e1e3 = L.popup({
"maxWidth": 320,
});
var html_634db29b616ba6a29cf7311824e3124c = $(`<div id="html_634db29b616ba6a29cf7311824e3124c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مكتب علي سعود سالم المري للعقارات<br> <b>الرقم الموحد:</b> 7016420536<br> <b>السجل التجاري:</b> 2251495961<br> <b>الحي:</b> الغويبه<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.26087106,49.69097597" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f5e387e26832b9049e823141f275e1e3.setContent(html_634db29b616ba6a29cf7311824e3124c);
marker_39ef92314288c9828d5fac682b5f026d.bindPopup(popup_f5e387e26832b9049e823141f275e1e3)
;
marker_39ef92314288c9828d5fac682b5f026d.setIcon(icon_5b285a5885c215e41dd323912b47247d);
var marker_47500947649f2b87835335321c57f7bd = L.marker(
[25.3753650749656, 49.6801199799628],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_42e3b9cf2925202030f13d0927f18a11 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_801be7693a96e90c09b33015092f24d7 = L.popup({
"maxWidth": 320,
});
var html_9cf7234f1caad1fbe48aa32b7b8bf896 = $(`<div id="html_9cf7234f1caad1fbe48aa32b7b8bf896" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مركز جواد خليفه الهويشل للنسخ والتصوير<br> <b>الرقم الموحد:</b> 7008103736<br> <b>السجل التجاري:</b> 2250057083<br> <b>الحي:</b> الفضول<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.3753650749656,49.6801199799628" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_801be7693a96e90c09b33015092f24d7.setContent(html_9cf7234f1caad1fbe48aa32b7b8bf896);
marker_47500947649f2b87835335321c57f7bd.bindPopup(popup_801be7693a96e90c09b33015092f24d7)
;
marker_47500947649f2b87835335321c57f7bd.setIcon(icon_42e3b9cf2925202030f13d0927f18a11);
var marker_fd31d719891ee7d6f13b84d7f684f503 = L.marker(
[25.3739915071908, 49.68381604395261],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_f3366120f23b340709d5fb3aa3a54d42 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b56a89f19d50e3613e780a48d47220d7 = L.popup({
"maxWidth": 320,
});
var html_675d2de04bc1653dea1280531a849641 = $(`<div id="html_675d2de04bc1653dea1280531a849641" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> ورشة بسمة طوس للحدادة والالمنيوم<br> <b>الرقم الموحد:</b> 7014675412<br> <b>السجل التجاري:</b> 2250052958<br> <b>الحي:</b> الفضول<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3739915071908,49.68381604395261" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b56a89f19d50e3613e780a48d47220d7.setContent(html_675d2de04bc1653dea1280531a849641);
marker_fd31d719891ee7d6f13b84d7f684f503.bindPopup(popup_b56a89f19d50e3613e780a48d47220d7)
;
marker_fd31d719891ee7d6f13b84d7f684f503.setIcon(icon_f3366120f23b340709d5fb3aa3a54d42);
var marker_6db6dc6f8e069b1580e331287ce950ee = L.marker(
[25.38236663482129, 49.67173386365175],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_150452a672f3b87cc7a698973f98ce49 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a85cb5b6ae448ceb3f6416b8aeb5b607 = L.popup({
"maxWidth": 320,
});
var html_d224f84226ba53cd735817e0ca27f2fd = $(`<div id="html_d224f84226ba53cd735817e0ca27f2fd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> وكالة طريق الامل للسفر و السياحة<br> <b>الرقم الموحد:</b> 7040945193<br> <b>السجل التجاري:</b> 2031116747<br> <b>الحي:</b> المدينة المنورة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.38236663482129,49.67173386365175" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a85cb5b6ae448ceb3f6416b8aeb5b607.setContent(html_d224f84226ba53cd735817e0ca27f2fd);
marker_6db6dc6f8e069b1580e331287ce950ee.bindPopup(popup_a85cb5b6ae448ceb3f6416b8aeb5b607)
;
marker_6db6dc6f8e069b1580e331287ce950ee.setIcon(icon_150452a672f3b87cc7a698973f98ce49);
var marker_15c45ca46bf43702206aaa46d8371e2a = L.marker(
[25.38007846, 49.66748347],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_cc512db3b03ad4e6e41e26631351deee = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_863ff7833efa72ebe96f22973b398de3 = L.popup({
"maxWidth": 320,
});
var html_a77697321cf67233b7f4d25958cfb2b0 = $(`<div id="html_a77697321cf67233b7f4d25958cfb2b0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة سعاد صالح المسيليم<br> <b>الرقم الموحد:</b> 7025855631<br> <b>السجل التجاري:</b> 2031107041<br> <b>الحي:</b> المدينة المنورة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.38007846,49.66748347" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_863ff7833efa72ebe96f22973b398de3.setContent(html_a77697321cf67233b7f4d25958cfb2b0);
marker_15c45ca46bf43702206aaa46d8371e2a.bindPopup(popup_863ff7833efa72ebe96f22973b398de3)
;
marker_15c45ca46bf43702206aaa46d8371e2a.setIcon(icon_cc512db3b03ad4e6e41e26631351deee);
var marker_c2742b7dbbdcb25e6ac04d3cccf5f26f = L.marker(
[25.3735111996715, 49.667079401686095],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_8d40766ca24171d9438a7f2538d2017a = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_12a572f9cc20064412d4eeada76a0b0b = L.popup({
"maxWidth": 320,
});
var html_e59883f750d733e1670fe9427d9b39d5 = $(`<div id="html_e59883f750d733e1670fe9427d9b39d5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ناصر بن محمد الشريط<br> <b>الرقم الموحد:</b> 7011646358<br> <b>السجل التجاري:</b> 2250063670<br> <b>الحي:</b> المدينة المنورة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.3735111996715,49.667079401686095" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_12a572f9cc20064412d4eeada76a0b0b.setContent(html_e59883f750d733e1670fe9427d9b39d5);
marker_c2742b7dbbdcb25e6ac04d3cccf5f26f.bindPopup(popup_12a572f9cc20064412d4eeada76a0b0b)
;
marker_c2742b7dbbdcb25e6ac04d3cccf5f26f.setIcon(icon_8d40766ca24171d9438a7f2538d2017a);
var marker_084f6b0610dc87bc68d3d1b794673bbf = L.marker(
[25.37872854, 49.67564952],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_f490fa78cf07c7e33604aa70cfbdc777 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b02a128aa46ede2f2fd873c642878354 = L.popup({
"maxWidth": 320,
});
var html_d9f57a4056b009cbfce7f87826b2a0a9 = $(`<div id="html_d9f57a4056b009cbfce7f87826b2a0a9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة المطوع التجارية<br> <b>الرقم الموحد:</b> 7001399588<br> <b>السجل التجاري:</b> 2050014564<br> <b>الحي:</b> المدينة المنورة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.37872854,49.67564952" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b02a128aa46ede2f2fd873c642878354.setContent(html_d9f57a4056b009cbfce7f87826b2a0a9);
marker_084f6b0610dc87bc68d3d1b794673bbf.bindPopup(popup_b02a128aa46ede2f2fd873c642878354)
;
marker_084f6b0610dc87bc68d3d1b794673bbf.setIcon(icon_f490fa78cf07c7e33604aa70cfbdc777);
var marker_346df643dbfd06d214c2e51cd9eacca3 = L.marker(
[25.37495295, 49.67806313],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_f3c3dc137d3dc6f73939d346fa96ef82 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ce842b1601201389539e9f51579bdd52 = L.popup({
"maxWidth": 320,
});
var html_4d91fd6802a53118bc56781d1a7abfe0 = $(`<div id="html_4d91fd6802a53118bc56781d1a7abfe0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عبدالعظيم بن رضى البريه<br> <b>الرقم الموحد:</b> 7025166864<br> <b>السجل التجاري:</b> 2251502943<br> <b>الحي:</b> المدينة المنورة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.37495295,49.67806313" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ce842b1601201389539e9f51579bdd52.setContent(html_4d91fd6802a53118bc56781d1a7abfe0);
marker_346df643dbfd06d214c2e51cd9eacca3.bindPopup(popup_ce842b1601201389539e9f51579bdd52)
;
marker_346df643dbfd06d214c2e51cd9eacca3.setIcon(icon_f3c3dc137d3dc6f73939d346fa96ef82);
var marker_e31bd9ceff87ac9dc7c99516ec66bb52 = L.marker(
[25.38452439, 49.66933237],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_02dc04586e2d8c0e853e388c802f674b = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_972c91dc58a951879829f5ed7a49b605 = L.popup({
"maxWidth": 320,
});
var html_9240d150d2c794bd3494168fb8e209c6 = $(`<div id="html_9240d150d2c794bd3494168fb8e209c6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> استديو الضوء النقي والإبداع للتصوير الفوتوغرافي<br> <b>الرقم الموحد:</b> 7014151299<br> <b>السجل التجاري:</b> 2250061199<br> <b>الحي:</b> المدينة المنورة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.38452439,49.66933237" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_972c91dc58a951879829f5ed7a49b605.setContent(html_9240d150d2c794bd3494168fb8e209c6);
marker_e31bd9ceff87ac9dc7c99516ec66bb52.bindPopup(popup_972c91dc58a951879829f5ed7a49b605)
;
marker_e31bd9ceff87ac9dc7c99516ec66bb52.setIcon(icon_02dc04586e2d8c0e853e388c802f674b);
var marker_bb4663f6509146b4336ae66bc46e1813 = L.marker(
[25.3847094000641, 49.6738729016299],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_144110971ac8774b2257fa4cd8fb7b59 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b20aa13051df9db1e8c62a536665df68 = L.popup({
"maxWidth": 320,
});
var html_daf7d7d115ead394da1fdbe51f8e398c = $(`<div id="html_daf7d7d115ead394da1fdbe51f8e398c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة جناح الهدهد<br> <b>الرقم الموحد:</b> 7009349122<br> <b>السجل التجاري:</b> 2251498014<br> <b>الحي:</b> بلدة المنيزلة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.3847094000641,49.6738729016299" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b20aa13051df9db1e8c62a536665df68.setContent(html_daf7d7d115ead394da1fdbe51f8e398c);
marker_bb4663f6509146b4336ae66bc46e1813.bindPopup(popup_b20aa13051df9db1e8c62a536665df68)
;
marker_bb4663f6509146b4336ae66bc46e1813.setIcon(icon_144110971ac8774b2257fa4cd8fb7b59);
var marker_26ce19ef30930106fa8bef3eb0dd973e = L.marker(
[25.38204035, 49.66154699],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_84af31678449892eb23c565e1b543454 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_33232767f04684c7663dec328d176ac4 = L.popup({
"maxWidth": 320,
});
var html_c3575dfc4fa66adee864ebf8dad23cac = $(`<div id="html_c3575dfc4fa66adee864ebf8dad23cac" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مركز مريم عبدالله بن عيسى السلطان ضيافة الأطفال الأهلية<br> <b>الرقم الموحد:</b> 7034637368<br> <b>السجل التجاري:</b> 2031112246<br> <b>الحي:</b> قباء<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.38204035,49.66154699" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_33232767f04684c7663dec328d176ac4.setContent(html_c3575dfc4fa66adee864ebf8dad23cac);
marker_26ce19ef30930106fa8bef3eb0dd973e.bindPopup(popup_33232767f04684c7663dec328d176ac4)
;
marker_26ce19ef30930106fa8bef3eb0dd973e.setIcon(icon_84af31678449892eb23c565e1b543454);
var marker_363091ce2f2284d394de1c7ff4989c08 = L.marker(
[25.30281056, 49.65930627],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_85d7fe7a9c02138c251a66786ee9680f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_06647bcd12863925712c0c5672198206 = L.popup({
"maxWidth": 320,
});
var html_1ce86529ed7e36f110307d5885698685 = $(`<div id="html_1ce86529ed7e36f110307d5885698685" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة هجر للتعليم والتدريب التقني<br> <b>الرقم الموحد:</b> 7001476766<br> <b>السجل التجاري:</b> 2251031843<br> <b>الحي:</b> مزارع طريق سلوى<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.30281056,49.65930627" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_06647bcd12863925712c0c5672198206.setContent(html_1ce86529ed7e36f110307d5885698685);
marker_363091ce2f2284d394de1c7ff4989c08.bindPopup(popup_06647bcd12863925712c0c5672198206)
;
marker_363091ce2f2284d394de1c7ff4989c08.setIcon(icon_85d7fe7a9c02138c251a66786ee9680f);
var marker_e38564a1cad27f77ecc975f14c36bcc4 = L.marker(
[25.275373340767, 49.6588503637881],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_425b43297118e3954f4ab9e77c1a8d43 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5ab95e051bc3aca9bdcdf3e7d54e50e4 = L.popup({
"maxWidth": 320,
});
var html_6cf078ac70d48c0fe3a43a915bd6a5eb = $(`<div id="html_6cf078ac70d48c0fe3a43a915bd6a5eb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع حمد جمعان العجمي للصناعات المعدنية<br> <b>الرقم الموحد:</b> 7014204080<br> <b>السجل التجاري:</b> 2050121766<br> <b>الحي:</b> مزارع طريق سلوى<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.275373340767,49.6588503637881" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5ab95e051bc3aca9bdcdf3e7d54e50e4.setContent(html_6cf078ac70d48c0fe3a43a915bd6a5eb);
marker_e38564a1cad27f77ecc975f14c36bcc4.bindPopup(popup_5ab95e051bc3aca9bdcdf3e7d54e50e4)
;
marker_e38564a1cad27f77ecc975f14c36bcc4.setIcon(icon_425b43297118e3954f4ab9e77c1a8d43);
var marker_6dc1bf3a53e347bf6d51bfca7a65caf9 = L.marker(
[25.29512423, 49.66017804],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_2a363b13f61fd5b82157c6428b226a3f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c5f355e724b30d4584fceabc947c6973 = L.popup({
"maxWidth": 320,
});
var html_48dc17b815177ec5b524d0d40477d10b = $(`<div id="html_48dc17b815177ec5b524d0d40477d10b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة فال العربية المحدودة<br> <b>الرقم الموحد:</b> 7000082391<br> <b>السجل التجاري:</b> 2054000398<br> <b>الحي:</b> مزارع طريق سلوى<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.29512423,49.66017804" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c5f355e724b30d4584fceabc947c6973.setContent(html_48dc17b815177ec5b524d0d40477d10b);
marker_6dc1bf3a53e347bf6d51bfca7a65caf9.bindPopup(popup_c5f355e724b30d4584fceabc947c6973)
;
marker_6dc1bf3a53e347bf6d51bfca7a65caf9.setIcon(icon_2a363b13f61fd5b82157c6428b226a3f);
var marker_216d9cff40eaf487730762beea950a03 = L.marker(
[25.36611517, 49.6038409],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_27ffcce7dc42054a001d8ad20e47fb01 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_72bb6435cf37affe5bd97068dc09b6bb = L.popup({
"maxWidth": 320,
});
var html_056b1b8b6710f8fc2a4ed59352a35898 = $(`<div id="html_056b1b8b6710f8fc2a4ed59352a35898" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مركز الباشا الرياضي<br> <b>الرقم الموحد:</b> 7014743707<br> <b>السجل التجاري:</b> 2251038967<br> <b>الحي:</b> عين موسى<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.36611517,49.6038409" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_72bb6435cf37affe5bd97068dc09b6bb.setContent(html_056b1b8b6710f8fc2a4ed59352a35898);
marker_216d9cff40eaf487730762beea950a03.bindPopup(popup_72bb6435cf37affe5bd97068dc09b6bb)
;
marker_216d9cff40eaf487730762beea950a03.setIcon(icon_27ffcce7dc42054a001d8ad20e47fb01);
var marker_ecc568c857fd977ae5284b451c80b13b = L.marker(
[25.367716667391008, 49.60345077328384],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_e35f8b3f8ee38846a29097769c2d4bd7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8c47aa752ad11b51cc1d2ad41e307e7d = L.popup({
"maxWidth": 320,
});
var html_e11199c90f0e71d2b2b9fb26b22e6f05 = $(`<div id="html_e11199c90f0e71d2b2b9fb26b22e6f05" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عماد بن عبدالله بن صالح المبارك التجارية<br> <b>الرقم الموحد:</b> 7043726459<br> <b>السجل التجاري:</b> 2031119592<br> <b>الحي:</b> عين موسى<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.367716667391008,49.60345077328384" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8c47aa752ad11b51cc1d2ad41e307e7d.setContent(html_e11199c90f0e71d2b2b9fb26b22e6f05);
marker_ecc568c857fd977ae5284b451c80b13b.bindPopup(popup_8c47aa752ad11b51cc1d2ad41e307e7d)
;
marker_ecc568c857fd977ae5284b451c80b13b.setIcon(icon_e35f8b3f8ee38846a29097769c2d4bd7);
var marker_d5b08d315e1e81b2f0347af6b7a56e63 = L.marker(
[25.36957099, 49.6028888],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_68229ad06318ada01f571127ff34c322 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ad8d7a08f8813b8c8c856401c7fd230f = L.popup({
"maxWidth": 320,
});
var html_423b557c16582fbc4fe7d184e460cd2f = $(`<div id="html_423b557c16582fbc4fe7d184e460cd2f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة صالون افضل منظر للحلاقة<br> <b>الرقم الموحد:</b> 7008990652<br> <b>السجل التجاري:</b> 2031101352<br> <b>الحي:</b> عين موسى<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.36957099,49.6028888" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ad8d7a08f8813b8c8c856401c7fd230f.setContent(html_423b557c16582fbc4fe7d184e460cd2f);
marker_d5b08d315e1e81b2f0347af6b7a56e63.bindPopup(popup_ad8d7a08f8813b8c8c856401c7fd230f)
;
marker_d5b08d315e1e81b2f0347af6b7a56e63.setIcon(icon_68229ad06318ada01f571127ff34c322);
var marker_5c0154080a20dfe9366b24a9b33d70cc = L.marker(
[25.3722496446356, 49.5980254217876],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_f9e3e8b054859db41567bc154a9a5736 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_97187feef8a107a59ee50e637040f6a7 = L.popup({
"maxWidth": 320,
});
var html_1f1850a8bd7b33ff860680789f54e817 = $(`<div id="html_1f1850a8bd7b33ff860680789f54e817" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة محمد بن ابراهيم الجريسان<br> <b>الرقم الموحد:</b> 7023330538<br> <b>السجل التجاري:</b> 2031105921<br> <b>الحي:</b> عين موسى<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.3722496446356,49.5980254217876" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_97187feef8a107a59ee50e637040f6a7.setContent(html_1f1850a8bd7b33ff860680789f54e817);
marker_5c0154080a20dfe9366b24a9b33d70cc.bindPopup(popup_97187feef8a107a59ee50e637040f6a7)
;
marker_5c0154080a20dfe9366b24a9b33d70cc.setIcon(icon_f9e3e8b054859db41567bc154a9a5736);
var marker_07d0887655444f441aeb41e779d66b7d = L.marker(
[25.3935302191727, 49.6042983362689],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_3552d4c369dfed85fbeec83b8e386e73 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_25fab374b3324c55a056df28aeb942bd = L.popup({
"maxWidth": 320,
});
var html_a9b7582c4de3199e0cee9b38a1a45444 = $(`<div id="html_a9b7582c4de3199e0cee9b38a1a45444" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مستشفى حسين علي العلي للخدمات الطبية<br> <b>الرقم الموحد:</b> 7001607972<br> <b>السجل التجاري:</b> 2251039021<br> <b>الحي:</b> الفيصلية الثاني<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3935302191727,49.6042983362689" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_25fab374b3324c55a056df28aeb942bd.setContent(html_a9b7582c4de3199e0cee9b38a1a45444);
marker_07d0887655444f441aeb41e779d66b7d.bindPopup(popup_25fab374b3324c55a056df28aeb942bd)
;
marker_07d0887655444f441aeb41e779d66b7d.setIcon(icon_3552d4c369dfed85fbeec83b8e386e73);
var marker_a68284509c100c02815e6b8fa3645c98 = L.marker(
[25.3944711551172, 49.598306979324335],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_13a8a87ec6286d2ff1d1cd1a50148750 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d41d127f35d3223801636b493d3141c2 = L.popup({
"maxWidth": 320,
});
var html_45a59fb082dbc24027a22c4e5a64843c = $(`<div id="html_45a59fb082dbc24027a22c4e5a64843c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة انامل فنان للدعاية والاعلان<br> <b>الرقم الموحد:</b> 7043204515<br> <b>السجل التجاري:</b> 2031119079<br> <b>الحي:</b> الفيصلية الثاني<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3944711551172,49.598306979324335" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d41d127f35d3223801636b493d3141c2.setContent(html_45a59fb082dbc24027a22c4e5a64843c);
marker_a68284509c100c02815e6b8fa3645c98.bindPopup(popup_d41d127f35d3223801636b493d3141c2)
;
marker_a68284509c100c02815e6b8fa3645c98.setIcon(icon_13a8a87ec6286d2ff1d1cd1a50148750);
var marker_694cacbbf4fa04d1ac57ad238adf342e = L.marker(
[25.39094392, 49.59912123],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_73ce4d144f8c5b58a83849642acfe4d7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7ae639ffe96dc49f6c9855710df64f34 = L.popup({
"maxWidth": 320,
});
var html_a259108a47cea955f2e5e0b6f313dd1a = $(`<div id="html_a259108a47cea955f2e5e0b6f313dd1a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> أسواق اليحيى للمواد الغذائية<br> <b>الرقم الموحد:</b> 7014327097<br> <b>السجل التجاري:</b> 2251003161<br> <b>الحي:</b> الفيصلية الثاني<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.39094392,49.59912123" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7ae639ffe96dc49f6c9855710df64f34.setContent(html_a259108a47cea955f2e5e0b6f313dd1a);
marker_694cacbbf4fa04d1ac57ad238adf342e.bindPopup(popup_7ae639ffe96dc49f6c9855710df64f34)
;
marker_694cacbbf4fa04d1ac57ad238adf342e.setIcon(icon_73ce4d144f8c5b58a83849642acfe4d7);
var marker_0403fd9ccf3a8b9880efbfd075ebee86 = L.marker(
[25.38719396, 49.60023942],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_f045e33ede8853a2b04421b2839b88d6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_86a4bcebf73939bb0e54911b28ea0589 = L.popup({
"maxWidth": 320,
});
var html_e77f147c952f40022ab084b0e60ca9bb = $(`<div id="html_e77f147c952f40022ab084b0e60ca9bb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة يوسف علي العلي للمقاولات<br> <b>الرقم الموحد:</b> 7013821249<br> <b>السجل التجاري:</b> 2251003570<br> <b>الحي:</b> الفيصلية الثاني<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.38719396,49.60023942" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_86a4bcebf73939bb0e54911b28ea0589.setContent(html_e77f147c952f40022ab084b0e60ca9bb);
marker_0403fd9ccf3a8b9880efbfd075ebee86.bindPopup(popup_86a4bcebf73939bb0e54911b28ea0589)
;
marker_0403fd9ccf3a8b9880efbfd075ebee86.setIcon(icon_f045e33ede8853a2b04421b2839b88d6);
var marker_cae7c3243b0962b69fa15f3358665a56 = L.marker(
[25.391371790304095, 49.6024773324012],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_8a889f12c67705bf6696a66eaba64cb9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_725e59fd1e0e7ff1db897b047b90b2d6 = L.popup({
"maxWidth": 320,
});
var html_9bf892d4ff025fc4cf6c287d3adc1f2b = $(`<div id="html_9bf892d4ff025fc4cf6c287d3adc1f2b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الجواد للتجارة والصناعة والمقاولات<br> <b>الرقم الموحد:</b> 7018065073<br> <b>السجل التجاري:</b> 2251007097<br> <b>الحي:</b> الفيصلية الثاني<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.391371790304095,49.6024773324012" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_725e59fd1e0e7ff1db897b047b90b2d6.setContent(html_9bf892d4ff025fc4cf6c287d3adc1f2b);
marker_cae7c3243b0962b69fa15f3358665a56.bindPopup(popup_725e59fd1e0e7ff1db897b047b90b2d6)
;
marker_cae7c3243b0962b69fa15f3358665a56.setIcon(icon_8a889f12c67705bf6696a66eaba64cb9);
var marker_6db5a94404e9f78ff8e3ce5ea2f1d83c = L.marker(
[25.38896472, 49.60354176],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_520350699e134581314814efb12ede8a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e2de21781e18c5dd2597c481c90ced9a = L.popup({
"maxWidth": 320,
});
var html_23cfd995e873652daff639185189a08f = $(`<div id="html_23cfd995e873652daff639185189a08f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عبدالله علي العامر وأخوانه التجارية<br> <b>الرقم الموحد:</b> 7001600613<br> <b>السجل التجاري:</b> 2251025795<br> <b>الحي:</b> الفيصلية الثاني<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.38896472,49.60354176" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e2de21781e18c5dd2597c481c90ced9a.setContent(html_23cfd995e873652daff639185189a08f);
marker_6db5a94404e9f78ff8e3ce5ea2f1d83c.bindPopup(popup_e2de21781e18c5dd2597c481c90ced9a)
;
marker_6db5a94404e9f78ff8e3ce5ea2f1d83c.setIcon(icon_520350699e134581314814efb12ede8a);
var marker_77afb8243225028b4c5982cf37f3742b = L.marker(
[25.3907824986487, 49.6046113488744],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_1c905825fe207089c55a52f46a9922b8 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9be6a908343ccb8eeeff3e49f68dc8e4 = L.popup({
"maxWidth": 320,
});
var html_a3b2937503ceea97616004d784e910dc = $(`<div id="html_a3b2937503ceea97616004d784e910dc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مجمع جوهرة هجر التجاري<br> <b>الرقم الموحد:</b> 7010477276<br> <b>السجل التجاري:</b> 2251023417<br> <b>الحي:</b> الفيصلية الثاني<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3907824986487,49.6046113488744" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9be6a908343ccb8eeeff3e49f68dc8e4.setContent(html_a3b2937503ceea97616004d784e910dc);
marker_77afb8243225028b4c5982cf37f3742b.bindPopup(popup_9be6a908343ccb8eeeff3e49f68dc8e4)
;
marker_77afb8243225028b4c5982cf37f3742b.setIcon(icon_1c905825fe207089c55a52f46a9922b8);
var marker_135a09003921f019ef2c56ae8a15756d = L.marker(
[25.39344433385405, 49.602803837741206],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_d82cc7fa78b1559b769c0c0186d535ed = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_633e0cdd5d271f720aca818caf893bd0 = L.popup({
"maxWidth": 320,
});
var html_b0469d77d10968dd12fda11d62c2caac = $(`<div id="html_b0469d77d10968dd12fda11d62c2caac" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أسس التخطيط والعمارة للاستشارات الهندسية<br> <b>الرقم الموحد:</b> 7037151292<br> <b>السجل التجاري:</b> 2251505850<br> <b>الحي:</b> الفيصلية الثاني<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.39344433385405,49.602803837741206" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_633e0cdd5d271f720aca818caf893bd0.setContent(html_b0469d77d10968dd12fda11d62c2caac);
marker_135a09003921f019ef2c56ae8a15756d.bindPopup(popup_633e0cdd5d271f720aca818caf893bd0)
;
marker_135a09003921f019ef2c56ae8a15756d.setIcon(icon_d82cc7fa78b1559b769c0c0186d535ed);
var marker_dfdd672f906f8007985d4293d7a24e93 = L.marker(
[25.348403675435495, 49.6101180683714],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_1b8307494ca58f8051036d48ca93c128 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1a5ef5b0595161fe0670445dc36b91c3 = L.popup({
"maxWidth": 320,
});
var html_0f851c85b2af4d12fccb08109b701ffb = $(`<div id="html_0f851c85b2af4d12fccb08109b701ffb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عبدالرحمن بن ناصر بن عثمان الحويل للمقاولات<br> <b>الرقم الموحد:</b> 7011889107<br> <b>السجل التجاري:</b> 2251025639<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.348403675435495,49.6101180683714" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1a5ef5b0595161fe0670445dc36b91c3.setContent(html_0f851c85b2af4d12fccb08109b701ffb);
marker_dfdd672f906f8007985d4293d7a24e93.bindPopup(popup_1a5ef5b0595161fe0670445dc36b91c3)
;
marker_dfdd672f906f8007985d4293d7a24e93.setIcon(icon_1b8307494ca58f8051036d48ca93c128);
var marker_754bda1c0bb515866736174e7826b5da = L.marker(
[25.35009422, 49.60770861],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_baaebb14bf65522180c1f0374af28b77 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_03e4bd2aed836dd725b2123514959a7a = L.popup({
"maxWidth": 320,
});
var html_9124691bd7bf685b00676f154ff9567f = $(`<div id="html_9124691bd7bf685b00676f154ff9567f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة أكتيف فيوتشر إيه إف سي<br> <b>الرقم الموحد:</b> 7023690212<br> <b>السجل التجاري:</b> 2251499164<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.35009422,49.60770861" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_03e4bd2aed836dd725b2123514959a7a.setContent(html_9124691bd7bf685b00676f154ff9567f);
marker_754bda1c0bb515866736174e7826b5da.bindPopup(popup_03e4bd2aed836dd725b2123514959a7a)
;
marker_754bda1c0bb515866736174e7826b5da.setIcon(icon_baaebb14bf65522180c1f0374af28b77);
var marker_426ae61b822768a9c8ec8f2642cf0b49 = L.marker(
[25.35506709, 49.60888514],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_9d444cdbb551429b4c87704721d2b8b2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_14ea02abfa8a89c9986ab11c12793ce7 = L.popup({
"maxWidth": 320,
});
var html_937032dd49c1ddbb014f1d4e8fceb144 = $(`<div id="html_937032dd49c1ddbb014f1d4e8fceb144" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة اول اختيار لتقديم الوجبات شركة شخص واحد<br> <b>الرقم الموحد:</b> 7032311693<br> <b>السجل التجاري:</b> 2031111565<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.35506709,49.60888514" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_14ea02abfa8a89c9986ab11c12793ce7.setContent(html_937032dd49c1ddbb014f1d4e8fceb144);
marker_426ae61b822768a9c8ec8f2642cf0b49.bindPopup(popup_14ea02abfa8a89c9986ab11c12793ce7)
;
marker_426ae61b822768a9c8ec8f2642cf0b49.setIcon(icon_9d444cdbb551429b4c87704721d2b8b2);
var marker_4a42e958d229a6b5fb5be632c7407c50 = L.marker(
[25.35696775, 49.60791613],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_53b0649618e04ed6663bc676ef3b0ce3 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_86e70de395892bcf6dfaba5a0a6a1ead = L.popup({
"maxWidth": 320,
});
var html_781d1793034d77c0d0e7897780e07949 = $(`<div id="html_781d1793034d77c0d0e7897780e07949" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة سلمان بن عبدالله بن عبدالعزيز النعيم للتجارة<br> <b>الرقم الموحد:</b> 7007926814<br> <b>السجل التجاري:</b> 2251069455<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.35696775,49.60791613" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_86e70de395892bcf6dfaba5a0a6a1ead.setContent(html_781d1793034d77c0d0e7897780e07949);
marker_4a42e958d229a6b5fb5be632c7407c50.bindPopup(popup_86e70de395892bcf6dfaba5a0a6a1ead)
;
marker_4a42e958d229a6b5fb5be632c7407c50.setIcon(icon_53b0649618e04ed6663bc676ef3b0ce3);
var marker_f3819cabb7697b2253084a150e8859e1 = L.marker(
[25.3514147394945, 49.6091052224881],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_d6ff6154cccf3dea26d301189f27d356 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c12b4cfc3d3330b8c66eb2413de3395d = L.popup({
"maxWidth": 320,
});
var html_49cdc871f5578bb630af4da88a713365 = $(`<div id="html_49cdc871f5578bb630af4da88a713365" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عبدالله راشد العيسى التجارية<br> <b>الرقم الموحد:</b> 7011712374<br> <b>السجل التجاري:</b> 2251031079<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.3514147394945,49.6091052224881" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c12b4cfc3d3330b8c66eb2413de3395d.setContent(html_49cdc871f5578bb630af4da88a713365);
marker_f3819cabb7697b2253084a150e8859e1.bindPopup(popup_c12b4cfc3d3330b8c66eb2413de3395d)
;
marker_f3819cabb7697b2253084a150e8859e1.setIcon(icon_d6ff6154cccf3dea26d301189f27d356);
var marker_9eb7ad8b8a790d980b588385c83105cc = L.marker(
[25.349319803870443, 49.60879659306244],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_fa669c80a4844d748f96a806b06aea8d = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_867b8ef3318fa3fb121205b7845df975 = L.popup({
"maxWidth": 320,
});
var html_a9ecabb94555eba9a2171e29c1657f06 = $(`<div id="html_a9ecabb94555eba9a2171e29c1657f06" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة دروب الخليج لخدمات السيارات<br> <b>الرقم الموحد:</b> 7003941130<br> <b>السجل التجاري:</b> 2251491746<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.349319803870443,49.60879659306244" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_867b8ef3318fa3fb121205b7845df975.setContent(html_a9ecabb94555eba9a2171e29c1657f06);
marker_9eb7ad8b8a790d980b588385c83105cc.bindPopup(popup_867b8ef3318fa3fb121205b7845df975)
;
marker_9eb7ad8b8a790d980b588385c83105cc.setIcon(icon_fa669c80a4844d748f96a806b06aea8d);
var marker_6ddedbf850304ee79ab3f388118f3ab0 = L.marker(
[25.35362953, 49.60290965],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_bff51be66bb407a7c7ea9416f347c479 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dd693eb0fe82b0827045798df04c3c36 = L.popup({
"maxWidth": 320,
});
var html_350e5d420e66385cdb6ee4a2f34b8578 = $(`<div id="html_350e5d420e66385cdb6ee4a2f34b8578" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الخليج الأوحد لخدمات السيارات<br> <b>الرقم الموحد:</b> 7006368638<br> <b>السجل التجاري:</b> 2251022961<br> <b>الحي:</b> الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.35362953,49.60290965" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dd693eb0fe82b0827045798df04c3c36.setContent(html_350e5d420e66385cdb6ee4a2f34b8578);
marker_6ddedbf850304ee79ab3f388118f3ab0.bindPopup(popup_dd693eb0fe82b0827045798df04c3c36)
;
marker_6ddedbf850304ee79ab3f388118f3ab0.setIcon(icon_bff51be66bb407a7c7ea9416f347c479);
var marker_19c04e34f42433e633d27b2dd71903b5 = L.marker(
[25.3733132140001, 49.6041915450001],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_0dcf45700cf509df14db56464b346c62 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d6deec1f25fc708948a5677cea13fcb5 = L.popup({
"maxWidth": 320,
});
var html_1292a3b17d637e207765435387f1e1f2 = $(`<div id="html_1292a3b17d637e207765435387f1e1f2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة فرع شركة سيف اليمامة للحراسات الأمنية<br> <b>الرقم الموحد:</b> 7008788429<br> <b>السجل التجاري:</b> 2251039934<br> <b>الحي:</b> البصيرة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3733132140001,49.6041915450001" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d6deec1f25fc708948a5677cea13fcb5.setContent(html_1292a3b17d637e207765435387f1e1f2);
marker_19c04e34f42433e633d27b2dd71903b5.bindPopup(popup_d6deec1f25fc708948a5677cea13fcb5)
;
marker_19c04e34f42433e633d27b2dd71903b5.setIcon(icon_0dcf45700cf509df14db56464b346c62);
var marker_d14eeaae560d647dda123153027472ab = L.marker(
[25.370489224301167, 49.60364397749116],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_06b5a16b8943b7b6cdc1f969685d5610 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_20dc9a87bfb351dc9a0a2687f15aad26 = L.popup({
"maxWidth": 320,
});
var html_f890d55aea6bc17004d8ba747d784318 = $(`<div id="html_f890d55aea6bc17004d8ba747d784318" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة أجمل منتج للديكور<br> <b>الرقم الموحد:</b> 7031539096<br> <b>السجل التجاري:</b> 2031111070<br> <b>الحي:</b> البصيرة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.370489224301167,49.60364397749116" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_20dc9a87bfb351dc9a0a2687f15aad26.setContent(html_f890d55aea6bc17004d8ba747d784318);
marker_d14eeaae560d647dda123153027472ab.bindPopup(popup_20dc9a87bfb351dc9a0a2687f15aad26)
;
marker_d14eeaae560d647dda123153027472ab.setIcon(icon_06b5a16b8943b7b6cdc1f969685d5610);
var marker_cc73c49121dcf792b0ecf5f925545857 = L.marker(
[25.3732054859722, 49.60828357632911],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_ead93f3b736be6f649cbdf0741e8fae1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e14bf91b4b4a5f01e49f3e7c2b5be470 = L.popup({
"maxWidth": 320,
});
var html_481fcef4fe3243169ef57564aaf5e768 = $(`<div id="html_481fcef4fe3243169ef57564aaf5e768" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة فخر لتجارة الأغذية<br> <b>الرقم الموحد:</b> 7012392028<br> <b>السجل التجاري:</b> 2251002923<br> <b>الحي:</b> البصيرة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3732054859722,49.60828357632911" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e14bf91b4b4a5f01e49f3e7c2b5be470.setContent(html_481fcef4fe3243169ef57564aaf5e768);
marker_cc73c49121dcf792b0ecf5f925545857.bindPopup(popup_e14bf91b4b4a5f01e49f3e7c2b5be470)
;
marker_cc73c49121dcf792b0ecf5f925545857.setIcon(icon_ead93f3b736be6f649cbdf0741e8fae1);
var marker_cc4238982fe635cf9f0696191cc692cf = L.marker(
[25.34084574, 49.60597852],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_a9e845b787b92de60091ea289bde03c8 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_37fba17260311698d4d7361d8185445d = L.popup({
"maxWidth": 320,
});
var html_6e423090f5c3df075151636d4136b1b8 = $(`<div id="html_6e423090f5c3df075151636d4136b1b8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> تموينات مراسي الخيرات للمواد الغذائية<br> <b>الرقم الموحد:</b> 7013413443<br> <b>السجل التجاري:</b> 2251053693<br> <b>الحي:</b> المزروع الاول<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.34084574,49.60597852" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_37fba17260311698d4d7361d8185445d.setContent(html_6e423090f5c3df075151636d4136b1b8);
marker_cc4238982fe635cf9f0696191cc692cf.bindPopup(popup_37fba17260311698d4d7361d8185445d)
;
marker_cc4238982fe635cf9f0696191cc692cf.setIcon(icon_a9e845b787b92de60091ea289bde03c8);
var marker_b94a3ce7a944310de3edd24b8ac45f7f = L.marker(
[25.34837212, 49.60897423],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_320fa84bac8ba5e9ac0e38c18af91c55 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a00f72a9dda537c48f30ab128d1003c3 = L.popup({
"maxWidth": 320,
});
var html_75d00c6695d7e8689240505b59e277b6 = $(`<div id="html_75d00c6695d7e8689240505b59e277b6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة نسيم الزهور التجارية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7013596460<br> <b>السجل التجاري:</b> 2050056315<br> <b>الحي:</b> المزروع الاول<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.34837212,49.60897423" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a00f72a9dda537c48f30ab128d1003c3.setContent(html_75d00c6695d7e8689240505b59e277b6);
marker_b94a3ce7a944310de3edd24b8ac45f7f.bindPopup(popup_a00f72a9dda537c48f30ab128d1003c3)
;
marker_b94a3ce7a944310de3edd24b8ac45f7f.setIcon(icon_320fa84bac8ba5e9ac0e38c18af91c55);
var marker_b47ff4badc535b93fac16e9017241c8c = L.marker(
[25.33637964574556, 49.613728753859775],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_0db555ad1e08f743a5d74bd4386b574a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6c9a67d2c83d83ad96956f26bd41bc8e = L.popup({
"maxWidth": 320,
});
var html_346c46657a6196b605ec834a47b5f450 = $(`<div id="html_346c46657a6196b605ec834a47b5f450" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة جينا مذاق لتقديم الوجبات<br> <b>الرقم الموحد:</b> 7034126446<br> <b>السجل التجاري:</b> 2031112065<br> <b>الحي:</b> المزروع الاول<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.33637964574556,49.613728753859775" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6c9a67d2c83d83ad96956f26bd41bc8e.setContent(html_346c46657a6196b605ec834a47b5f450);
marker_b47ff4badc535b93fac16e9017241c8c.bindPopup(popup_6c9a67d2c83d83ad96956f26bd41bc8e)
;
marker_b47ff4badc535b93fac16e9017241c8c.setIcon(icon_0db555ad1e08f743a5d74bd4386b574a);
var marker_b2bcdf6fef939248d44c1afd73e5855c = L.marker(
[25.33194016, 49.61437404],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_ff726769bb8cfd3a1f77e44402132f03 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2b30d2af8d1b2431be803acbc0206da6 = L.popup({
"maxWidth": 320,
});
var html_802cba58e6480de2415111593f049869 = $(`<div id="html_802cba58e6480de2415111593f049869" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مطعم عبدالله موسى بن حسين عطيف لتقديم الوجبات<br> <b>الرقم الموحد:</b> 7004706961<br> <b>السجل التجاري:</b> 2251492333<br> <b>الحي:</b> النسيم<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.33194016,49.61437404" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2b30d2af8d1b2431be803acbc0206da6.setContent(html_802cba58e6480de2415111593f049869);
marker_b2bcdf6fef939248d44c1afd73e5855c.bindPopup(popup_2b30d2af8d1b2431be803acbc0206da6)
;
marker_b2bcdf6fef939248d44c1afd73e5855c.setIcon(icon_ff726769bb8cfd3a1f77e44402132f03);
var marker_61b481de5172a3deb25eb78394e10c4b = L.marker(
[25.324624216456897, 49.61436811834574],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_bcd442789f88a83e7773b155e11c8636 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ff13c49e043e460fd0c92b4063b4b8cf = L.popup({
"maxWidth": 320,
});
var html_8a0d9a5ef28b4e5aa80e75eaec4a781a = $(`<div id="html_8a0d9a5ef28b4e5aa80e75eaec4a781a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة هيا احمد بن يوسف الملحم التجارية<br> <b>الرقم الموحد:</b> 7035506166<br> <b>السجل التجاري:</b> 2251507308<br> <b>الحي:</b> النسيم<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.324624216456897,49.61436811834574" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ff13c49e043e460fd0c92b4063b4b8cf.setContent(html_8a0d9a5ef28b4e5aa80e75eaec4a781a);
marker_61b481de5172a3deb25eb78394e10c4b.bindPopup(popup_ff13c49e043e460fd0c92b4063b4b8cf)
;
marker_61b481de5172a3deb25eb78394e10c4b.setIcon(icon_bcd442789f88a83e7773b155e11c8636);
var marker_1e8f4c47bab62819a47acfdff920cf9d = L.marker(
[25.33121381, 49.61415661],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_e67293fef69af04edb9f725cfd806d30 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2e0d6f314c89bbca311f7c70fab99010 = L.popup({
"maxWidth": 320,
});
var html_67b88803e7b98653762c464ca32e2f25 = $(`<div id="html_67b88803e7b98653762c464ca32e2f25" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة نبيه بن عبدالرحمن بن محمد الشعيبي للاستشارات الهندسية شخص واحد<br> <b>الرقم الموحد:</b> 7006719871<br> <b>السجل التجاري:</b> 2251044352<br> <b>الحي:</b> النسيم<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.33121381,49.61415661" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2e0d6f314c89bbca311f7c70fab99010.setContent(html_67b88803e7b98653762c464ca32e2f25);
marker_1e8f4c47bab62819a47acfdff920cf9d.bindPopup(popup_2e0d6f314c89bbca311f7c70fab99010)
;
marker_1e8f4c47bab62819a47acfdff920cf9d.setIcon(icon_e67293fef69af04edb9f725cfd806d30);
var marker_f5057056007be440ad8dcb3fe6fef848 = L.marker(
[25.33136431, 49.61434769],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_cbb0755df345074b3ad8f420371d0f70 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_16e712574e59210e71b3547a4671d9a9 = L.popup({
"maxWidth": 320,
});
var html_70200d0eaa24b32ac03157f88340a23b = $(`<div id="html_70200d0eaa24b32ac03157f88340a23b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مطاعم حدود الامتياز لتقديم الوجبات<br> <b>الرقم الموحد:</b> 7034603071<br> <b>السجل التجاري:</b> 2031112934<br> <b>الحي:</b> النسيم<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.33136431,49.61434769" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_16e712574e59210e71b3547a4671d9a9.setContent(html_70200d0eaa24b32ac03157f88340a23b);
marker_f5057056007be440ad8dcb3fe6fef848.bindPopup(popup_16e712574e59210e71b3547a4671d9a9)
;
marker_f5057056007be440ad8dcb3fe6fef848.setIcon(icon_cbb0755df345074b3ad8f420371d0f70);
var marker_b75773e64b59c7671ad892f10e7eec72 = L.marker(
[25.373986530315676, 49.60658100484808],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_495470bcb52bcf2a6c31e723d66af934 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_63096011d69c8a4716fb776630016598 = L.popup({
"maxWidth": 320,
});
var html_aef82d2e6d572ddecd90fcb7efbb2580 = $(`<div id="html_aef82d2e6d572ddecd90fcb7efbb2580" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة نوري بن محمد بن سلمان الحاجي و أحمد بن محمد بن سلمان الحاجي الصناعية<br> <b>الرقم الموحد:</b> 7034933148<br> <b>السجل التجاري:</b> 2251504939<br> <b>الحي:</b> الخدود<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.373986530315676,49.60658100484808" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_63096011d69c8a4716fb776630016598.setContent(html_aef82d2e6d572ddecd90fcb7efbb2580);
marker_b75773e64b59c7671ad892f10e7eec72.bindPopup(popup_63096011d69c8a4716fb776630016598)
;
marker_b75773e64b59c7671ad892f10e7eec72.setIcon(icon_495470bcb52bcf2a6c31e723d66af934);
var marker_1bb404f8ad6365f378a7a24bdd6cc8ca = L.marker(
[25.38923473, 49.61726299],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_da5663f8840ad3a9f1d4b8bf6f829156 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_93be1e7fbb911ff652074fb3049377c0 = L.popup({
"maxWidth": 320,
});
var html_fab723cbce2fce8c0c70db6197797082 = $(`<div id="html_fab723cbce2fce8c0c70db6197797082" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مشاتل مياسم الزراعية<br> <b>الرقم الموحد:</b> 7006339621<br> <b>السجل التجاري:</b> 2251035119<br> <b>الحي:</b> الخدود<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.38923473,49.61726299" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_93be1e7fbb911ff652074fb3049377c0.setContent(html_fab723cbce2fce8c0c70db6197797082);
marker_1bb404f8ad6365f378a7a24bdd6cc8ca.bindPopup(popup_93be1e7fbb911ff652074fb3049377c0)
;
marker_1bb404f8ad6365f378a7a24bdd6cc8ca.setIcon(icon_da5663f8840ad3a9f1d4b8bf6f829156);
var marker_ee9bb5caa51a5dc13e753b9776c87fa4 = L.marker(
[25.36709285, 49.60432917],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_4533be2fdaade68756d350f8c41e41ae = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4fbd49cdd4aef0e26bc75316f9b5421a = L.popup({
"maxWidth": 320,
});
var html_c4ab0834d27aaf87a7392ff587f80ade = $(`<div id="html_c4ab0834d27aaf87a7392ff587f80ade" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة محمد فهد العلي وشركاؤه<br> <b>الرقم الموحد:</b> 7000722707<br> <b>السجل التجاري:</b> 2251006537<br> <b>الحي:</b> المباركية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.36709285,49.60432917" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4fbd49cdd4aef0e26bc75316f9b5421a.setContent(html_c4ab0834d27aaf87a7392ff587f80ade);
marker_ee9bb5caa51a5dc13e753b9776c87fa4.bindPopup(popup_4fbd49cdd4aef0e26bc75316f9b5421a)
;
marker_ee9bb5caa51a5dc13e753b9776c87fa4.setIcon(icon_4533be2fdaade68756d350f8c41e41ae);
var marker_4c31fcdca2cee5c4811194e96de437cc = L.marker(
[25.36809493, 49.61095841],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_4ea8f6a2b038d3e928df9dd1efa779c6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cb156ba2682321ad4c0958348cc0d644 = L.popup({
"maxWidth": 320,
});
var html_b4a94f5605b8dc39f6b030656df45254 = $(`<div id="html_b4a94f5605b8dc39f6b030656df45254" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مكتب شريكك المثالي للخدمات العقارية<br> <b>الرقم الموحد:</b> 7008792017<br> <b>السجل التجاري:</b> 2251494353<br> <b>الحي:</b> المباركية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.36809493,49.61095841" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cb156ba2682321ad4c0958348cc0d644.setContent(html_b4a94f5605b8dc39f6b030656df45254);
marker_4c31fcdca2cee5c4811194e96de437cc.bindPopup(popup_cb156ba2682321ad4c0958348cc0d644)
;
marker_4c31fcdca2cee5c4811194e96de437cc.setIcon(icon_4ea8f6a2b038d3e928df9dd1efa779c6);
var marker_facd3649797410b13ced470e890df645 = L.marker(
[25.36887092, 49.61377867],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_3762b78c44e04afc327f2c5f683a2d5a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e3a0dae416abcba342ae25a67111ff42 = L.popup({
"maxWidth": 320,
});
var html_8e8ebdfe5ebe832a67efbd451e2cffe0 = $(`<div id="html_8e8ebdfe5ebe832a67efbd451e2cffe0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مطعم بيت الرز والمكرونه لتقديم الوجبات<br> <b>الرقم الموحد:</b> 7016389830<br> <b>السجل التجاري:</b> 2251495935<br> <b>الحي:</b> المباركية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.36887092,49.61377867" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e3a0dae416abcba342ae25a67111ff42.setContent(html_8e8ebdfe5ebe832a67efbd451e2cffe0);
marker_facd3649797410b13ced470e890df645.bindPopup(popup_e3a0dae416abcba342ae25a67111ff42)
;
marker_facd3649797410b13ced470e890df645.setIcon(icon_3762b78c44e04afc327f2c5f683a2d5a);
var marker_0b23c1c255cf5078bcf78f13a7228bf6 = L.marker(
[25.36430186794597, 49.62380337528885],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_f41fd48b18a512f76177bbcc787ceadd = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_068817929ac4247c8688cc9ce2993bd0 = L.popup({
"maxWidth": 320,
});
var html_c09ec87050f795dd57b802d9e9b9d553 = $(`<div id="html_c09ec87050f795dd57b802d9e9b9d553" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة شامبو<br> <b>الرقم الموحد:</b> 7043479091<br> <b>السجل التجاري:</b> 2251509714<br> <b>الحي:</b> الشهابية<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.36430186794597,49.62380337528885" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_068817929ac4247c8688cc9ce2993bd0.setContent(html_c09ec87050f795dd57b802d9e9b9d553);
marker_0b23c1c255cf5078bcf78f13a7228bf6.bindPopup(popup_068817929ac4247c8688cc9ce2993bd0)
;
marker_0b23c1c255cf5078bcf78f13a7228bf6.setIcon(icon_f41fd48b18a512f76177bbcc787ceadd);
var marker_8abddc49b4e5642d6ff0176e1968c453 = L.marker(
[25.3587590135185, 49.615383651875],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_76aa38f165f001b1fcf5cfc395196553 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_00d94f2a51fc76b8a4fe91791f887538 = L.popup({
"maxWidth": 320,
});
var html_905fee7817a5f0631e925c5ba8780d97 = $(`<div id="html_905fee7817a5f0631e925c5ba8780d97" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مركز بيتي المرح لضيافة الأطفال<br> <b>الرقم الموحد:</b> 7002790389<br> <b>السجل التجاري:</b> 2251115286<br> <b>الحي:</b> الشهابية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3587590135185,49.615383651875" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_00d94f2a51fc76b8a4fe91791f887538.setContent(html_905fee7817a5f0631e925c5ba8780d97);
marker_8abddc49b4e5642d6ff0176e1968c453.bindPopup(popup_00d94f2a51fc76b8a4fe91791f887538)
;
marker_8abddc49b4e5642d6ff0176e1968c453.setIcon(icon_76aa38f165f001b1fcf5cfc395196553);
var marker_601924109ab06c0cf4733f48e180ed5e = L.marker(
[25.36103933, 49.62291218],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_f472e3de92cbefd8bd3aa36b4bb5b0d5 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_17ffe636a8161696837289743dfc8a45 = L.popup({
"maxWidth": 320,
});
var html_5b37065ceb7b7e2726ea19973e9e5836 = $(`<div id="html_5b37065ceb7b7e2726ea19973e9e5836" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة قاسم احمد القرقوش التجارية<br> <b>الرقم الموحد:</b> 7011819740<br> <b>السجل التجاري:</b> 2251032180<br> <b>الحي:</b> الشهابية<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.36103933,49.62291218" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_17ffe636a8161696837289743dfc8a45.setContent(html_5b37065ceb7b7e2726ea19973e9e5836);
marker_601924109ab06c0cf4733f48e180ed5e.bindPopup(popup_17ffe636a8161696837289743dfc8a45)
;
marker_601924109ab06c0cf4733f48e180ed5e.setIcon(icon_f472e3de92cbefd8bd3aa36b4bb5b0d5);
var marker_7feed0cea42721caee1b896c82e5a808 = L.marker(
[25.36019013, 49.62094992],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_674ffcdce1cf4ed4e8d9d686c6405e7e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_61aeacfb965b47e29c0a5835fd94ffd6 = L.popup({
"maxWidth": 320,
});
var html_357f766459339de50b0d2264ad0e827e = $(`<div id="html_357f766459339de50b0d2264ad0e827e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ماس هجر التجارية<br> <b>الرقم الموحد:</b> 7014844943<br> <b>السجل التجاري:</b> 2251054842<br> <b>الحي:</b> الشهابية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.36019013,49.62094992" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_61aeacfb965b47e29c0a5835fd94ffd6.setContent(html_357f766459339de50b0d2264ad0e827e);
marker_7feed0cea42721caee1b896c82e5a808.bindPopup(popup_61aeacfb965b47e29c0a5835fd94ffd6)
;
marker_7feed0cea42721caee1b896c82e5a808.setIcon(icon_674ffcdce1cf4ed4e8d9d686c6405e7e);
var marker_48f4740cbaab1a5ac3e29d58780a2795 = L.marker(
[25.36028311, 49.62148667],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_9e141d788c64bff440ead8a43ec977ba = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0af7650016538d9e268989cae0e888d5 = L.popup({
"maxWidth": 320,
});
var html_060bbf57a5846368fe171a33f2acff80 = $(`<div id="html_060bbf57a5846368fe171a33f2acff80" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة خمسة وتسعين للمقاولات<br> <b>الرقم الموحد:</b> 7004440942<br> <b>السجل التجاري:</b> 2251492106<br> <b>الحي:</b> الشهابية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.36028311,49.62148667" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0af7650016538d9e268989cae0e888d5.setContent(html_060bbf57a5846368fe171a33f2acff80);
marker_48f4740cbaab1a5ac3e29d58780a2795.bindPopup(popup_0af7650016538d9e268989cae0e888d5)
;
marker_48f4740cbaab1a5ac3e29d58780a2795.setIcon(icon_9e141d788c64bff440ead8a43ec977ba);
var marker_f2644163ed7b4450c249f62170e959a4 = L.marker(
[25.3636691, 49.61648271],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_6972217f36993aa4fe00f1de50e28e8c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fc3fb2851397dd6ad1d58ef3676394dd = L.popup({
"maxWidth": 320,
});
var html_a335853fa371fc4e0d80e28b8cad1beb = $(`<div id="html_a335853fa371fc4e0d80e28b8cad1beb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مطعم عالم التميز لتقديم الوجبات<br> <b>الرقم الموحد:</b> 7008805140<br> <b>السجل التجاري:</b> 2252103393<br> <b>الحي:</b> الشهابية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3636691,49.61648271" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fc3fb2851397dd6ad1d58ef3676394dd.setContent(html_a335853fa371fc4e0d80e28b8cad1beb);
marker_f2644163ed7b4450c249f62170e959a4.bindPopup(popup_fc3fb2851397dd6ad1d58ef3676394dd)
;
marker_f2644163ed7b4450c249f62170e959a4.setIcon(icon_6972217f36993aa4fe00f1de50e28e8c);
var marker_7e5c1592bb45b2bfc1d1428960be9d89 = L.marker(
[25.3589083452811, 49.6159591289379],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_4189a3694265cbb9a3fd2452d765829b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_256b96bae81ceb50027ec678eedd0702 = L.popup({
"maxWidth": 320,
});
var html_eea6910b54b79679fb39a3b7c1869103 = $(`<div id="html_eea6910b54b79679fb39a3b7c1869103" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة نخبة التساهل للمقاولات<br> <b>الرقم الموحد:</b> 7014208107<br> <b>السجل التجاري:</b> 2251028975<br> <b>الحي:</b> الشهابية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3589083452811,49.6159591289379" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_256b96bae81ceb50027ec678eedd0702.setContent(html_eea6910b54b79679fb39a3b7c1869103);
marker_7e5c1592bb45b2bfc1d1428960be9d89.bindPopup(popup_256b96bae81ceb50027ec678eedd0702)
;
marker_7e5c1592bb45b2bfc1d1428960be9d89.setIcon(icon_4189a3694265cbb9a3fd2452d765829b);
var marker_ae54a7afebaa424e01835a942c9371aa = L.marker(
[25.3624343821668, 49.611127732297],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_f9e504ba79d0b2371f315d66d71c3cab = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_14d0fa656171315dbb1f6539fd76e7b8 = L.popup({
"maxWidth": 320,
});
var html_2526c9d623b5da49bdf728deeeb49133 = $(`<div id="html_2526c9d623b5da49bdf728deeeb49133" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة فاطمه سامي العمران لصيانة الالكترونيات<br> <b>الرقم الموحد:</b> 7015276830<br> <b>السجل التجاري:</b> 2251494685<br> <b>الحي:</b> الشهابية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3624343821668,49.611127732297" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_14d0fa656171315dbb1f6539fd76e7b8.setContent(html_2526c9d623b5da49bdf728deeeb49133);
marker_ae54a7afebaa424e01835a942c9371aa.bindPopup(popup_14d0fa656171315dbb1f6539fd76e7b8)
;
marker_ae54a7afebaa424e01835a942c9371aa.setIcon(icon_f9e504ba79d0b2371f315d66d71c3cab);
var marker_29dcbbbb3695a0e1f83ea6810bed7736 = L.marker(
[25.32783679, 49.61526335],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_fbde87f0b3a58c004707771a0eca5d2b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_00e80e16906334442eab93b4bc493a9d = L.popup({
"maxWidth": 320,
});
var html_fc594afe7bd50a8106a7fe137bda072f = $(`<div id="html_fc594afe7bd50a8106a7fe137bda072f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة كود لتقديم الوجبات<br> <b>الرقم الموحد:</b> 7006993724<br> <b>السجل التجاري:</b> 2251101650<br> <b>الحي:</b> المزروع الثاني<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.32783679,49.61526335" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_00e80e16906334442eab93b4bc493a9d.setContent(html_fc594afe7bd50a8106a7fe137bda072f);
marker_29dcbbbb3695a0e1f83ea6810bed7736.bindPopup(popup_00e80e16906334442eab93b4bc493a9d)
;
marker_29dcbbbb3695a0e1f83ea6810bed7736.setIcon(icon_fbde87f0b3a58c004707771a0eca5d2b);
var marker_f433c1f941994ded8135cf412151fda2 = L.marker(
[25.32855355, 49.61524233],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_229d9c918eaca97f2b1b41d0e1c92f4d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e48345df025628cc0a603a302c37bfc6 = L.popup({
"maxWidth": 320,
});
var html_6d1b1cc463fc82682e8ecb47cf61fbc3 = $(`<div id="html_6d1b1cc463fc82682e8ecb47cf61fbc3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مطعم خليط الماكولات لتقديم الوجبات<br> <b>الرقم الموحد:</b> 7015830834<br> <b>السجل التجاري:</b> 2251495335<br> <b>الحي:</b> المزروع الثاني<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.32855355,49.61524233" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e48345df025628cc0a603a302c37bfc6.setContent(html_6d1b1cc463fc82682e8ecb47cf61fbc3);
marker_f433c1f941994ded8135cf412151fda2.bindPopup(popup_e48345df025628cc0a603a302c37bfc6)
;
marker_f433c1f941994ded8135cf412151fda2.setIcon(icon_229d9c918eaca97f2b1b41d0e1c92f4d);
var marker_2f603cb7a268d95b67eb6bc2ae3c903d = L.marker(
[25.32775403, 49.61526824],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_442872665cf176aed219c64f9258ef86 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b98cceb302b3a2f87b35b881f2d01097 = L.popup({
"maxWidth": 320,
});
var html_16576e3f03df9d213370623941d71faa = $(`<div id="html_16576e3f03df9d213370623941d71faa" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مطعم الشوكة اللذيذه لتقديم الوجبات<br> <b>الرقم الموحد:</b> 7008811965<br> <b>السجل التجاري:</b> 2251101528<br> <b>الحي:</b> المزروع الثاني<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.32775403,49.61526824" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b98cceb302b3a2f87b35b881f2d01097.setContent(html_16576e3f03df9d213370623941d71faa);
marker_2f603cb7a268d95b67eb6bc2ae3c903d.bindPopup(popup_b98cceb302b3a2f87b35b881f2d01097)
;
marker_2f603cb7a268d95b67eb6bc2ae3c903d.setIcon(icon_442872665cf176aed219c64f9258ef86);
var marker_9f78c6b66d08129fef571ce3ae47353c = L.marker(
[25.33805735, 49.61452224],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_688e746c71e898b455b518e9ef2a8390 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_29b68f558be5f9c8c9c05308eaef16e1 = L.popup({
"maxWidth": 320,
});
var html_f8564e7c092b813181ab48b330e2a927 = $(`<div id="html_f8564e7c092b813181ab48b330e2a927" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مذاق المتقدمة التجارية<br> <b>الرقم الموحد:</b> 7008076759<br> <b>السجل التجاري:</b> 2050137997<br> <b>الحي:</b> المزروع الثاني<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.33805735,49.61452224" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_29b68f558be5f9c8c9c05308eaef16e1.setContent(html_f8564e7c092b813181ab48b330e2a927);
marker_9f78c6b66d08129fef571ce3ae47353c.bindPopup(popup_29b68f558be5f9c8c9c05308eaef16e1)
;
marker_9f78c6b66d08129fef571ce3ae47353c.setIcon(icon_688e746c71e898b455b518e9ef2a8390);
var marker_bc9a4b4acdef5a221b174e309a914efc = L.marker(
[25.36003115, 49.62218589],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_c54b86075f8023a30afbaf9b693cccfd = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fc287f95a404e1913c83a034da3419d8 = L.popup({
"maxWidth": 320,
});
var html_a68a10cafe083ec0c0f64845f01b2fba = $(`<div id="html_a68a10cafe083ec0c0f64845f01b2fba" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مركز الطفولة المبكرة ضيافة الأطفال الأهلية<br> <b>الرقم الموحد:</b> 7015509719<br> <b>السجل التجاري:</b> 2251494975<br> <b>الحي:</b> الرويضة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.36003115,49.62218589" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fc287f95a404e1913c83a034da3419d8.setContent(html_a68a10cafe083ec0c0f64845f01b2fba);
marker_bc9a4b4acdef5a221b174e309a914efc.bindPopup(popup_fc287f95a404e1913c83a034da3419d8)
;
marker_bc9a4b4acdef5a221b174e309a914efc.setIcon(icon_c54b86075f8023a30afbaf9b693cccfd);
var marker_1a86884265ffe4c65bb6b2fb7486e4d0 = L.marker(
[25.3602894231586, 49.6231504845682],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_de04b7be461cbeca50a2f2cf4c8a6116 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_910fd8bbeb59f9a2e752eaa887fb0260 = L.popup({
"maxWidth": 320,
});
var html_c0d2f6a85f9af169af212804b5c54024 = $(`<div id="html_c0d2f6a85f9af169af212804b5c54024" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة احمد حسين الخليفه للمقاولات<br> <b>الرقم الموحد:</b> 7007905453<br> <b>السجل التجاري:</b> 2251069348<br> <b>الحي:</b> الرويضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3602894231586,49.6231504845682" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_910fd8bbeb59f9a2e752eaa887fb0260.setContent(html_c0d2f6a85f9af169af212804b5c54024);
marker_1a86884265ffe4c65bb6b2fb7486e4d0.bindPopup(popup_910fd8bbeb59f9a2e752eaa887fb0260)
;
marker_1a86884265ffe4c65bb6b2fb7486e4d0.setIcon(icon_de04b7be461cbeca50a2f2cf4c8a6116);
var marker_2857cf0edc743132dfac2242a21a3565 = L.marker(
[25.36031337, 49.62278564],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_37560ee9345299de62eac88a2597a9dc = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_581960f4db1cfc343981e4205e94250f = L.popup({
"maxWidth": 320,
});
var html_f88ff739bc6cd3fd1c5e3cd790353400 = $(`<div id="html_f88ff739bc6cd3fd1c5e3cd790353400" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة هيا عبدالله عبدالعزيز الخميس التجارية<br> <b>الرقم الموحد:</b> 7017758306<br> <b>السجل التجاري:</b> 2251497202<br> <b>الحي:</b> الرويضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.36031337,49.62278564" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_581960f4db1cfc343981e4205e94250f.setContent(html_f88ff739bc6cd3fd1c5e3cd790353400);
marker_2857cf0edc743132dfac2242a21a3565.bindPopup(popup_581960f4db1cfc343981e4205e94250f)
;
marker_2857cf0edc743132dfac2242a21a3565.setIcon(icon_37560ee9345299de62eac88a2597a9dc);
var marker_2f3730c7f5b1f6fd0eab46efe4b5bcb3 = L.marker(
[25.3525060678257, 49.6113700670236],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_2f2d8dae89591cce2ce9ad058993de1f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_49574d2135cee486cc30d8450686ffaa = L.popup({
"maxWidth": 320,
});
var html_663558ec496e7b998d24d2691cb01790 = $(`<div id="html_663558ec496e7b998d24d2691cb01790" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سامي بن احمد الجبر للمقاولات<br> <b>الرقم الموحد:</b> 7006658350<br> <b>السجل التجاري:</b> 2251008080<br> <b>الحي:</b> الرويضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3525060678257,49.6113700670236" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_49574d2135cee486cc30d8450686ffaa.setContent(html_663558ec496e7b998d24d2691cb01790);
marker_2f3730c7f5b1f6fd0eab46efe4b5bcb3.bindPopup(popup_49574d2135cee486cc30d8450686ffaa)
;
marker_2f3730c7f5b1f6fd0eab46efe4b5bcb3.setIcon(icon_2f2d8dae89591cce2ce9ad058993de1f);
var marker_e5d6ca72e45ef9e43f0ec4bf23fa6b47 = L.marker(
[25.302034990774587, 49.61126874201],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_624c798f79ca938a6a14cd0fbafb44ab = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e384de003963fedcaf6a3ba8e0adfe54 = L.popup({
"maxWidth": 320,
});
var html_b8ff858ef228bbed96b5aca62b0faa2b = $(`<div id="html_b8ff858ef228bbed96b5aca62b0faa2b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ياقوت دبي للتجارة<br> <b>الرقم الموحد:</b> 7030884352<br> <b>السجل التجاري:</b> 1010827395<br> <b>الحي:</b> مقترح خارج النطاق<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.302034990774587,49.61126874201" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e384de003963fedcaf6a3ba8e0adfe54.setContent(html_b8ff858ef228bbed96b5aca62b0faa2b);
marker_e5d6ca72e45ef9e43f0ec4bf23fa6b47.bindPopup(popup_e384de003963fedcaf6a3ba8e0adfe54)
;
marker_e5d6ca72e45ef9e43f0ec4bf23fa6b47.setIcon(icon_624c798f79ca938a6a14cd0fbafb44ab);
var marker_d6dcab6416f7a39008a37294738dfe4e = L.marker(
[25.34559729, 49.61712144],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_92882f8a75ecf9240aeb0859aba1eba2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6b164e8f91863a86a40b886044b963c0 = L.popup({
"maxWidth": 320,
});
var html_eefe9316c29ab01e8dd949df47fac3e3 = $(`<div id="html_eefe9316c29ab01e8dd949df47fac3e3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة فلافل وشاورما على كيفك لتقديم الوجبات<br> <b>الرقم الموحد:</b> 7013604827<br> <b>السجل التجاري:</b> 2051052502<br> <b>الحي:</b> الحوراء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.34559729,49.61712144" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6b164e8f91863a86a40b886044b963c0.setContent(html_eefe9316c29ab01e8dd949df47fac3e3);
marker_d6dcab6416f7a39008a37294738dfe4e.bindPopup(popup_6b164e8f91863a86a40b886044b963c0)
;
marker_d6dcab6416f7a39008a37294738dfe4e.setIcon(icon_92882f8a75ecf9240aeb0859aba1eba2);
var marker_6e46716ba436d51b83693d92c9e2f002 = L.marker(
[25.34847981, 49.61357638],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_d0a3fdb1cf57d52990c237dcec4cba8c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5567b6ceceb74b9fa85df881c54f26da = L.popup({
"maxWidth": 320,
});
var html_8109beac5df2078cdbecdea16c274519 = $(`<div id="html_8109beac5df2078cdbecdea16c274519" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الياسين الزراعيه مساهمه مقفله<br> <b>الرقم الموحد:</b> 7000452479<br> <b>السجل التجاري:</b> 2251002811<br> <b>الحي:</b> الحوراء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.34847981,49.61357638" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5567b6ceceb74b9fa85df881c54f26da.setContent(html_8109beac5df2078cdbecdea16c274519);
marker_6e46716ba436d51b83693d92c9e2f002.bindPopup(popup_5567b6ceceb74b9fa85df881c54f26da)
;
marker_6e46716ba436d51b83693d92c9e2f002.setIcon(icon_d0a3fdb1cf57d52990c237dcec4cba8c);
var marker_fda1935c82d883f88df5d1f5c22fde87 = L.marker(
[25.31536446, 49.62433695],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_79aceaf6d7d27b5d374c32f0e5da1666 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d4b58b3044c7e773b4437b2f701dea83 = L.popup({
"maxWidth": 320,
});
var html_eebb8ac564e375b473fd6a189713b02a = $(`<div id="html_eebb8ac564e375b473fd6a189713b02a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ربوة الاحساء للمقاولات العامة<br> <b>الرقم الموحد:</b> 7013001719<br> <b>السجل التجاري:</b> 2251101102<br> <b>الحي:</b> هجر<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.31536446,49.62433695" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d4b58b3044c7e773b4437b2f701dea83.setContent(html_eebb8ac564e375b473fd6a189713b02a);
marker_fda1935c82d883f88df5d1f5c22fde87.bindPopup(popup_d4b58b3044c7e773b4437b2f701dea83)
;
marker_fda1935c82d883f88df5d1f5c22fde87.setIcon(icon_79aceaf6d7d27b5d374c32f0e5da1666);
var marker_47968bdd04a26ac76c29046f42f44ee9 = L.marker(
[25.37568881, 49.63371324],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_a90ebafd2c61e7027878b978981ec4d4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_70848669ff15b97a0be950ff670d0e80 = L.popup({
"maxWidth": 320,
});
var html_0d5538ac6c53bf4b976c1536ab1cad32 = $(`<div id="html_0d5538ac6c53bf4b976c1536ab1cad32" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الشروق المتقدمة الأهلية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7007803393<br> <b>السجل التجاري:</b> 2252068923<br> <b>الحي:</b> صويدرة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.37568881,49.63371324" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_70848669ff15b97a0be950ff670d0e80.setContent(html_0d5538ac6c53bf4b976c1536ab1cad32);
marker_47968bdd04a26ac76c29046f42f44ee9.bindPopup(popup_70848669ff15b97a0be950ff670d0e80)
;
marker_47968bdd04a26ac76c29046f42f44ee9.setIcon(icon_a90ebafd2c61e7027878b978981ec4d4);
var marker_d3744c8e75d8b86191fb2ff0c2edb806 = L.marker(
[25.3660996669532, 49.6287312931772],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_da8792b38603574ca548e527c4bd7caf = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ee770694c670039dbfd8bcc162d9abb2 = L.popup({
"maxWidth": 320,
});
var html_a84f662db809ad98eafc1519afed2ae1 = $(`<div id="html_a84f662db809ad98eafc1519afed2ae1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عهد البناء التجارية شركة ذات المسؤولية المحدودة<br> <b>الرقم الموحد:</b> 7006516251<br> <b>السجل التجاري:</b> 2250057019<br> <b>الحي:</b> صويدرة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3660996669532,49.6287312931772" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ee770694c670039dbfd8bcc162d9abb2.setContent(html_a84f662db809ad98eafc1519afed2ae1);
marker_d3744c8e75d8b86191fb2ff0c2edb806.bindPopup(popup_ee770694c670039dbfd8bcc162d9abb2)
;
marker_d3744c8e75d8b86191fb2ff0c2edb806.setIcon(icon_da8792b38603574ca548e527c4bd7caf);
var marker_19965589750f972c4ed4977bc59f139b = L.marker(
[25.374502836182895, 49.6323752833919],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_4c3dcb32998cec9e063afc6b05d15789 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_59e7c9d4f38c57e58599f9a45791bfb9 = L.popup({
"maxWidth": 320,
});
var html_413ddea2b907ee946c80053cb22c5336 = $(`<div id="html_413ddea2b907ee946c80053cb22c5336" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة دعم وأمان للمقاولات العامة<br> <b>الرقم الموحد:</b> 7011037343<br> <b>السجل التجاري:</b> 2251056582<br> <b>الحي:</b> صويدرة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.374502836182895,49.6323752833919" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_59e7c9d4f38c57e58599f9a45791bfb9.setContent(html_413ddea2b907ee946c80053cb22c5336);
marker_19965589750f972c4ed4977bc59f139b.bindPopup(popup_59e7c9d4f38c57e58599f9a45791bfb9)
;
marker_19965589750f972c4ed4977bc59f139b.setIcon(icon_4c3dcb32998cec9e063afc6b05d15789);
var marker_91e9b93d721cb5134cfcd6292d69dee2 = L.marker(
[25.375658661773105, 49.6329091828384],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_a01954847da8b5a20a3d44112e37ee23 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ec7603bc0b2acc5d3d914f7bf64aa5bf = L.popup({
"maxWidth": 320,
});
var html_7017d087ed776c27fa1bd561a6675608 = $(`<div id="html_7017d087ed776c27fa1bd561a6675608" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة علي حسين الموسى<br> <b>الرقم الموحد:</b> 7013887463<br> <b>السجل التجاري:</b> 2251031384<br> <b>الحي:</b> صويدرة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.375658661773105,49.6329091828384" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ec7603bc0b2acc5d3d914f7bf64aa5bf.setContent(html_7017d087ed776c27fa1bd561a6675608);
marker_91e9b93d721cb5134cfcd6292d69dee2.bindPopup(popup_ec7603bc0b2acc5d3d914f7bf64aa5bf)
;
marker_91e9b93d721cb5134cfcd6292d69dee2.setIcon(icon_a01954847da8b5a20a3d44112e37ee23);
var marker_fc57df30a57046cf4a603b99acf8169e = L.marker(
[25.3756078839355, 49.6324413777989],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_68d9226b898f38ce2188e97cfd12aa79 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_92af88cac70aa5daabaedc6d542d2a17 = L.popup({
"maxWidth": 320,
});
var html_9bfc2756b65b548a876132ac414ddff4 = $(`<div id="html_9bfc2756b65b548a876132ac414ddff4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> الشركة الآسيوية للتجارة شركة لشخص واحد شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001495204<br> <b>السجل التجاري:</b> 2251000791<br> <b>الحي:</b> صويدرة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3756078839355,49.6324413777989" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_92af88cac70aa5daabaedc6d542d2a17.setContent(html_9bfc2756b65b548a876132ac414ddff4);
marker_fc57df30a57046cf4a603b99acf8169e.bindPopup(popup_92af88cac70aa5daabaedc6d542d2a17)
;
marker_fc57df30a57046cf4a603b99acf8169e.setIcon(icon_68d9226b898f38ce2188e97cfd12aa79);
var marker_69f72380180cea9058c2161c61d214dc = L.marker(
[25.35489834, 49.62954018],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_746f85cd21295aa9979584bd876b2d94 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_87d0b9ded551bfd82c1e0bd36fad9576 = L.popup({
"maxWidth": 320,
});
var html_89d54ee636276652829be0a6debb230b = $(`<div id="html_89d54ee636276652829be0a6debb230b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة صالح بن محمد بن احمد الرصاصي لقطع غيار السيارات<br> <b>الرقم الموحد:</b> 7011965949<br> <b>السجل التجاري:</b> 2251023977<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.35489834,49.62954018" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_87d0b9ded551bfd82c1e0bd36fad9576.setContent(html_89d54ee636276652829be0a6debb230b);
marker_69f72380180cea9058c2161c61d214dc.bindPopup(popup_87d0b9ded551bfd82c1e0bd36fad9576)
;
marker_69f72380180cea9058c2161c61d214dc.setIcon(icon_746f85cd21295aa9979584bd876b2d94);
var marker_d58a8f5f62e80408b4808e5128fb5328 = L.marker(
[25.35875002, 49.62870845],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_7ee0e3d7c710cfec802d3588cc834838 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f70e55204146e644945255f36d0eb0b3 = L.popup({
"maxWidth": 320,
});
var html_11f6fe0d95b17d1a66fb828012475b9d = $(`<div id="html_11f6fe0d95b17d1a66fb828012475b9d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع حوراء راضي بن ناصر الهودار للصناعة<br> <b>الرقم الموحد:</b> 7014070622<br> <b>السجل التجاري:</b> 2252055778<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.35875002,49.62870845" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f70e55204146e644945255f36d0eb0b3.setContent(html_11f6fe0d95b17d1a66fb828012475b9d);
marker_d58a8f5f62e80408b4808e5128fb5328.bindPopup(popup_f70e55204146e644945255f36d0eb0b3)
;
marker_d58a8f5f62e80408b4808e5128fb5328.setIcon(icon_7ee0e3d7c710cfec802d3588cc834838);
var marker_72cea83bf7cf959e9b2d02264a17ac09 = L.marker(
[25.35857805475935, 49.62495940737426],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_40fb74132519908084e5e830567e822a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a4dea2b5954d1b09f2a3df44064ae20c = L.popup({
"maxWidth": 320,
});
var html_d8d9d4dfce2ecd9c4da1fe2f75f04c9a = $(`<div id="html_d8d9d4dfce2ecd9c4da1fe2f75f04c9a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مزرعة زكي بن عبدالغني بن يوسف السالم للخضار وللفواكهة<br> <b>الرقم الموحد:</b> 7015468882<br> <b>السجل التجاري:</b> 2251494928<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.35857805475935,49.62495940737426" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a4dea2b5954d1b09f2a3df44064ae20c.setContent(html_d8d9d4dfce2ecd9c4da1fe2f75f04c9a);
marker_72cea83bf7cf959e9b2d02264a17ac09.bindPopup(popup_a4dea2b5954d1b09f2a3df44064ae20c)
;
marker_72cea83bf7cf959e9b2d02264a17ac09.setIcon(icon_40fb74132519908084e5e830567e822a);
var marker_20053ec255095a15597228ce9dbdd726 = L.marker(
[25.36263891, 49.62902392],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_7386a299ca539710ad74daf2c8f68942 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_eecf62eea55b8ac03448f30480b8de7e = L.popup({
"maxWidth": 320,
});
var html_a6ba31fbb7819458327a05b895dcbde2 = $(`<div id="html_a6ba31fbb7819458327a05b895dcbde2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ارسان الجزيرة للصيانة والتشغيل<br> <b>الرقم الموحد:</b> 7009887469<br> <b>السجل التجاري:</b> 1010511278<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.36263891,49.62902392" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_eecf62eea55b8ac03448f30480b8de7e.setContent(html_a6ba31fbb7819458327a05b895dcbde2);
marker_20053ec255095a15597228ce9dbdd726.bindPopup(popup_eecf62eea55b8ac03448f30480b8de7e)
;
marker_20053ec255095a15597228ce9dbdd726.setIcon(icon_7386a299ca539710ad74daf2c8f68942);
var marker_a6ace2b8872bd2bedc3bf7e1cb2ef805 = L.marker(
[25.36131187948557, 49.62989039719105],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_243c04d20f6b34589ac8f1908931682c = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a184f438ebd8d9dcd53227651fe49538 = L.popup({
"maxWidth": 320,
});
var html_99ce498f91b8e46bf81240c72ae55688 = $(`<div id="html_99ce498f91b8e46bf81240c72ae55688" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مركز الابتكار للتدريب<br> <b>الرقم الموحد:</b> 7041649950<br> <b>السجل التجاري:</b> 2031117491<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.36131187948557,49.62989039719105" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a184f438ebd8d9dcd53227651fe49538.setContent(html_99ce498f91b8e46bf81240c72ae55688);
marker_a6ace2b8872bd2bedc3bf7e1cb2ef805.bindPopup(popup_a184f438ebd8d9dcd53227651fe49538)
;
marker_a6ace2b8872bd2bedc3bf7e1cb2ef805.setIcon(icon_243c04d20f6b34589ac8f1908931682c);
var marker_404060773dfea041d18e07cc7ec38a6b = L.marker(
[25.354785484448144, 49.62907802313566],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_447cf88497ee6456ffaeb0d82b9c81a9 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_80de23c70de56f5237884c9e6d012088 = L.popup({
"maxWidth": 320,
});
var html_674f694d7660eb2bb1653d1d856cdf53 = $(`<div id="html_674f694d7660eb2bb1653d1d856cdf53" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الراقي جوس للعصيرات<br> <b>الرقم الموحد:</b> 7041089454<br> <b>السجل التجاري:</b> 2031116858<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.354785484448144,49.62907802313566" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_80de23c70de56f5237884c9e6d012088.setContent(html_674f694d7660eb2bb1653d1d856cdf53);
marker_404060773dfea041d18e07cc7ec38a6b.bindPopup(popup_80de23c70de56f5237884c9e6d012088)
;
marker_404060773dfea041d18e07cc7ec38a6b.setIcon(icon_447cf88497ee6456ffaeb0d82b9c81a9);
var marker_7a90f525797c0e953441e023b547159a = L.marker(
[25.32297215, 49.64126435],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_c2e9ccd9730248bf85ab37ea89472699 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_da8d3027a1701a803efa6df0cb3363d0 = L.popup({
"maxWidth": 320,
});
var html_5767d9a47c10d5831c46df4f75a07a34 = $(`<div id="html_5767d9a47c10d5831c46df4f75a07a34" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سلة الطريق للتجارة<br> <b>الرقم الموحد:</b> 7021683037<br> <b>السجل التجاري:</b> 2251498616<br> <b>الحي:</b> الحزام الأخضر<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.32297215,49.64126435" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_da8d3027a1701a803efa6df0cb3363d0.setContent(html_5767d9a47c10d5831c46df4f75a07a34);
marker_7a90f525797c0e953441e023b547159a.bindPopup(popup_da8d3027a1701a803efa6df0cb3363d0)
;
marker_7a90f525797c0e953441e023b547159a.setIcon(icon_c2e9ccd9730248bf85ab37ea89472699);
var marker_698c4b35dbce11073c6c84b6f9ac797a = L.marker(
[25.355032068820027, 49.64167397360479],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_1c72efb6f51e68cd670df0d07f4e1f80 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3b1386dece7ecabdd57e9ddf0d8b7ca4 = L.popup({
"maxWidth": 320,
});
var html_4852a27a1663fbf1947c7489f23ed8fc = $(`<div id="html_4852a27a1663fbf1947c7489f23ed8fc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة رقيه مهدي الحسين للمقاولات<br> <b>الرقم الموحد:</b> 7006594084<br> <b>السجل التجاري:</b> 2251059805<br> <b>الحي:</b> الصحافة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.355032068820027,49.64167397360479" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3b1386dece7ecabdd57e9ddf0d8b7ca4.setContent(html_4852a27a1663fbf1947c7489f23ed8fc);
marker_698c4b35dbce11073c6c84b6f9ac797a.bindPopup(popup_3b1386dece7ecabdd57e9ddf0d8b7ca4)
;
marker_698c4b35dbce11073c6c84b6f9ac797a.setIcon(icon_1c72efb6f51e68cd670df0d07f4e1f80);
var marker_aaf22028a9c8a3aae44c4965709edb66 = L.marker(
[25.349999505336495, 49.65333925883],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_55efd21e6a993a961425c2810741451f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f80a96ec74704497c0ce49d48d10c788 = L.popup({
"maxWidth": 320,
});
var html_80ceb3c1fe46fb9a292cdd530b1bba2f = $(`<div id="html_80ceb3c1fe46fb9a292cdd530b1bba2f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مداد العالمية للوقود<br> <b>الرقم الموحد:</b> 7012992025<br> <b>السجل التجاري:</b> 2251492057<br> <b>الحي:</b> الزهراء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.349999505336495,49.65333925883" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f80a96ec74704497c0ce49d48d10c788.setContent(html_80ceb3c1fe46fb9a292cdd530b1bba2f);
marker_aaf22028a9c8a3aae44c4965709edb66.bindPopup(popup_f80a96ec74704497c0ce49d48d10c788)
;
marker_aaf22028a9c8a3aae44c4965709edb66.setIcon(icon_55efd21e6a993a961425c2810741451f);
var marker_dc9612bc5b8dd0d4944fc69759cdb570 = L.marker(
[25.3247585530974, 49.6412326201658],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_f02f7b780852781644d690a9fef002da = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2fb3d73bff83f91845b4736bdc7e1726 = L.popup({
"maxWidth": 320,
});
var html_fe6f35f66d8291030ef6c0ac8d3f71f4 = $(`<div id="html_fe6f35f66d8291030ef6c0ac8d3f71f4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع عبدالله محمد الملحم للملابس الجاهزه<br> <b>الرقم الموحد:</b> 7012131566<br> <b>السجل التجاري:</b> 2251025958<br> <b>الحي:</b> منطقة الغويبة الزراعية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3247585530974,49.6412326201658" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2fb3d73bff83f91845b4736bdc7e1726.setContent(html_fe6f35f66d8291030ef6c0ac8d3f71f4);
marker_dc9612bc5b8dd0d4944fc69759cdb570.bindPopup(popup_2fb3d73bff83f91845b4736bdc7e1726)
;
marker_dc9612bc5b8dd0d4944fc69759cdb570.setIcon(icon_f02f7b780852781644d690a9fef002da);
var marker_c9a424a6fa45fe39d3f03f56e9cdba4f = L.marker(
[25.3462809211984, 49.63119772817289],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_d22a332e983673d6bdcc92cd77467883 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dd1e7284eb1b0129fcbb5a51609dc1ba = L.popup({
"maxWidth": 320,
});
var html_0e86b8ee2f55f6be042a75aac293df58 = $(`<div id="html_0e86b8ee2f55f6be042a75aac293df58" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة البشير للتجارة والمقاولات<br> <b>الرقم الموحد:</b> 7001432926<br> <b>السجل التجاري:</b> 2251002422<br> <b>الحي:</b> منطقة الغويبة الزراعية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.3462809211984,49.63119772817289" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dd1e7284eb1b0129fcbb5a51609dc1ba.setContent(html_0e86b8ee2f55f6be042a75aac293df58);
marker_c9a424a6fa45fe39d3f03f56e9cdba4f.bindPopup(popup_dd1e7284eb1b0129fcbb5a51609dc1ba)
;
marker_c9a424a6fa45fe39d3f03f56e9cdba4f.setIcon(icon_d22a332e983673d6bdcc92cd77467883);
var marker_866163e09ce634fa631217a21852ac77 = L.marker(
[25.294510906, 49.71431192000009],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_1db07d299d0ad495f330f6818eccd324 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5f01a5bc77b82bdadc0ce8348392c1c0 = L.popup({
"maxWidth": 320,
});
var html_5d581dcd8442dcc38b4595e4841a9dbb = $(`<div id="html_5d581dcd8442dcc38b4595e4841a9dbb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عبدالعزيز فهد الموسى التجارية<br> <b>الرقم الموحد:</b> 7023573459<br> <b>السجل التجاري:</b> 2031106100<br> <b>الحي:</b> مقترح مستقبلي<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.294510906,49.71431192000009" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5f01a5bc77b82bdadc0ce8348392c1c0.setContent(html_5d581dcd8442dcc38b4595e4841a9dbb);
marker_866163e09ce634fa631217a21852ac77.bindPopup(popup_5f01a5bc77b82bdadc0ce8348392c1c0)
;
marker_866163e09ce634fa631217a21852ac77.setIcon(icon_1db07d299d0ad495f330f6818eccd324);
var marker_4ffc495e264054423069bda8299368db = L.marker(
[25.24114305, 49.73619015],
{
}
).addTo(map_cb1a2f8d6a49da16b473a7fbd3943058);
var icon_d631360f08d11dcde28204668c1995db = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_602480f90bdf0f765b6fceb9a4a9df79 = L.popup({
"maxWidth": 320,
});
var html_57a792f8e761ca5955449ddc79ac9a47 = $(`<div id="html_57a792f8e761ca5955449ddc79ac9a47" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع براك بن ناصر بن مسعود الدوسري للاسفلت<br> <b>الرقم الموحد:</b> 7012592049<br> <b>السجل التجاري:</b> 2031104143<br> <b>الحي:</b> سوده<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.24114305,49.73619015" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_602480f90bdf0f765b6fceb9a4a9df79.setContent(html_57a792f8e761ca5955449ddc79ac9a47);
marker_4ffc495e264054423069bda8299368db.bindPopup(popup_602480f90bdf0f765b6fceb9a4a9df79)
;
marker_4ffc495e264054423069bda8299368db.setIcon(icon_d631360f08d11dcde28204668c1995db);
</script>
</html> |