384fd5a
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 | <!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_5f52f6fca55f4eb434ff64a3a034058c {
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>
<h3 style='direction:rtl;text-align:center;margin:10px 0'>باحث رقم 32</h3>
<div style="
position: fixed;
bottom: 8px; left: 8px;
background: rgba(255,255,255,0.85);
padding: 6px 10px;
border-radius: 8px;
font-size: 13px;
direction: rtl;
z-index: 9999;
box-shadow: 0 1px 6px rgba(0,0,0,0.15);
">
تصميم وإعداد <b>نوف الناصر</b>
</div>
<div class="folium-map" id="map_5f52f6fca55f4eb434ff64a3a034058c" ></div>
</body>
<script>
var map_5f52f6fca55f4eb434ff64a3a034058c = L.map(
"map_5f52f6fca55f4eb434ff64a3a034058c",
{
center: [25.364257545321543, 49.62930383276602],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
L.control.scale().addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var tile_layer_ec2eaefe6b6ec761c513af56cd03a351 = 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_ec2eaefe6b6ec761c513af56cd03a351.addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var tile_layer_a0a100078875dc0bd6901cf7ab3120fc = 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_a0a100078875dc0bd6901cf7ab3120fc.addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var tile_layer_3fd5e20d8fe99fec6b6e1e148bf08fda = 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_3fd5e20d8fe99fec6b6e1e148bf08fda.addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var locate_control_c701520a71780c1ba78b4fb292c7fe19 = L.control.locate(
{"flyTo": true}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var marker_3521c7876585fb3df01980f53ae54684 = L.marker(
[25.35458858, 49.58495675],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_9220f31319e7a98cfff9363fae2a90f4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_301e9e90294b4887abb5ffe214428c22 = L.popup({
"maxWidth": 250,
});
var html_35ab62942ab79c62f7ae655ca382b4fa = $(`<div id="html_35ab62942ab79c62f7ae655ca382b4fa" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة عمارة الخليج</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251029518<br> المنطقة: الهفوف<br> الحارة: المربدية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.35458858,49.58495675" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_301e9e90294b4887abb5ffe214428c22.setContent(html_35ab62942ab79c62f7ae655ca382b4fa);
marker_3521c7876585fb3df01980f53ae54684.bindPopup(popup_301e9e90294b4887abb5ffe214428c22)
;
marker_3521c7876585fb3df01980f53ae54684.bindTooltip(
`<div>
شركة عمارة الخليج
</div>`,
{
"sticky": true,
}
);
marker_3521c7876585fb3df01980f53ae54684.setIcon(icon_9220f31319e7a98cfff9363fae2a90f4);
var marker_bde0a928da610f52436387676e6cd178 = L.marker(
[25.3444378, 49.58754276],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_27787fdc83dab9546cc9fac62c47a2de = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_326a330647c299d733c875cf29c740a2 = L.popup({
"maxWidth": 250,
});
var html_f8e900e96c3b4ed13d233c1a78c2ce01 = $(`<div id="html_f8e900e96c3b4ed13d233c1a78c2ce01" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مكتب مدارات للخدمات العامة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2031105450<br> المنطقة: الهفوف<br> الحارة: جوبا<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3444378,49.58754276" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_326a330647c299d733c875cf29c740a2.setContent(html_f8e900e96c3b4ed13d233c1a78c2ce01);
marker_bde0a928da610f52436387676e6cd178.bindPopup(popup_326a330647c299d733c875cf29c740a2)
;
marker_bde0a928da610f52436387676e6cd178.bindTooltip(
`<div>
مكتب مدارات للخدمات العامة
</div>`,
{
"sticky": true,
}
);
marker_bde0a928da610f52436387676e6cd178.setIcon(icon_27787fdc83dab9546cc9fac62c47a2de);
var marker_c8546518527548af4b559a80d42531ae = L.marker(
[25.39152892840344, 49.58236858171893],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_79bbab4c6369401cac67626eb167dbe0 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f46e26b0c563ec5ae7fa0469f48a869e = L.popup({
"maxWidth": 250,
});
var html_a935b0b3bcd3aed7acb03231c2864f32 = $(`<div id="html_a935b0b3bcd3aed7acb03231c2864f32" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة حسن عدنان علي الحاجي للديكور</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251497680<br> المنطقة: الهفوف<br> الحارة: ام خريسان<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.39152892840344,49.58236858171893" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f46e26b0c563ec5ae7fa0469f48a869e.setContent(html_a935b0b3bcd3aed7acb03231c2864f32);
marker_c8546518527548af4b559a80d42531ae.bindPopup(popup_f46e26b0c563ec5ae7fa0469f48a869e)
;
marker_c8546518527548af4b559a80d42531ae.bindTooltip(
`<div>
مؤسسة حسن عدنان علي الحاجي للديكور
</div>`,
{
"sticky": true,
}
);
marker_c8546518527548af4b559a80d42531ae.setIcon(icon_79bbab4c6369401cac67626eb167dbe0);
var marker_c2dd3f8e1e3f50a2fd84d11779db49d3 = L.marker(
[25.3800411, 49.5897212],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_fa8d6dc3dce99ef84e9db091c192c69a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_25580cb96a40430661ddd431b37a63ec = L.popup({
"maxWidth": 250,
});
var html_c08e05818edfb5a9cd626d13e892b1fe = $(`<div id="html_c08e05818edfb5a9cd626d13e892b1fe" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة غزلان للتجارة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 1010597459<br> المنطقة: الهفوف<br> الحارة: وسط الهفوف التاريخي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3800411,49.5897212" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_25580cb96a40430661ddd431b37a63ec.setContent(html_c08e05818edfb5a9cd626d13e892b1fe);
marker_c2dd3f8e1e3f50a2fd84d11779db49d3.bindPopup(popup_25580cb96a40430661ddd431b37a63ec)
;
marker_c2dd3f8e1e3f50a2fd84d11779db49d3.bindTooltip(
`<div>
شركة غزلان للتجارة
</div>`,
{
"sticky": true,
}
);
marker_c2dd3f8e1e3f50a2fd84d11779db49d3.setIcon(icon_fa8d6dc3dce99ef84e9db091c192c69a);
var marker_28792275286bfdb2548e89efdae130fc = L.marker(
[25.37420842, 49.58548067],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_5922d92d49f1f3054386d091fc52b9ca = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_776161b3d376a4ac1d63b77eaa3e09ea = L.popup({
"maxWidth": 250,
});
var html_009639e2aa648318e6b58a7605354990 = $(`<div id="html_009639e2aa648318e6b58a7605354990" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة عبدالله ابراهيم بن محمد الحمد التجارية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251499925<br> المنطقة: الهفوف<br> الحارة: وسط الهفوف التاريخي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.37420842,49.58548067" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_776161b3d376a4ac1d63b77eaa3e09ea.setContent(html_009639e2aa648318e6b58a7605354990);
marker_28792275286bfdb2548e89efdae130fc.bindPopup(popup_776161b3d376a4ac1d63b77eaa3e09ea)
;
marker_28792275286bfdb2548e89efdae130fc.bindTooltip(
`<div>
مؤسسة عبدالله ابراهيم بن محمد الحمد التجارية
</div>`,
{
"sticky": true,
}
);
marker_28792275286bfdb2548e89efdae130fc.setIcon(icon_5922d92d49f1f3054386d091fc52b9ca);
var marker_9a3e2df90bc911a5dbba394c0e50c7c0 = L.marker(
[25.3780516197607, 49.5892462421175],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_1fd6286c9128c62fab44fb361fc89da7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5b0977e2e3689d682fc2be9fd0260d1b = L.popup({
"maxWidth": 250,
});
var html_e18f9523f9fdd6629ea3057291753e4e = $(`<div id="html_e18f9523f9fdd6629ea3057291753e4e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة محمد إبراهيم المسباح للمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2059002008<br> المنطقة: الهفوف<br> الحارة: وسط الهفوف التاريخي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3780516197607,49.5892462421175" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5b0977e2e3689d682fc2be9fd0260d1b.setContent(html_e18f9523f9fdd6629ea3057291753e4e);
marker_9a3e2df90bc911a5dbba394c0e50c7c0.bindPopup(popup_5b0977e2e3689d682fc2be9fd0260d1b)
;
marker_9a3e2df90bc911a5dbba394c0e50c7c0.bindTooltip(
`<div>
مؤسسة محمد إبراهيم المسباح للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_9a3e2df90bc911a5dbba394c0e50c7c0.setIcon(icon_1fd6286c9128c62fab44fb361fc89da7);
var marker_9bd39bff1786d90c4f192c33a96dfb69 = L.marker(
[25.37220561, 49.58962845],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_13c5a2075fe2684ac5f3f0202897cedc = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_14c7b8c02800a1f832e5f035c97e85dd = L.popup({
"maxWidth": 250,
});
var html_eddd1832ea7d62614363a0c17a96cf75 = $(`<div id="html_eddd1832ea7d62614363a0c17a96cf75" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة مجموعة الأماكن المحدوده</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251499985<br> المنطقة: الهفوف<br> الحارة: وسط الهفوف التاريخي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.37220561,49.58962845" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_14c7b8c02800a1f832e5f035c97e85dd.setContent(html_eddd1832ea7d62614363a0c17a96cf75);
marker_9bd39bff1786d90c4f192c33a96dfb69.bindPopup(popup_14c7b8c02800a1f832e5f035c97e85dd)
;
marker_9bd39bff1786d90c4f192c33a96dfb69.bindTooltip(
`<div>
شركة مجموعة الأماكن المحدوده
</div>`,
{
"sticky": true,
}
);
marker_9bd39bff1786d90c4f192c33a96dfb69.setIcon(icon_13c5a2075fe2684ac5f3f0202897cedc);
var marker_22747191ce77fcab7cf59903ddb3db52 = L.marker(
[25.3757246, 49.5890769],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_70b1948809b1a731a0d9a77d05e6e463 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_de943952525ca61b07cea25d511f67d2 = L.popup({
"maxWidth": 250,
});
var html_e25ad14e2588fefe344f783cc0d0ef95 = $(`<div id="html_e25ad14e2588fefe344f783cc0d0ef95" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة نضيد الخليج للتمور</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2252064718<br> المنطقة: الهفوف<br> الحارة: وسط الهفوف التاريخي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3757246,49.5890769" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_de943952525ca61b07cea25d511f67d2.setContent(html_e25ad14e2588fefe344f783cc0d0ef95);
marker_22747191ce77fcab7cf59903ddb3db52.bindPopup(popup_de943952525ca61b07cea25d511f67d2)
;
marker_22747191ce77fcab7cf59903ddb3db52.bindTooltip(
`<div>
مؤسسة نضيد الخليج للتمور
</div>`,
{
"sticky": true,
}
);
marker_22747191ce77fcab7cf59903ddb3db52.setIcon(icon_70b1948809b1a731a0d9a77d05e6e463);
var marker_e2030ff5fb2ccbc5d80d124c173b28cd = L.marker(
[25.37500729, 49.58365089],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_e06278c2075797a4433d342eb4ee59ca = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5818766e57f6bc7bdf19bd21cc023984 = L.popup({
"maxWidth": 250,
});
var html_b5949bc70fa7db053822f534ee4dfad5 = $(`<div id="html_b5949bc70fa7db053822f534ee4dfad5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة بحار القطيف لبيع الاسماك</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251008666<br> المنطقة: الهفوف<br> الحارة: وسط الهفوف التاريخي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.37500729,49.58365089" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5818766e57f6bc7bdf19bd21cc023984.setContent(html_b5949bc70fa7db053822f534ee4dfad5);
marker_e2030ff5fb2ccbc5d80d124c173b28cd.bindPopup(popup_5818766e57f6bc7bdf19bd21cc023984)
;
marker_e2030ff5fb2ccbc5d80d124c173b28cd.bindTooltip(
`<div>
مؤسسة بحار القطيف لبيع الاسماك
</div>`,
{
"sticky": true,
}
);
marker_e2030ff5fb2ccbc5d80d124c173b28cd.setIcon(icon_e06278c2075797a4433d342eb4ee59ca);
var marker_c4f53b82a8206360c1a7394275edd3f5 = L.marker(
[25.3746047, 49.59058626],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_814ef3fb0798f76244cc2a8a510a65a8 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_435b6a710de97ca52a4e2365614dc05f = L.popup({
"maxWidth": 250,
});
var html_2e0144891b8945721f135544fe412600 = $(`<div id="html_2e0144891b8945721f135544fe412600" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة المسلات للخدمات البريدية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251009248<br> المنطقة: الهفوف<br> الحارة: وسط الهفوف التاريخي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3746047,49.59058626" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_435b6a710de97ca52a4e2365614dc05f.setContent(html_2e0144891b8945721f135544fe412600);
marker_c4f53b82a8206360c1a7394275edd3f5.bindPopup(popup_435b6a710de97ca52a4e2365614dc05f)
;
marker_c4f53b82a8206360c1a7394275edd3f5.bindTooltip(
`<div>
مؤسسة المسلات للخدمات البريدية
</div>`,
{
"sticky": true,
}
);
marker_c4f53b82a8206360c1a7394275edd3f5.setIcon(icon_814ef3fb0798f76244cc2a8a510a65a8);
var marker_427337290c5bb0dea941300256705210 = L.marker(
[25.3750029359822, 49.5838442922652],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_4b33c73bd2b8d2a8a45b91746a4ff645 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5f8b4534642b4bdb318be3b3a521a8a1 = L.popup({
"maxWidth": 250,
});
var html_fecd4b2cf0455280da5c672372234799 = $(`<div id="html_fecd4b2cf0455280da5c672372234799" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مركز حضره للاسماك لصاحبه فهد عبدالله الملحم</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251016786<br> المنطقة: الهفوف<br> الحارة: وسط الهفوف التاريخي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3750029359822,49.5838442922652" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5f8b4534642b4bdb318be3b3a521a8a1.setContent(html_fecd4b2cf0455280da5c672372234799);
marker_427337290c5bb0dea941300256705210.bindPopup(popup_5f8b4534642b4bdb318be3b3a521a8a1)
;
marker_427337290c5bb0dea941300256705210.bindTooltip(
`<div>
مركز حضره للاسماك لصاحبه فهد عبدالله الملحم
</div>`,
{
"sticky": true,
}
);
marker_427337290c5bb0dea941300256705210.setIcon(icon_4b33c73bd2b8d2a8a45b91746a4ff645);
var marker_aec8e81c9dca3f6f6639ece4d8b15a6c = L.marker(
[25.36800006, 49.58799239],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_efc4339661c5737a002b9830ef1e35e1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a50ece4577dcbf8d8726ddd5ebd71896 = L.popup({
"maxWidth": 250,
});
var html_f25fc444f3ded46432722ea6d066072e = $(`<div id="html_f25fc444f3ded46432722ea6d066072e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة مجمع النعيم الطبي</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251005025<br> المنطقة: الهفوف<br> الحارة: وسط الهفوف التاريخي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.36800006,49.58799239" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a50ece4577dcbf8d8726ddd5ebd71896.setContent(html_f25fc444f3ded46432722ea6d066072e);
marker_aec8e81c9dca3f6f6639ece4d8b15a6c.bindPopup(popup_a50ece4577dcbf8d8726ddd5ebd71896)
;
marker_aec8e81c9dca3f6f6639ece4d8b15a6c.bindTooltip(
`<div>
شركة مجمع النعيم الطبي
</div>`,
{
"sticky": true,
}
);
marker_aec8e81c9dca3f6f6639ece4d8b15a6c.setIcon(icon_efc4339661c5737a002b9830ef1e35e1);
var marker_68f9d50f0df7e61799d229b522bb14fe = L.marker(
[25.3665694, 49.58707846],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_3f518b4c8c5df9b2809648533b0bb8f4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b97601258f4e88469a9480e503ff6055 = L.popup({
"maxWidth": 250,
});
var html_7cbb3aee780f88090bd1dcf5f6f51015 = $(`<div id="html_7cbb3aee780f88090bd1dcf5f6f51015" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة كيان العرب لصيانة الالكترونيات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2031110892<br> المنطقة: الهفوف<br> الحارة: وسط الهفوف التاريخي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3665694,49.58707846" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b97601258f4e88469a9480e503ff6055.setContent(html_7cbb3aee780f88090bd1dcf5f6f51015);
marker_68f9d50f0df7e61799d229b522bb14fe.bindPopup(popup_b97601258f4e88469a9480e503ff6055)
;
marker_68f9d50f0df7e61799d229b522bb14fe.bindTooltip(
`<div>
مؤسسة كيان العرب لصيانة الالكترونيات
</div>`,
{
"sticky": true,
}
);
marker_68f9d50f0df7e61799d229b522bb14fe.setIcon(icon_3f518b4c8c5df9b2809648533b0bb8f4);
var marker_93825a041c2377944d1d62d3f1667dd5 = L.marker(
[25.36730604, 49.58613478],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_b0bed0777f00234e9ca6c828a9e4b799 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7a7ec3704c4c2b987bad989297e44f3d = L.popup({
"maxWidth": 250,
});
var html_4cb1ba1e8df76c3f4deb7361962699a4 = $(`<div id="html_4cb1ba1e8df76c3f4deb7361962699a4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة سيري للصيانة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251493761<br> المنطقة: الهفوف<br> الحارة: وسط الهفوف التاريخي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.36730604,49.58613478" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7a7ec3704c4c2b987bad989297e44f3d.setContent(html_4cb1ba1e8df76c3f4deb7361962699a4);
marker_93825a041c2377944d1d62d3f1667dd5.bindPopup(popup_7a7ec3704c4c2b987bad989297e44f3d)
;
marker_93825a041c2377944d1d62d3f1667dd5.bindTooltip(
`<div>
مؤسسة سيري للصيانة
</div>`,
{
"sticky": true,
}
);
marker_93825a041c2377944d1d62d3f1667dd5.setIcon(icon_b0bed0777f00234e9ca6c828a9e4b799);
var marker_08d2df57d8a469af4e4cfa16ce90628b = L.marker(
[25.36534911, 49.58770344],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_0abb5a0cf8813cfcd02f7c315eb35f76 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5c0fe718e482e4559682a89a2041e060 = L.popup({
"maxWidth": 250,
});
var html_90014f259097623abe464c7b33d80f9b = $(`<div id="html_90014f259097623abe464c7b33d80f9b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة طريق الحاسوب للصيانة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251064432<br> المنطقة: الهفوف<br> الحارة: وسط الهفوف التاريخي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.36534911,49.58770344" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5c0fe718e482e4559682a89a2041e060.setContent(html_90014f259097623abe464c7b33d80f9b);
marker_08d2df57d8a469af4e4cfa16ce90628b.bindPopup(popup_5c0fe718e482e4559682a89a2041e060)
;
marker_08d2df57d8a469af4e4cfa16ce90628b.bindTooltip(
`<div>
مؤسسة طريق الحاسوب للصيانة
</div>`,
{
"sticky": true,
}
);
marker_08d2df57d8a469af4e4cfa16ce90628b.setIcon(icon_0abb5a0cf8813cfcd02f7c315eb35f76);
var marker_6997b9a64b1c999b4176339c40775374 = L.marker(
[25.36465289, 49.58641302],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_bd41b69846e869d9381ffc689201aceb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_236cdfaa8914d3edde7c7394fa5d08da = L.popup({
"maxWidth": 250,
});
var html_48d9a88af0969cb13810f9ef96adfe21 = $(`<div id="html_48d9a88af0969cb13810f9ef96adfe21" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>المصنع هياء محمد سالم الكربي للتصنيع</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251495954<br> المنطقة: الهفوف<br> الحارة: الثليثية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.36465289,49.58641302" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_236cdfaa8914d3edde7c7394fa5d08da.setContent(html_48d9a88af0969cb13810f9ef96adfe21);
marker_6997b9a64b1c999b4176339c40775374.bindPopup(popup_236cdfaa8914d3edde7c7394fa5d08da)
;
marker_6997b9a64b1c999b4176339c40775374.bindTooltip(
`<div>
المصنع هياء محمد سالم الكربي للتصنيع
</div>`,
{
"sticky": true,
}
);
marker_6997b9a64b1c999b4176339c40775374.setIcon(icon_bd41b69846e869d9381ffc689201aceb);
var marker_39c813f9f21a0b007e0cd6732e68dcbd = L.marker(
[25.35855825, 49.59059299],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_4a40f367b9c59473a8f20ebd2f4bee8b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8e058e578331750f0e273ca3e5362792 = L.popup({
"maxWidth": 250,
});
var html_8bd212a0ec704134c7039bbc4cf625ff = $(`<div id="html_8bd212a0ec704134c7039bbc4cf625ff" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة المحار الخليجي للمأكولات البحرية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251101758<br> المنطقة: الهفوف<br> الحارة: الثليثية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.35855825,49.59059299" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8e058e578331750f0e273ca3e5362792.setContent(html_8bd212a0ec704134c7039bbc4cf625ff);
marker_39c813f9f21a0b007e0cd6732e68dcbd.bindPopup(popup_8e058e578331750f0e273ca3e5362792)
;
marker_39c813f9f21a0b007e0cd6732e68dcbd.bindTooltip(
`<div>
شركة المحار الخليجي للمأكولات البحرية
</div>`,
{
"sticky": true,
}
);
marker_39c813f9f21a0b007e0cd6732e68dcbd.setIcon(icon_4a40f367b9c59473a8f20ebd2f4bee8b);
var marker_0aa038da23cf6aa9c29dbdc3fbb7c763 = L.marker(
[25.33988601, 49.58201516],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_b1b15ff522f12b4ad1de22db244ce643 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1d5b32c1162691717299afd8718b25a5 = L.popup({
"maxWidth": 250,
});
var html_393caadf125772450e481f73ae0a51b1 = $(`<div id="html_393caadf125772450e481f73ae0a51b1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>صيدلية العناية الافضل الطبية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2031113167<br> المنطقة: الهفوف<br> الحارة: الخالدية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.33988601,49.58201516" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1d5b32c1162691717299afd8718b25a5.setContent(html_393caadf125772450e481f73ae0a51b1);
marker_0aa038da23cf6aa9c29dbdc3fbb7c763.bindPopup(popup_1d5b32c1162691717299afd8718b25a5)
;
marker_0aa038da23cf6aa9c29dbdc3fbb7c763.bindTooltip(
`<div>
صيدلية العناية الافضل الطبية
</div>`,
{
"sticky": true,
}
);
marker_0aa038da23cf6aa9c29dbdc3fbb7c763.setIcon(icon_b1b15ff522f12b4ad1de22db244ce643);
var marker_0007fdaafc647d95182e0ad7be46d5c7 = L.marker(
[25.33181801, 49.58566008],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_b3f6c58cf5f90e38415786c41763961c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e30cc5430b970cb8a5bc96fe57a67fff = L.popup({
"maxWidth": 250,
});
var html_428887d9ff9b1ca721b44b00de19a43d = $(`<div id="html_428887d9ff9b1ca721b44b00de19a43d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مطعم المساء للوجبات السريعة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251032414<br> المنطقة: الهفوف<br> الحارة: الخالدية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.33181801,49.58566008" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e30cc5430b970cb8a5bc96fe57a67fff.setContent(html_428887d9ff9b1ca721b44b00de19a43d);
marker_0007fdaafc647d95182e0ad7be46d5c7.bindPopup(popup_e30cc5430b970cb8a5bc96fe57a67fff)
;
marker_0007fdaafc647d95182e0ad7be46d5c7.bindTooltip(
`<div>
مطعم المساء للوجبات السريعة
</div>`,
{
"sticky": true,
}
);
marker_0007fdaafc647d95182e0ad7be46d5c7.setIcon(icon_b3f6c58cf5f90e38415786c41763961c);
var marker_c0f9ccd288eeb77047c97e372076de79 = L.marker(
[25.34446539, 49.58100714],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_99983602cdd4d1910682c24a5e9bf7fb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_15e9a38df7a36ef17c919fff3a8c1fd4 = L.popup({
"maxWidth": 250,
});
var html_17db536219d60e74888c9e730ea306ed = $(`<div id="html_17db536219d60e74888c9e730ea306ed" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>ساجل لتاجير السيارات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251064238<br> المنطقة: الهفوف<br> الحارة: الخالدية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.34446539,49.58100714" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_15e9a38df7a36ef17c919fff3a8c1fd4.setContent(html_17db536219d60e74888c9e730ea306ed);
marker_c0f9ccd288eeb77047c97e372076de79.bindPopup(popup_15e9a38df7a36ef17c919fff3a8c1fd4)
;
marker_c0f9ccd288eeb77047c97e372076de79.bindTooltip(
`<div>
ساجل لتاجير السيارات
</div>`,
{
"sticky": true,
}
);
marker_c0f9ccd288eeb77047c97e372076de79.setIcon(icon_99983602cdd4d1910682c24a5e9bf7fb);
var marker_a40fd161be58d0dee01ca11bec161437 = L.marker(
[25.33786927, 49.58990381],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_3379d4515f5d3cdd8389878b460f4bd8 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5a821d781b06ab926b914db9c765f6ca = L.popup({
"maxWidth": 250,
});
var html_5fd25a6dbaffc7743da6f5c3cc75b413 = $(`<div id="html_5fd25a6dbaffc7743da6f5c3cc75b413" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مدارس البحار الأهلية للبنات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251041885<br> المنطقة: الهفوف<br> الحارة: الخالدية<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.33786927,49.58990381" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5a821d781b06ab926b914db9c765f6ca.setContent(html_5fd25a6dbaffc7743da6f5c3cc75b413);
marker_a40fd161be58d0dee01ca11bec161437.bindPopup(popup_5a821d781b06ab926b914db9c765f6ca)
;
marker_a40fd161be58d0dee01ca11bec161437.bindTooltip(
`<div>
مدارس البحار الأهلية للبنات
</div>`,
{
"sticky": true,
}
);
marker_a40fd161be58d0dee01ca11bec161437.setIcon(icon_3379d4515f5d3cdd8389878b460f4bd8);
var marker_b201847a42d1ca9109c02e2f470e6a93 = L.marker(
[25.33430936, 49.58287913],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_59ea83c03a0977c81bad4bb1e6d92560 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a58a5351abfd3a453c147f899242aa8b = L.popup({
"maxWidth": 250,
});
var html_bf0ad93fd3d97236840be5a823f9ee92 = $(`<div id="html_bf0ad93fd3d97236840be5a823f9ee92" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة خديجة عادل بن محمد الحميني للصيانة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2031105607<br> المنطقة: الهفوف<br> الحارة: الخالدية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.33430936,49.58287913" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a58a5351abfd3a453c147f899242aa8b.setContent(html_bf0ad93fd3d97236840be5a823f9ee92);
marker_b201847a42d1ca9109c02e2f470e6a93.bindPopup(popup_a58a5351abfd3a453c147f899242aa8b)
;
marker_b201847a42d1ca9109c02e2f470e6a93.bindTooltip(
`<div>
مؤسسة خديجة عادل بن محمد الحميني للصيانة
</div>`,
{
"sticky": true,
}
);
marker_b201847a42d1ca9109c02e2f470e6a93.setIcon(icon_59ea83c03a0977c81bad4bb1e6d92560);
var marker_e9d6572666473a0476b5df4c903396a9 = L.marker(
[25.33893644, 49.5925627],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_657455007ee3a77fe48f0990ce7f8062 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_03526db30cad58145e80fb6ab37793b6 = L.popup({
"maxWidth": 250,
});
var html_a99da1412991776f8320ccb5bcc08614 = $(`<div id="html_a99da1412991776f8320ccb5bcc08614" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة محمد ابراهيم العمر واولاده</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251027089<br> المنطقة: الهفوف<br> الحارة: الخالدية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.33893644,49.5925627" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_03526db30cad58145e80fb6ab37793b6.setContent(html_a99da1412991776f8320ccb5bcc08614);
marker_e9d6572666473a0476b5df4c903396a9.bindPopup(popup_03526db30cad58145e80fb6ab37793b6)
;
marker_e9d6572666473a0476b5df4c903396a9.bindTooltip(
`<div>
شركة محمد ابراهيم العمر واولاده
</div>`,
{
"sticky": true,
}
);
marker_e9d6572666473a0476b5df4c903396a9.setIcon(icon_657455007ee3a77fe48f0990ce7f8062);
var marker_0cfe4b2c3bb7f2de55db8f89fbb69010 = L.marker(
[25.35619927, 49.58584685],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_f7bee75e1a18b635a4704bb9189a6b32 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_49c190ccce7e4b4e27504f3e7c73ebd0 = L.popup({
"maxWidth": 250,
});
var html_4b3eee7fbf324ffdb7a43f0e53b3a155 = $(`<div id="html_4b3eee7fbf324ffdb7a43f0e53b3a155" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة عبداللطيف احمد العرفج وشريكه شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251022605<br> المنطقة: الهفوف<br> الحارة: العويمرية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.35619927,49.58584685" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_49c190ccce7e4b4e27504f3e7c73ebd0.setContent(html_4b3eee7fbf324ffdb7a43f0e53b3a155);
marker_0cfe4b2c3bb7f2de55db8f89fbb69010.bindPopup(popup_49c190ccce7e4b4e27504f3e7c73ebd0)
;
marker_0cfe4b2c3bb7f2de55db8f89fbb69010.bindTooltip(
`<div>
شركة عبداللطيف احمد العرفج وشريكه شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_0cfe4b2c3bb7f2de55db8f89fbb69010.setIcon(icon_f7bee75e1a18b635a4704bb9189a6b32);
var marker_f77c23639082d50408b27df22e401f17 = L.marker(
[25.35204216, 49.58988616],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_68e6ec10ea6f1ed16bde28340c509c2c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_17fefd9c4fa65b38f806542ed4eba329 = L.popup({
"maxWidth": 250,
});
var html_e2ad3baca5342a26bcd2da548befb743 = $(`<div id="html_e2ad3baca5342a26bcd2da548befb743" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مركز احبابي الصغار لضيافة الأطفال</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251056223<br> المنطقة: الهفوف<br> الحارة: العويمرية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.35204216,49.58988616" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_17fefd9c4fa65b38f806542ed4eba329.setContent(html_e2ad3baca5342a26bcd2da548befb743);
marker_f77c23639082d50408b27df22e401f17.bindPopup(popup_17fefd9c4fa65b38f806542ed4eba329)
;
marker_f77c23639082d50408b27df22e401f17.bindTooltip(
`<div>
مركز احبابي الصغار لضيافة الأطفال
</div>`,
{
"sticky": true,
}
);
marker_f77c23639082d50408b27df22e401f17.setIcon(icon_68e6ec10ea6f1ed16bde28340c509c2c);
var marker_4f9ef79e1cd215ac16a0489a8167c38d = L.marker(
[25.3446239873447, 49.5885148216849],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_21a81cd1086b227c73c57fb265868409 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_324967f9e78e736b145db946e97c27dc = L.popup({
"maxWidth": 250,
});
var html_a4cb18e88015e1c3bc785dd9125eca78 = $(`<div id="html_a4cb18e88015e1c3bc785dd9125eca78" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مطعم الرائد البخاري لتقديم الوجبات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251041831<br> المنطقة: الهفوف<br> الحارة: لذه<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3446239873447,49.5885148216849" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_324967f9e78e736b145db946e97c27dc.setContent(html_a4cb18e88015e1c3bc785dd9125eca78);
marker_4f9ef79e1cd215ac16a0489a8167c38d.bindPopup(popup_324967f9e78e736b145db946e97c27dc)
;
marker_4f9ef79e1cd215ac16a0489a8167c38d.bindTooltip(
`<div>
مطعم الرائد البخاري لتقديم الوجبات
</div>`,
{
"sticky": true,
}
);
marker_4f9ef79e1cd215ac16a0489a8167c38d.setIcon(icon_21a81cd1086b227c73c57fb265868409);
var marker_a0934eef0b2aef70b08cb249739e85b3 = L.marker(
[25.35144649, 49.59011929],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_bb80172abd7599be97670558e1b41bed = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_676d6079c5c6d6d482d3907529d1ef95 = L.popup({
"maxWidth": 250,
});
var html_fca1a1b7f3a98e6af70f02c7e8319b54 = $(`<div id="html_fca1a1b7f3a98e6af70f02c7e8319b54" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة مدارس دور العلوم الأهلية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251044325<br> المنطقة: الهفوف<br> الحارة: لذه<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.35144649,49.59011929" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_676d6079c5c6d6d482d3907529d1ef95.setContent(html_fca1a1b7f3a98e6af70f02c7e8319b54);
marker_a0934eef0b2aef70b08cb249739e85b3.bindPopup(popup_676d6079c5c6d6d482d3907529d1ef95)
;
marker_a0934eef0b2aef70b08cb249739e85b3.bindTooltip(
`<div>
شركة مدارس دور العلوم الأهلية
</div>`,
{
"sticky": true,
}
);
marker_a0934eef0b2aef70b08cb249739e85b3.setIcon(icon_bb80172abd7599be97670558e1b41bed);
var marker_8cf5564b825edc71f6a0e144777e999b = L.marker(
[25.38116089, 49.58875543],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_c3a5dc5a131731941bcc8af1101dfe1c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_276be01fd33edef1181207929becb66c = L.popup({
"maxWidth": 250,
});
var html_312149591d7a5bc87b3014a40bd73df1 = $(`<div id="html_312149591d7a5bc87b3014a40bd73df1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مطبعة الاحساء الحديثة للطباعة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251005269<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.38116089,49.58875543" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_276be01fd33edef1181207929becb66c.setContent(html_312149591d7a5bc87b3014a40bd73df1);
marker_8cf5564b825edc71f6a0e144777e999b.bindPopup(popup_276be01fd33edef1181207929becb66c)
;
marker_8cf5564b825edc71f6a0e144777e999b.bindTooltip(
`<div>
مطبعة الاحساء الحديثة للطباعة
</div>`,
{
"sticky": true,
}
);
marker_8cf5564b825edc71f6a0e144777e999b.setIcon(icon_c3a5dc5a131731941bcc8af1101dfe1c);
var marker_c70ea6739038f44426339650383b7d5d = L.marker(
[25.3900150190738, 49.5933510990264],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_8132570640ae01bbf8e4e6438860d8bb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f9e7a9853a81052440e85f1271435c2a = L.popup({
"maxWidth": 250,
});
var html_cfcecea34a02a8a74d8296ef14d5a0e5 = $(`<div id="html_cfcecea34a02a8a74d8296ef14d5a0e5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة مصنع الغدير لمواد التغليف شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2257036958<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3900150190738,49.5933510990264" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f9e7a9853a81052440e85f1271435c2a.setContent(html_cfcecea34a02a8a74d8296ef14d5a0e5);
marker_c70ea6739038f44426339650383b7d5d.bindPopup(popup_f9e7a9853a81052440e85f1271435c2a)
;
marker_c70ea6739038f44426339650383b7d5d.bindTooltip(
`<div>
شركة مصنع الغدير لمواد التغليف شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_c70ea6739038f44426339650383b7d5d.setIcon(icon_8132570640ae01bbf8e4e6438860d8bb);
var marker_3883037a0e3163f057b0a725cc556c81 = L.marker(
[25.39001502, 49.5933511],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_133f3563aadc27bb7f5f10992e5607d6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e56f5e902c40628909298d411c05a022 = L.popup({
"maxWidth": 250,
});
var html_89d2e5ffd1b7385f46405506721a0235 = $(`<div id="html_89d2e5ffd1b7385f46405506721a0235" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة محمد وباسم أبناء ياسين الغدير وشركائهم للتجارة والصناعة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251000053<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.39001502,49.5933511" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e56f5e902c40628909298d411c05a022.setContent(html_89d2e5ffd1b7385f46405506721a0235);
marker_3883037a0e3163f057b0a725cc556c81.bindPopup(popup_e56f5e902c40628909298d411c05a022)
;
marker_3883037a0e3163f057b0a725cc556c81.bindTooltip(
`<div>
شركة محمد وباسم أبناء ياسين الغدير وشركائهم للتجارة والصناعة
</div>`,
{
"sticky": true,
}
);
marker_3883037a0e3163f057b0a725cc556c81.setIcon(icon_133f3563aadc27bb7f5f10992e5607d6);
var marker_9b3e46660a9e5e89fa386dda9b79ff16 = L.marker(
[25.38908592, 49.59331468],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_f2b3686448d53eca878afc4470989f57 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bdb0683d5253f938bb46b6f8ed6671d4 = L.popup({
"maxWidth": 250,
});
var html_0bda1c6ba1ce8043102b713450caeb64 = $(`<div id="html_0bda1c6ba1ce8043102b713450caeb64" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة الملحم للمقاولات العامة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251012087<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.38908592,49.59331468" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bdb0683d5253f938bb46b6f8ed6671d4.setContent(html_0bda1c6ba1ce8043102b713450caeb64);
marker_9b3e46660a9e5e89fa386dda9b79ff16.bindPopup(popup_bdb0683d5253f938bb46b6f8ed6671d4)
;
marker_9b3e46660a9e5e89fa386dda9b79ff16.bindTooltip(
`<div>
شركة الملحم للمقاولات العامة
</div>`,
{
"sticky": true,
}
);
marker_9b3e46660a9e5e89fa386dda9b79ff16.setIcon(icon_f2b3686448d53eca878afc4470989f57);
var marker_f0d1bc8e953d708d5b863d57c16fdb35 = L.marker(
[25.3946193598566, 49.595785149842],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_1e9f1255caf932c6bb4e5d07e402c362 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_51c83cc7f45f875b0b0bc5959218b195 = L.popup({
"maxWidth": 250,
});
var html_8247081577c20e3ceccc873cbc8fb7a7 = $(`<div id="html_8247081577c20e3ceccc873cbc8fb7a7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة المشروعات الشرقية لأعمال المباني</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251028026<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3946193598566,49.595785149842" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_51c83cc7f45f875b0b0bc5959218b195.setContent(html_8247081577c20e3ceccc873cbc8fb7a7);
marker_f0d1bc8e953d708d5b863d57c16fdb35.bindPopup(popup_51c83cc7f45f875b0b0bc5959218b195)
;
marker_f0d1bc8e953d708d5b863d57c16fdb35.bindTooltip(
`<div>
شركة المشروعات الشرقية لأعمال المباني
</div>`,
{
"sticky": true,
}
);
marker_f0d1bc8e953d708d5b863d57c16fdb35.setIcon(icon_1e9f1255caf932c6bb4e5d07e402c362);
var marker_e8b7df13b56dbac63cb4fe1a3b496723 = L.marker(
[25.3827578502132, 49.5912319992145],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_d94d380b2401d8d64b1692cea6a29306 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dd78c0d651fddeab5388d37686fc939a = L.popup({
"maxWidth": 250,
});
var html_0bc6e8a2c3c0ede84a0ac99bebdc16e8 = $(`<div id="html_0bc6e8a2c3c0ede84a0ac99bebdc16e8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركةالعوض للتجارةوالمقاولات لاصحابها علي أحمد طاهر العوض وشركاه</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251002699<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3827578502132,49.5912319992145" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dd78c0d651fddeab5388d37686fc939a.setContent(html_0bc6e8a2c3c0ede84a0ac99bebdc16e8);
marker_e8b7df13b56dbac63cb4fe1a3b496723.bindPopup(popup_dd78c0d651fddeab5388d37686fc939a)
;
marker_e8b7df13b56dbac63cb4fe1a3b496723.bindTooltip(
`<div>
شركةالعوض للتجارةوالمقاولات لاصحابها علي أحمد طاهر العوض وشركاه
</div>`,
{
"sticky": true,
}
);
marker_e8b7df13b56dbac63cb4fe1a3b496723.setIcon(icon_d94d380b2401d8d64b1692cea6a29306);
var marker_49a897e9fd5b9f4d8d98b421b03f0e88 = L.marker(
[25.3925091518439, 49.586912726937],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_6c125d5805211da0c1e4c474605526e0 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0555033098b53f73d08cb94648e139f1 = L.popup({
"maxWidth": 250,
});
var html_b3f090941b8440d1485e02a46f9c2dbc = $(`<div id="html_b3f090941b8440d1485e02a46f9c2dbc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة نور صفاء لصيانة السيارات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251039182<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3925091518439,49.586912726937" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0555033098b53f73d08cb94648e139f1.setContent(html_b3f090941b8440d1485e02a46f9c2dbc);
marker_49a897e9fd5b9f4d8d98b421b03f0e88.bindPopup(popup_0555033098b53f73d08cb94648e139f1)
;
marker_49a897e9fd5b9f4d8d98b421b03f0e88.bindTooltip(
`<div>
مؤسسة نور صفاء لصيانة السيارات
</div>`,
{
"sticky": true,
}
);
marker_49a897e9fd5b9f4d8d98b421b03f0e88.setIcon(icon_6c125d5805211da0c1e4c474605526e0);
var marker_7e7926a426a54192b75a2ac0e256873a = L.marker(
[25.39177985, 49.5869128],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_5ed701f4d6b48849f9453a0e06a71f8a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6352d76ec9df1363ef6cdcb106cb0e20 = L.popup({
"maxWidth": 250,
});
var html_5b6745363b3f33e225c70a34c1c57cee = $(`<div id="html_5b6745363b3f33e225c70a34c1c57cee" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>محطة جمال بن محمد بن شرار البراهيم للوقود</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251060668<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.39177985,49.5869128" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6352d76ec9df1363ef6cdcb106cb0e20.setContent(html_5b6745363b3f33e225c70a34c1c57cee);
marker_7e7926a426a54192b75a2ac0e256873a.bindPopup(popup_6352d76ec9df1363ef6cdcb106cb0e20)
;
marker_7e7926a426a54192b75a2ac0e256873a.bindTooltip(
`<div>
محطة جمال بن محمد بن شرار البراهيم للوقود
</div>`,
{
"sticky": true,
}
);
marker_7e7926a426a54192b75a2ac0e256873a.setIcon(icon_5ed701f4d6b48849f9453a0e06a71f8a);
var marker_4f2d28a6b332213431a480b26e0c3d63 = L.marker(
[25.3890994, 49.58750205],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_f76202713f0dc187420f1dc0db115283 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_63775515502f9706d61866615f0782cc = L.popup({
"maxWidth": 250,
});
var html_c882cebcf123eb85547d9c59109ccf40 = $(`<div id="html_c882cebcf123eb85547d9c59109ccf40" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة متروك مسفر العتيبي التجاريه</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251000662<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3890994,49.58750205" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_63775515502f9706d61866615f0782cc.setContent(html_c882cebcf123eb85547d9c59109ccf40);
marker_4f2d28a6b332213431a480b26e0c3d63.bindPopup(popup_63775515502f9706d61866615f0782cc)
;
marker_4f2d28a6b332213431a480b26e0c3d63.bindTooltip(
`<div>
مؤسسة متروك مسفر العتيبي التجاريه
</div>`,
{
"sticky": true,
}
);
marker_4f2d28a6b332213431a480b26e0c3d63.setIcon(icon_f76202713f0dc187420f1dc0db115283);
var marker_9d108219b21f614d55362bcdbcdedd73 = L.marker(
[25.39056731, 49.59376166],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_92a3dd4fcc96e0d08b3393d3e981844c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9757456996d3400346f73aece6a42a43 = L.popup({
"maxWidth": 250,
});
var html_1aba713140389debb1ea3db4d8c4f575 = $(`<div id="html_1aba713140389debb1ea3db4d8c4f575" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة سعد محمد الودعاني للتجاره</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251018700<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.39056731,49.59376166" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9757456996d3400346f73aece6a42a43.setContent(html_1aba713140389debb1ea3db4d8c4f575);
marker_9d108219b21f614d55362bcdbcdedd73.bindPopup(popup_9757456996d3400346f73aece6a42a43)
;
marker_9d108219b21f614d55362bcdbcdedd73.bindTooltip(
`<div>
مؤسسة سعد محمد الودعاني للتجاره
</div>`,
{
"sticky": true,
}
);
marker_9d108219b21f614d55362bcdbcdedd73.setIcon(icon_92a3dd4fcc96e0d08b3393d3e981844c);
var marker_a4ce9db3fe595584975d3e786f46b437 = L.marker(
[25.38788409, 49.58804069],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_9cf42f151561cd813e4c4d623cb3323c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_22e8a9e65b65947d9616dbc11f6cc2b0 = L.popup({
"maxWidth": 250,
});
var html_98871d611f3332b3cd2236eac55677db = $(`<div id="html_98871d611f3332b3cd2236eac55677db" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة ليالي عدن لتقديم الوجبات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2252032039<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.38788409,49.58804069" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_22e8a9e65b65947d9616dbc11f6cc2b0.setContent(html_98871d611f3332b3cd2236eac55677db);
marker_a4ce9db3fe595584975d3e786f46b437.bindPopup(popup_22e8a9e65b65947d9616dbc11f6cc2b0)
;
marker_a4ce9db3fe595584975d3e786f46b437.bindTooltip(
`<div>
شركة ليالي عدن لتقديم الوجبات
</div>`,
{
"sticky": true,
}
);
marker_a4ce9db3fe595584975d3e786f46b437.setIcon(icon_9cf42f151561cd813e4c4d623cb3323c);
var marker_d594e08b2df80d505f0e4cb40975818a = L.marker(
[25.39307429, 49.59075742],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_0578042793a06a8b1347c5caca7185e0 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_52f5443d1aedbe08a48c6ed9fc66766d = L.popup({
"maxWidth": 250,
});
var html_b6723ebcd128a29198b175ebb34593f0 = $(`<div id="html_b6723ebcd128a29198b175ebb34593f0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة طموح الاعمار لتقنية المعلومات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251047253<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.39307429,49.59075742" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_52f5443d1aedbe08a48c6ed9fc66766d.setContent(html_b6723ebcd128a29198b175ebb34593f0);
marker_d594e08b2df80d505f0e4cb40975818a.bindPopup(popup_52f5443d1aedbe08a48c6ed9fc66766d)
;
marker_d594e08b2df80d505f0e4cb40975818a.bindTooltip(
`<div>
مؤسسة طموح الاعمار لتقنية المعلومات
</div>`,
{
"sticky": true,
}
);
marker_d594e08b2df80d505f0e4cb40975818a.setIcon(icon_0578042793a06a8b1347c5caca7185e0);
var marker_60d94a4a59c9e79c63d39eb3fe5e9fca = L.marker(
[25.39101303, 49.58877337],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_81cb6c364a89da50be245b102407808b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c75645eb8d66e89c28242c29bb97b283 = L.popup({
"maxWidth": 250,
});
var html_d9366f8ad2f3aa94e06b0bf82cd038c1 = $(`<div id="html_d9366f8ad2f3aa94e06b0bf82cd038c1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة عبدالله عبدالمحسن الشايب للاستشارات الهندسية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251060614<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.39101303,49.58877337" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c75645eb8d66e89c28242c29bb97b283.setContent(html_d9366f8ad2f3aa94e06b0bf82cd038c1);
marker_60d94a4a59c9e79c63d39eb3fe5e9fca.bindPopup(popup_c75645eb8d66e89c28242c29bb97b283)
;
marker_60d94a4a59c9e79c63d39eb3fe5e9fca.bindTooltip(
`<div>
شركة عبدالله عبدالمحسن الشايب للاستشارات الهندسية
</div>`,
{
"sticky": true,
}
);
marker_60d94a4a59c9e79c63d39eb3fe5e9fca.setIcon(icon_81cb6c364a89da50be245b102407808b);
var marker_2ecc2b05d926056db6b6f6c72e258efa = L.marker(
[25.39307429, 49.59075742],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_34b69815022d8c7d2723defe5317573e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1d86c8d734f3ee652bae32406e071a3c = L.popup({
"maxWidth": 250,
});
var html_94667e87096de20298f7955a2be14704 = $(`<div id="html_94667e87096de20298f7955a2be14704" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة أبناء الدكتور جميل محمود خطاب</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2252039924<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.39307429,49.59075742" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1d86c8d734f3ee652bae32406e071a3c.setContent(html_94667e87096de20298f7955a2be14704);
marker_2ecc2b05d926056db6b6f6c72e258efa.bindPopup(popup_1d86c8d734f3ee652bae32406e071a3c)
;
marker_2ecc2b05d926056db6b6f6c72e258efa.bindTooltip(
`<div>
شركة أبناء الدكتور جميل محمود خطاب
</div>`,
{
"sticky": true,
}
);
marker_2ecc2b05d926056db6b6f6c72e258efa.setIcon(icon_34b69815022d8c7d2723defe5317573e);
var marker_1b76b9e1239898612e6c6e9d674b1ce9 = L.marker(
[25.39411852, 49.59223314],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_acca39e2935249e19be4fbf1365346dd = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4ee2978ca7f09c18a284e62419ae4bb9 = L.popup({
"maxWidth": 250,
});
var html_b946ce526c811a5d93fcc964ac035cbe = $(`<div id="html_b946ce526c811a5d93fcc964ac035cbe" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مركز بتول احمد بن عبدالله الشرقي الرياضي</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2031114591<br> المنطقة: الهفوف<br> الحارة: الفيصلية الأول<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.39411852,49.59223314" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4ee2978ca7f09c18a284e62419ae4bb9.setContent(html_b946ce526c811a5d93fcc964ac035cbe);
marker_1b76b9e1239898612e6c6e9d674b1ce9.bindPopup(popup_4ee2978ca7f09c18a284e62419ae4bb9)
;
marker_1b76b9e1239898612e6c6e9d674b1ce9.bindTooltip(
`<div>
مركز بتول احمد بن عبدالله الشرقي الرياضي
</div>`,
{
"sticky": true,
}
);
marker_1b76b9e1239898612e6c6e9d674b1ce9.setIcon(icon_acca39e2935249e19be4fbf1365346dd);
var marker_c9f75852f17100c8bfc48f51017823dc = L.marker(
[25.377132295, 49.592364617],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_dc0fed147a318b74020961fbc6a16ce8 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_beb3047138cbfbe5b94a5b4c2d72dfcf = L.popup({
"maxWidth": 250,
});
var html_5efab741984341a64b1fcbccb2ef4d50 = $(`<div id="html_5efab741984341a64b1fcbccb2ef4d50" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة منصور بن محمد بن عثمان الراجح التجارية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251069306<br> المنطقة: الهفوف<br> الحارة: الناصرية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.377132295,49.592364617" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_beb3047138cbfbe5b94a5b4c2d72dfcf.setContent(html_5efab741984341a64b1fcbccb2ef4d50);
marker_c9f75852f17100c8bfc48f51017823dc.bindPopup(popup_beb3047138cbfbe5b94a5b4c2d72dfcf)
;
marker_c9f75852f17100c8bfc48f51017823dc.bindTooltip(
`<div>
مؤسسة منصور بن محمد بن عثمان الراجح التجارية
</div>`,
{
"sticky": true,
}
);
marker_c9f75852f17100c8bfc48f51017823dc.setIcon(icon_dc0fed147a318b74020961fbc6a16ce8);
var marker_641c182e4b3b0df32ef620553795fc53 = L.marker(
[25.37304258, 49.59719588],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_a4e6ab7d81b8f15c608acfe1b4929bcd = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_67a287d3756496ee05b44c9b2b00f265 = L.popup({
"maxWidth": 250,
});
var html_2107f5be971a1fc6856a3d438b062164 = $(`<div id="html_2107f5be971a1fc6856a3d438b062164" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة جعفر بن علي بن حجي الجباره للتنجيد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251042350<br> المنطقة: الهفوف<br> الحارة: الناصرية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.37304258,49.59719588" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_67a287d3756496ee05b44c9b2b00f265.setContent(html_2107f5be971a1fc6856a3d438b062164);
marker_641c182e4b3b0df32ef620553795fc53.bindPopup(popup_67a287d3756496ee05b44c9b2b00f265)
;
marker_641c182e4b3b0df32ef620553795fc53.bindTooltip(
`<div>
مؤسسة جعفر بن علي بن حجي الجباره للتنجيد
</div>`,
{
"sticky": true,
}
);
marker_641c182e4b3b0df32ef620553795fc53.setIcon(icon_a4e6ab7d81b8f15c608acfe1b4929bcd);
var marker_9ffa391823b15512225f4d630ebaddba = L.marker(
[25.37288951, 49.59683516],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_9af758fb1d727b8bdb1f5bb70a010e35 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d504954b7906e3955f6d841e5cd4800f = L.popup({
"maxWidth": 250,
});
var html_fc9b718f65cbcc2d34f84eb5bb40687a = $(`<div id="html_fc9b718f65cbcc2d34f84eb5bb40687a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة حصه خالد عبداللطيف البخيت التجارية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251505913<br> المنطقة: الهفوف<br> الحارة: الناصرية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.37288951,49.59683516" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d504954b7906e3955f6d841e5cd4800f.setContent(html_fc9b718f65cbcc2d34f84eb5bb40687a);
marker_9ffa391823b15512225f4d630ebaddba.bindPopup(popup_d504954b7906e3955f6d841e5cd4800f)
;
marker_9ffa391823b15512225f4d630ebaddba.bindTooltip(
`<div>
مؤسسة حصه خالد عبداللطيف البخيت التجارية
</div>`,
{
"sticky": true,
}
);
marker_9ffa391823b15512225f4d630ebaddba.setIcon(icon_9af758fb1d727b8bdb1f5bb70a010e35);
var marker_af881dc22b52c46521d669bc16f61ba7 = L.marker(
[25.35991956, 49.59049773],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_97ea7f9b15f74d5b4a68f18dce0d2068 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6cc623a8300f0844f6516214d921dc47 = L.popup({
"maxWidth": 250,
});
var html_65611cd34381eff1e97aab6a299f32dc = $(`<div id="html_65611cd34381eff1e97aab6a299f32dc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة محمد فهد العلي وشركاؤه</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251006537<br> المنطقة: الهفوف<br> الحارة: العليا<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.35991956,49.59049773" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6cc623a8300f0844f6516214d921dc47.setContent(html_65611cd34381eff1e97aab6a299f32dc);
marker_af881dc22b52c46521d669bc16f61ba7.bindPopup(popup_6cc623a8300f0844f6516214d921dc47)
;
marker_af881dc22b52c46521d669bc16f61ba7.bindTooltip(
`<div>
شركة محمد فهد العلي وشركاؤه
</div>`,
{
"sticky": true,
}
);
marker_af881dc22b52c46521d669bc16f61ba7.setIcon(icon_97ea7f9b15f74d5b4a68f18dce0d2068);
var marker_1b6b27a365a86f5f5d3892850c223a84 = L.marker(
[25.38515174, 49.59907931],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_768910705a3c8f1ee665075b3cda5647 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_442ee2c5eceb6141cbf03d2727c45c76 = L.popup({
"maxWidth": 250,
});
var html_47e37d7453e95f72d2a2828da5900d8b = $(`<div id="html_47e37d7453e95f72d2a2828da5900d8b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة عبدالله علي العامر وأخوانه التجارية شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251000128<br> المنطقة: الهفوف<br> الحارة: التعاون<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.38515174,49.59907931" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_442ee2c5eceb6141cbf03d2727c45c76.setContent(html_47e37d7453e95f72d2a2828da5900d8b);
marker_1b6b27a365a86f5f5d3892850c223a84.bindPopup(popup_442ee2c5eceb6141cbf03d2727c45c76)
;
marker_1b6b27a365a86f5f5d3892850c223a84.bindTooltip(
`<div>
شركة عبدالله علي العامر وأخوانه التجارية شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_1b6b27a365a86f5f5d3892850c223a84.setIcon(icon_768910705a3c8f1ee665075b3cda5647);
var marker_2cc60054dfbd1b13d3c373974ceb9408 = L.marker(
[25.38455412, 49.59585847],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_d76fc25b848210d51cbca4a54c2b37d1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b10ed61318e20fa7206d57a4676e3e94 = L.popup({
"maxWidth": 250,
});
var html_90996ef7185c9aad382760cc37a18436 = $(`<div id="html_90996ef7185c9aad382760cc37a18436" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة باقر عبدالله سلمان القطان واولاده</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251025886<br> المنطقة: الهفوف<br> الحارة: التعاون<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.38455412,49.59585847" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b10ed61318e20fa7206d57a4676e3e94.setContent(html_90996ef7185c9aad382760cc37a18436);
marker_2cc60054dfbd1b13d3c373974ceb9408.bindPopup(popup_b10ed61318e20fa7206d57a4676e3e94)
;
marker_2cc60054dfbd1b13d3c373974ceb9408.bindTooltip(
`<div>
شركة باقر عبدالله سلمان القطان واولاده
</div>`,
{
"sticky": true,
}
);
marker_2cc60054dfbd1b13d3c373974ceb9408.setIcon(icon_d76fc25b848210d51cbca4a54c2b37d1);
var marker_b2bf454ef33ac8396787c62dcb215efb = L.marker(
[25.31379021, 49.6046614],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_d57cc708f8c9fc5b085b433e272171d5 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1a73e5de370ede54d19f88d1cf0c8eaf = L.popup({
"maxWidth": 250,
});
var html_c0e8cec17bd991e0b730068a23ccfb3f = $(`<div id="html_c0e8cec17bd991e0b730068a23ccfb3f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة مطاعم البخارية لتقديم الوجبات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251042061<br> المنطقة: الهفوف<br> الحارة: منسوبي التعليم الأول<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.31379021,49.6046614" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1a73e5de370ede54d19f88d1cf0c8eaf.setContent(html_c0e8cec17bd991e0b730068a23ccfb3f);
marker_b2bf454ef33ac8396787c62dcb215efb.bindPopup(popup_1a73e5de370ede54d19f88d1cf0c8eaf)
;
marker_b2bf454ef33ac8396787c62dcb215efb.bindTooltip(
`<div>
شركة مطاعم البخارية لتقديم الوجبات
</div>`,
{
"sticky": true,
}
);
marker_b2bf454ef33ac8396787c62dcb215efb.setIcon(icon_d57cc708f8c9fc5b085b433e272171d5);
var marker_955e149220fc56e0578fbe09911ddaef = L.marker(
[25.381045170402, 49.5984082773075],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_6b256c1fe25f476b5d844439a175e499 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e470103e70318e73ae4aeae44c5495f5 = L.popup({
"maxWidth": 250,
});
var html_8a4fbfb0a28eb68c0708ccd7e1820c60 = $(`<div id="html_8a4fbfb0a28eb68c0708ccd7e1820c60" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة ازدهار للتجارة والمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251027704<br> المنطقة: الهفوف<br> الحارة: السليمانية<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.381045170402,49.5984082773075" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e470103e70318e73ae4aeae44c5495f5.setContent(html_8a4fbfb0a28eb68c0708ccd7e1820c60);
marker_955e149220fc56e0578fbe09911ddaef.bindPopup(popup_e470103e70318e73ae4aeae44c5495f5)
;
marker_955e149220fc56e0578fbe09911ddaef.bindTooltip(
`<div>
شركة ازدهار للتجارة والمقاولات
</div>`,
{
"sticky": true,
}
);
marker_955e149220fc56e0578fbe09911ddaef.setIcon(icon_6b256c1fe25f476b5d844439a175e499);
var marker_eb431d3f708c4b9e9ba7750da2baa556 = L.marker(
[25.3512768001544, 49.6045377209833],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_ad44d3317e9df49e73b381b876de8d25 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4747ae411f8a17f078156c77d1b1215d = L.popup({
"maxWidth": 250,
});
var html_201464b36fad30b020fa477f914c39a9 = $(`<div id="html_201464b36fad30b020fa477f914c39a9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة مجمع عيادات الملحم الطبية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251022329<br> المنطقة: الهفوف<br> الحارة: المثلث<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3512768001544,49.6045377209833" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4747ae411f8a17f078156c77d1b1215d.setContent(html_201464b36fad30b020fa477f914c39a9);
marker_eb431d3f708c4b9e9ba7750da2baa556.bindPopup(popup_4747ae411f8a17f078156c77d1b1215d)
;
marker_eb431d3f708c4b9e9ba7750da2baa556.bindTooltip(
`<div>
شركة مجمع عيادات الملحم الطبية
</div>`,
{
"sticky": true,
}
);
marker_eb431d3f708c4b9e9ba7750da2baa556.setIcon(icon_ad44d3317e9df49e73b381b876de8d25);
var marker_84072bc2849c8be7cdba73bab80a719d = L.marker(
[25.36768069, 49.60357038],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_1adc8b1833fca73fae2d56bf948de348 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c9c0de6c3ae0328f802f431a23109a86 = L.popup({
"maxWidth": 250,
});
var html_59c59c96df7496c758e181babc41a461 = $(`<div id="html_59c59c96df7496c758e181babc41a461" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مطعم بدر بن حسن بن مهدي العلوي لتقديم الوجبات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251029289<br> المنطقة: الهفوف<br> الحارة: عين موسى<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.36768069,49.60357038" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c9c0de6c3ae0328f802f431a23109a86.setContent(html_59c59c96df7496c758e181babc41a461);
marker_84072bc2849c8be7cdba73bab80a719d.bindPopup(popup_c9c0de6c3ae0328f802f431a23109a86)
;
marker_84072bc2849c8be7cdba73bab80a719d.bindTooltip(
`<div>
مطعم بدر بن حسن بن مهدي العلوي لتقديم الوجبات
</div>`,
{
"sticky": true,
}
);
marker_84072bc2849c8be7cdba73bab80a719d.setIcon(icon_1adc8b1833fca73fae2d56bf948de348);
var marker_d929a78962345ff0e89b55f900526118 = L.marker(
[25.36611517, 49.6038409],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_644711c3a014177735284f389e5f4a7c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0543049a1bcfeca4c755762392d90b93 = L.popup({
"maxWidth": 250,
});
var html_6013611446d3e5b91e9dffd553be2c40 = $(`<div id="html_6013611446d3e5b91e9dffd553be2c40" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مركز الباشا الرياضي</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251038967<br> المنطقة: الهفوف<br> الحارة: عين موسى<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.36611517,49.6038409" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0543049a1bcfeca4c755762392d90b93.setContent(html_6013611446d3e5b91e9dffd553be2c40);
marker_d929a78962345ff0e89b55f900526118.bindPopup(popup_0543049a1bcfeca4c755762392d90b93)
;
marker_d929a78962345ff0e89b55f900526118.bindTooltip(
`<div>
مركز الباشا الرياضي
</div>`,
{
"sticky": true,
}
);
marker_d929a78962345ff0e89b55f900526118.setIcon(icon_644711c3a014177735284f389e5f4a7c);
var marker_64778c36b83ee956498b51b392431dbc = L.marker(
[25.3872208, 49.59984082],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_71e3140a57d2944bc6c19f70b1ca55b8 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_953757c2185e748ed20679c007c935e7 = L.popup({
"maxWidth": 250,
});
var html_a17c6d664b86ba499254a62221cd1460 = $(`<div id="html_a17c6d664b86ba499254a62221cd1460" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة يوسف علي العلي للمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251003570<br> المنطقة: الهفوف<br> الحارة: الفيصلية الثاني<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3872208,49.59984082" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_953757c2185e748ed20679c007c935e7.setContent(html_a17c6d664b86ba499254a62221cd1460);
marker_64778c36b83ee956498b51b392431dbc.bindPopup(popup_953757c2185e748ed20679c007c935e7)
;
marker_64778c36b83ee956498b51b392431dbc.bindTooltip(
`<div>
مؤسسة يوسف علي العلي للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_64778c36b83ee956498b51b392431dbc.setIcon(icon_71e3140a57d2944bc6c19f70b1ca55b8);
var marker_7f28ca09e6fbc82b0df045c71567175f = L.marker(
[25.38898952, 49.60298665],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_34ba20085a33d4e174940814c31254a6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1e22514ee3a61cc51256754dd36d9031 = L.popup({
"maxWidth": 250,
});
var html_7bcb93ede93898519c7f55fb87fc7822 = $(`<div id="html_7bcb93ede93898519c7f55fb87fc7822" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة عبدالله علي العامر وأخوانه التجارية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251025795<br> المنطقة: الهفوف<br> الحارة: الفيصلية الثاني<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.38898952,49.60298665" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1e22514ee3a61cc51256754dd36d9031.setContent(html_7bcb93ede93898519c7f55fb87fc7822);
marker_7f28ca09e6fbc82b0df045c71567175f.bindPopup(popup_1e22514ee3a61cc51256754dd36d9031)
;
marker_7f28ca09e6fbc82b0df045c71567175f.bindTooltip(
`<div>
شركة عبدالله علي العامر وأخوانه التجارية
</div>`,
{
"sticky": true,
}
);
marker_7f28ca09e6fbc82b0df045c71567175f.setIcon(icon_34ba20085a33d4e174940814c31254a6);
var marker_e701da5c2b7bb5574b2dd0812a71d2e7 = L.marker(
[25.3909439243714, 49.5991212312404],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_4b31ceacd3acea9c5960b92b409b7938 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_461de189151dc6d502899ab650c06a70 = L.popup({
"maxWidth": 250,
});
var html_a18796df59a67524f04a713f1b3bde80 = $(`<div id="html_a18796df59a67524f04a713f1b3bde80" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>أسواق اليحيى للمواد الغذائية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251003161<br> المنطقة: الهفوف<br> الحارة: الفيصلية الثاني<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3909439243714,49.5991212312404" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_461de189151dc6d502899ab650c06a70.setContent(html_a18796df59a67524f04a713f1b3bde80);
marker_e701da5c2b7bb5574b2dd0812a71d2e7.bindPopup(popup_461de189151dc6d502899ab650c06a70)
;
marker_e701da5c2b7bb5574b2dd0812a71d2e7.bindTooltip(
`<div>
أسواق اليحيى للمواد الغذائية
</div>`,
{
"sticky": true,
}
);
marker_e701da5c2b7bb5574b2dd0812a71d2e7.setIcon(icon_4b31ceacd3acea9c5960b92b409b7938);
var marker_ce039f162377ccdbb7315d4c3fe6fc3b = L.marker(
[25.3943769434912, 49.5999558577071],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_2d6c62de36647607c4da3b5050673d02 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_597de4dff96886b7128a511106a80434 = L.popup({
"maxWidth": 250,
});
var html_bacb0bd2f68fd0d1f3e52f2479425154 = $(`<div id="html_bacb0bd2f68fd0d1f3e52f2479425154" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة يمار العربية للادوات الصحية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250160248<br> المنطقة: الهفوف<br> الحارة: الفيصلية الثاني<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3943769434912,49.5999558577071" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_597de4dff96886b7128a511106a80434.setContent(html_bacb0bd2f68fd0d1f3e52f2479425154);
marker_ce039f162377ccdbb7315d4c3fe6fc3b.bindPopup(popup_597de4dff96886b7128a511106a80434)
;
marker_ce039f162377ccdbb7315d4c3fe6fc3b.bindTooltip(
`<div>
شركة يمار العربية للادوات الصحية
</div>`,
{
"sticky": true,
}
);
marker_ce039f162377ccdbb7315d4c3fe6fc3b.setIcon(icon_2d6c62de36647607c4da3b5050673d02);
var marker_d4ff52fde2a8384da54269fc0e462c55 = L.marker(
[25.3907824986487, 49.6046113488744],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_ba8f8d65b86dce7d393225b7cd95aae5 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ad7212f54f30d7ff1f2370869c18362d = L.popup({
"maxWidth": 250,
});
var html_0094c91ad8d0673aead427cf8d088ea8 = $(`<div id="html_0094c91ad8d0673aead427cf8d088ea8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مجمع جوهرة هجر التجاري</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251023417<br> المنطقة: الهفوف<br> الحارة: الفيصلية الثاني<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3907824986487,49.6046113488744" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ad7212f54f30d7ff1f2370869c18362d.setContent(html_0094c91ad8d0673aead427cf8d088ea8);
marker_d4ff52fde2a8384da54269fc0e462c55.bindPopup(popup_ad7212f54f30d7ff1f2370869c18362d)
;
marker_d4ff52fde2a8384da54269fc0e462c55.bindTooltip(
`<div>
مجمع جوهرة هجر التجاري
</div>`,
{
"sticky": true,
}
);
marker_d4ff52fde2a8384da54269fc0e462c55.setIcon(icon_ba8f8d65b86dce7d393225b7cd95aae5);
var marker_5c433d6501ef5e2a5eddc39349608c6d = L.marker(
[25.3935302191727, 49.6042983362689],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_c4cc70e10b3b4184afc3b871b474e0b2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8acb12d113913a0895c040e711cfa98b = L.popup({
"maxWidth": 250,
});
var html_e35752ec75a3bc29269f223d238077cc = $(`<div id="html_e35752ec75a3bc29269f223d238077cc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة مستشفى حسين علي العلي للخدمات الطبية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251039021<br> المنطقة: الهفوف<br> الحارة: الفيصلية الثاني<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3935302191727,49.6042983362689" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8acb12d113913a0895c040e711cfa98b.setContent(html_e35752ec75a3bc29269f223d238077cc);
marker_5c433d6501ef5e2a5eddc39349608c6d.bindPopup(popup_8acb12d113913a0895c040e711cfa98b)
;
marker_5c433d6501ef5e2a5eddc39349608c6d.bindTooltip(
`<div>
شركة مستشفى حسين علي العلي للخدمات الطبية
</div>`,
{
"sticky": true,
}
);
marker_5c433d6501ef5e2a5eddc39349608c6d.setIcon(icon_c4cc70e10b3b4184afc3b871b474e0b2);
var marker_68b0db5b1fa6810efab8ca0221a8a5fe = L.marker(
[25.35117185, 49.60663718],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_bb75e62c9a6212612403373441934d7b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b89c87bd9a3c408e8229525bc2a91562 = L.popup({
"maxWidth": 250,
});
var html_d97e485574b46120b1a82944610a43bc = $(`<div id="html_d97e485574b46120b1a82944610a43bc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة مجمعات التموين شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2252015147<br> المنطقة: الهفوف<br> الحارة: الروضة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.35117185,49.60663718" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b89c87bd9a3c408e8229525bc2a91562.setContent(html_d97e485574b46120b1a82944610a43bc);
marker_68b0db5b1fa6810efab8ca0221a8a5fe.bindPopup(popup_b89c87bd9a3c408e8229525bc2a91562)
;
marker_68b0db5b1fa6810efab8ca0221a8a5fe.bindTooltip(
`<div>
شركة مجمعات التموين شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_68b0db5b1fa6810efab8ca0221a8a5fe.setIcon(icon_bb75e62c9a6212612403373441934d7b);
var marker_052bf68b7a41c35692da565d69fb39bb = L.marker(
[25.358055289582, 49.607165397762],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_bbaf0b93757a50882aa80e08a8c467c6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_95dd79280a925df3165a07223229f3ec = L.popup({
"maxWidth": 250,
});
var html_d64f3e4cb4743b1fdf609b99805e4acb = $(`<div id="html_d64f3e4cb4743b1fdf609b99805e4acb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>نادي لمسات مذهلة الرياضي</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251070040<br> المنطقة: الهفوف<br> الحارة: الروضة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.358055289582,49.607165397762" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_95dd79280a925df3165a07223229f3ec.setContent(html_d64f3e4cb4743b1fdf609b99805e4acb);
marker_052bf68b7a41c35692da565d69fb39bb.bindPopup(popup_95dd79280a925df3165a07223229f3ec)
;
marker_052bf68b7a41c35692da565d69fb39bb.bindTooltip(
`<div>
نادي لمسات مذهلة الرياضي
</div>`,
{
"sticky": true,
}
);
marker_052bf68b7a41c35692da565d69fb39bb.setIcon(icon_bbaf0b93757a50882aa80e08a8c467c6);
var marker_18cb7961c3a2073f7d879262af8c8b57 = L.marker(
[25.3735414379924, 49.6080577682707],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_bd0b4be1d683a4b3e3cad8645d49ba29 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4b7e8e6c370586c9cc554d37b732ca42 = L.popup({
"maxWidth": 250,
});
var html_799c659f74f43f149da943c7ca72f360 = $(`<div id="html_799c659f74f43f149da943c7ca72f360" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة فخر لتجارة الأغذية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251002923<br> المنطقة: الهفوف<br> الحارة: البصيرة<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3735414379924,49.6080577682707" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4b7e8e6c370586c9cc554d37b732ca42.setContent(html_799c659f74f43f149da943c7ca72f360);
marker_18cb7961c3a2073f7d879262af8c8b57.bindPopup(popup_4b7e8e6c370586c9cc554d37b732ca42)
;
marker_18cb7961c3a2073f7d879262af8c8b57.bindTooltip(
`<div>
شركة فخر لتجارة الأغذية
</div>`,
{
"sticky": true,
}
);
marker_18cb7961c3a2073f7d879262af8c8b57.setIcon(icon_bd0b4be1d683a4b3e3cad8645d49ba29);
var marker_acb8175fe8f167de96aeb94d7d68b13a = L.marker(
[25.37310674, 49.60334811],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_804266b07b7a8bd8068a93940eebed99 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1f61a307d7acb7aa63254910fafc8a9b = L.popup({
"maxWidth": 250,
});
var html_a1757053a33e2ec4de8763364cc76a1f = $(`<div id="html_a1757053a33e2ec4de8763364cc76a1f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة قلائد الدر للخدمات الطبية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251028351<br> المنطقة: الهفوف<br> الحارة: البصيرة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.37310674,49.60334811" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1f61a307d7acb7aa63254910fafc8a9b.setContent(html_a1757053a33e2ec4de8763364cc76a1f);
marker_acb8175fe8f167de96aeb94d7d68b13a.bindPopup(popup_1f61a307d7acb7aa63254910fafc8a9b)
;
marker_acb8175fe8f167de96aeb94d7d68b13a.bindTooltip(
`<div>
شركة قلائد الدر للخدمات الطبية
</div>`,
{
"sticky": true,
}
);
marker_acb8175fe8f167de96aeb94d7d68b13a.setIcon(icon_804266b07b7a8bd8068a93940eebed99);
var marker_657fcb45a253f83be0961464a79fd19c = L.marker(
[25.37319186, 49.6033067],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_7de1342a30435cc1c2a7587b85e623cc = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f962291c72b3ca80072a94a59462e3eb = L.popup({
"maxWidth": 250,
});
var html_27bb263951f36d1eae8caf277cc5aed4 = $(`<div id="html_27bb263951f36d1eae8caf277cc5aed4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة الافق المرئي لتقنية المعلومات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251058554<br> المنطقة: الهفوف<br> الحارة: البصيرة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.37319186,49.6033067" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f962291c72b3ca80072a94a59462e3eb.setContent(html_27bb263951f36d1eae8caf277cc5aed4);
marker_657fcb45a253f83be0961464a79fd19c.bindPopup(popup_f962291c72b3ca80072a94a59462e3eb)
;
marker_657fcb45a253f83be0961464a79fd19c.bindTooltip(
`<div>
مؤسسة الافق المرئي لتقنية المعلومات
</div>`,
{
"sticky": true,
}
);
marker_657fcb45a253f83be0961464a79fd19c.setIcon(icon_7de1342a30435cc1c2a7587b85e623cc);
var marker_7969907a166edb76608b097324e4d88d = L.marker(
[25.3399939985932, 49.61379324019324],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_f0bbb389c82cf4c146378dd63e4b784d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4b11719eba5747d99996d38a2a1b7ed9 = L.popup({
"maxWidth": 250,
});
var html_d8bd4d1f7c8a12d85f94c56b9fd818f2 = $(`<div id="html_d8bd4d1f7c8a12d85f94c56b9fd818f2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة حلول الواقع الإفتراضي لتقنية المعلومات شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251101614<br> المنطقة: الهفوف<br> الحارة: المزروع الاول<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3399939985932,49.61379324019324" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4b11719eba5747d99996d38a2a1b7ed9.setContent(html_d8bd4d1f7c8a12d85f94c56b9fd818f2);
marker_7969907a166edb76608b097324e4d88d.bindPopup(popup_4b11719eba5747d99996d38a2a1b7ed9)
;
marker_7969907a166edb76608b097324e4d88d.bindTooltip(
`<div>
شركة حلول الواقع الإفتراضي لتقنية المعلومات شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_7969907a166edb76608b097324e4d88d.setIcon(icon_f0bbb389c82cf4c146378dd63e4b784d);
var marker_21c3d77ca861399b9fb9a79f1230e0bd = L.marker(
[25.3388059947492, 49.6136443871179],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_f7c4f23c31e466bfda82fecdedec2a52 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_23dd4efed4b974568424d9a9ce30c612 = L.popup({
"maxWidth": 250,
});
var html_85f0dd5b726888666271031b11e8d85c = $(`<div id="html_85f0dd5b726888666271031b11e8d85c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شقق سمايا الزهور للشقق المخدومة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251062059<br> المنطقة: الهفوف<br> الحارة: المزروع الاول<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3388059947492,49.6136443871179" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_23dd4efed4b974568424d9a9ce30c612.setContent(html_85f0dd5b726888666271031b11e8d85c);
marker_21c3d77ca861399b9fb9a79f1230e0bd.bindPopup(popup_23dd4efed4b974568424d9a9ce30c612)
;
marker_21c3d77ca861399b9fb9a79f1230e0bd.bindTooltip(
`<div>
شقق سمايا الزهور للشقق المخدومة
</div>`,
{
"sticky": true,
}
);
marker_21c3d77ca861399b9fb9a79f1230e0bd.setIcon(icon_f7c4f23c31e466bfda82fecdedec2a52);
var marker_5da8cd1cfbbed45a4b91b1d39e4c9f6f = L.marker(
[25.3317734172095, 49.6141239203839],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_d17806385f5807e09b032f682c48cf56 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f293895f9427c96a5c7d04c1adeaad2f = L.popup({
"maxWidth": 250,
});
var html_8bf5ab36845ba59b5ba93366ea8e62a2 = $(`<div id="html_8bf5ab36845ba59b5ba93366ea8e62a2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة هجر المحدودة شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251040254<br> المنطقة: الهفوف<br> الحارة: النسيم<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3317734172095,49.6141239203839" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f293895f9427c96a5c7d04c1adeaad2f.setContent(html_8bf5ab36845ba59b5ba93366ea8e62a2);
marker_5da8cd1cfbbed45a4b91b1d39e4c9f6f.bindPopup(popup_f293895f9427c96a5c7d04c1adeaad2f)
;
marker_5da8cd1cfbbed45a4b91b1d39e4c9f6f.bindTooltip(
`<div>
شركة هجر المحدودة شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_5da8cd1cfbbed45a4b91b1d39e4c9f6f.setIcon(icon_d17806385f5807e09b032f682c48cf56);
var marker_89fd2c30177b49abfc94f9c6536cd0a0 = L.marker(
[25.3317734172095, 49.6141239203839],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_2d3d426af13b45a420676bc91690c07b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_33a7c47f95c793f8111396ef3ab2d680 = L.popup({
"maxWidth": 250,
});
var html_f61de0d497f5aa199c85e1927e8eee1d = $(`<div id="html_f61de0d497f5aa199c85e1927e8eee1d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مطعم عبدالله موسى بن حسين عطيف لتقديم الوجبات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251492333<br> المنطقة: الهفوف<br> الحارة: النسيم<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3317734172095,49.6141239203839" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_33a7c47f95c793f8111396ef3ab2d680.setContent(html_f61de0d497f5aa199c85e1927e8eee1d);
marker_89fd2c30177b49abfc94f9c6536cd0a0.bindPopup(popup_33a7c47f95c793f8111396ef3ab2d680)
;
marker_89fd2c30177b49abfc94f9c6536cd0a0.bindTooltip(
`<div>
مطعم عبدالله موسى بن حسين عطيف لتقديم الوجبات
</div>`,
{
"sticky": true,
}
);
marker_89fd2c30177b49abfc94f9c6536cd0a0.setIcon(icon_2d3d426af13b45a420676bc91690c07b);
var marker_8bd51d7aa26db323a5da64532717669b = L.marker(
[25.32484961, 49.61427693],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_bf8962ebcd7c97e2daa4fe170027a3cb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_32e371d27f51a3fdeb7c245e3304934b = L.popup({
"maxWidth": 250,
});
var html_c1892dac0a8430a0242ffe739e8eb339 = $(`<div id="html_c1892dac0a8430a0242ffe739e8eb339" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مطعم نوفي سبعه لتقديم الوجبات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251495890<br> المنطقة: الهفوف<br> الحارة: النسيم<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.32484961,49.61427693" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_32e371d27f51a3fdeb7c245e3304934b.setContent(html_c1892dac0a8430a0242ffe739e8eb339);
marker_8bd51d7aa26db323a5da64532717669b.bindPopup(popup_32e371d27f51a3fdeb7c245e3304934b)
;
marker_8bd51d7aa26db323a5da64532717669b.bindTooltip(
`<div>
مطعم نوفي سبعه لتقديم الوجبات
</div>`,
{
"sticky": true,
}
);
marker_8bd51d7aa26db323a5da64532717669b.setIcon(icon_bf8962ebcd7c97e2daa4fe170027a3cb);
var marker_97097ff19da5ee61e73ca2f029b0cc33 = L.marker(
[25.32914423, 49.61347064],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_bd2ded02924c21655746d2d3cfa1e08d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_347dec06e6f7658a8a634b0ca441e5df = L.popup({
"maxWidth": 250,
});
var html_fe50f1733c722c9eb732ff5104a94658 = $(`<div id="html_fe50f1733c722c9eb732ff5104a94658" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مركز ألطف الكون للترفية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251503407<br> المنطقة: الهفوف<br> الحارة: النسيم<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.32914423,49.61347064" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_347dec06e6f7658a8a634b0ca441e5df.setContent(html_fe50f1733c722c9eb732ff5104a94658);
marker_97097ff19da5ee61e73ca2f029b0cc33.bindPopup(popup_347dec06e6f7658a8a634b0ca441e5df)
;
marker_97097ff19da5ee61e73ca2f029b0cc33.bindTooltip(
`<div>
مركز ألطف الكون للترفية
</div>`,
{
"sticky": true,
}
);
marker_97097ff19da5ee61e73ca2f029b0cc33.setIcon(icon_bd2ded02924c21655746d2d3cfa1e08d);
var marker_6c92dd307f19dec1a3d5a2e15ee5d3f3 = L.marker(
[25.37441014, 49.61034664],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_1bb6a3c049fbdb42ed08ab13f5cc297b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3c487e85dd2d841facdca04ccae6198b = L.popup({
"maxWidth": 250,
});
var html_6067d78bebb0a88cc4313600cf811e9b = $(`<div id="html_6067d78bebb0a88cc4313600cf811e9b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة بيت الاحساء لمواد البناء</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251039483<br> المنطقة: الهفوف<br> الحارة: الخدود<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.37441014,49.61034664" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3c487e85dd2d841facdca04ccae6198b.setContent(html_6067d78bebb0a88cc4313600cf811e9b);
marker_6c92dd307f19dec1a3d5a2e15ee5d3f3.bindPopup(popup_3c487e85dd2d841facdca04ccae6198b)
;
marker_6c92dd307f19dec1a3d5a2e15ee5d3f3.bindTooltip(
`<div>
مؤسسة بيت الاحساء لمواد البناء
</div>`,
{
"sticky": true,
}
);
marker_6c92dd307f19dec1a3d5a2e15ee5d3f3.setIcon(icon_1bb6a3c049fbdb42ed08ab13f5cc297b);
var marker_ca4dd04956d9d274c62c9151df61a1d9 = L.marker(
[25.38604335, 49.60931352],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_8b1a2d522f8a73fbaca2f85bd3e861f5 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7ae4e3a14278c883f1dfa4e48056b3b5 = L.popup({
"maxWidth": 250,
});
var html_b8e41079410f29e40e7ef1d995939d17 = $(`<div id="html_b8e41079410f29e40e7ef1d995939d17" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مطعم ومطبخ قرية الاحساء التراثية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251039768<br> المنطقة: الهفوف<br> الحارة: الخدود<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.38604335,49.60931352" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7ae4e3a14278c883f1dfa4e48056b3b5.setContent(html_b8e41079410f29e40e7ef1d995939d17);
marker_ca4dd04956d9d274c62c9151df61a1d9.bindPopup(popup_7ae4e3a14278c883f1dfa4e48056b3b5)
;
marker_ca4dd04956d9d274c62c9151df61a1d9.bindTooltip(
`<div>
مطعم ومطبخ قرية الاحساء التراثية
</div>`,
{
"sticky": true,
}
);
marker_ca4dd04956d9d274c62c9151df61a1d9.setIcon(icon_8b1a2d522f8a73fbaca2f85bd3e861f5);
var marker_6368059f2379685a5b792276f6e678c0 = L.marker(
[25.36585935, 49.60439885],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_24d24814bfbec2de643ce86a2cf8a975 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0621acaa154b2b0832e090ac8015e9f4 = L.popup({
"maxWidth": 250,
});
var html_5fc142e8d5490f2d4d0f2494b73a5c58 = $(`<div id="html_5fc142e8d5490f2d4d0f2494b73a5c58" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة سعد بن ابراهيم بن سعيد الخميس للمقاولات العامة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251015403<br> المنطقة: الهفوف<br> الحارة: المباركية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.36585935,49.60439885" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0621acaa154b2b0832e090ac8015e9f4.setContent(html_5fc142e8d5490f2d4d0f2494b73a5c58);
marker_6368059f2379685a5b792276f6e678c0.bindPopup(popup_0621acaa154b2b0832e090ac8015e9f4)
;
marker_6368059f2379685a5b792276f6e678c0.bindTooltip(
`<div>
مؤسسة سعد بن ابراهيم بن سعيد الخميس للمقاولات العامة
</div>`,
{
"sticky": true,
}
);
marker_6368059f2379685a5b792276f6e678c0.setIcon(icon_24d24814bfbec2de643ce86a2cf8a975);
var marker_01d638f359f02c9724291aad8875c169 = L.marker(
[25.36430177, 49.61442156],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_4027d68d4d8eb331b596632331e6d5d7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6cdea8eb2cea4e6dc76bf02e62c67957 = L.popup({
"maxWidth": 250,
});
var html_9fac9c92ffef0bc7e3ae6f791f4616ae = $(`<div id="html_9fac9c92ffef0bc7e3ae6f791f4616ae" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة نايف بن عبدالله بن محمد الغانم التجارية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2252024924<br> المنطقة: الهفوف<br> الحارة: المباركية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.36430177,49.61442156" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6cdea8eb2cea4e6dc76bf02e62c67957.setContent(html_9fac9c92ffef0bc7e3ae6f791f4616ae);
marker_01d638f359f02c9724291aad8875c169.bindPopup(popup_6cdea8eb2cea4e6dc76bf02e62c67957)
;
marker_01d638f359f02c9724291aad8875c169.bindTooltip(
`<div>
مؤسسة نايف بن عبدالله بن محمد الغانم التجارية
</div>`,
{
"sticky": true,
}
);
marker_01d638f359f02c9724291aad8875c169.setIcon(icon_4027d68d4d8eb331b596632331e6d5d7);
var marker_18eac8b0629edf619eff0cd652c98d09 = L.marker(
[25.36757614, 49.60407121],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_f5f9312b7991ee910a4f390998474c14 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6396a80e4d5bb070c9d6d860935b2100 = L.popup({
"maxWidth": 250,
});
var html_b7367a768311ee91a10f4e143d2d7ac8 = $(`<div id="html_b7367a768311ee91a10f4e143d2d7ac8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة فخر الاستثمار القابضة مساهمه مقفله</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250067766<br> المنطقة: الهفوف<br> الحارة: المباركية<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.36757614,49.60407121" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6396a80e4d5bb070c9d6d860935b2100.setContent(html_b7367a768311ee91a10f4e143d2d7ac8);
marker_18eac8b0629edf619eff0cd652c98d09.bindPopup(popup_6396a80e4d5bb070c9d6d860935b2100)
;
marker_18eac8b0629edf619eff0cd652c98d09.bindTooltip(
`<div>
شركة فخر الاستثمار القابضة مساهمه مقفله
</div>`,
{
"sticky": true,
}
);
marker_18eac8b0629edf619eff0cd652c98d09.setIcon(icon_f5f9312b7991ee910a4f390998474c14);
var marker_a1772012dc0c1acbc69e11e009db71a7 = L.marker(
[25.36569423, 49.61065989],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_b59aac7a1622e409c8293506b4be0cd4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5a1efd06870cf483187f42658218b3fe = L.popup({
"maxWidth": 250,
});
var html_4b35c05d9f5fc62dee83eb5a2f966b21 = $(`<div id="html_4b35c05d9f5fc62dee83eb5a2f966b21" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة مغاسل الجبر المحدودة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2252057461<br> المنطقة: الهفوف<br> الحارة: المباركية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.36569423,49.61065989" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5a1efd06870cf483187f42658218b3fe.setContent(html_4b35c05d9f5fc62dee83eb5a2f966b21);
marker_a1772012dc0c1acbc69e11e009db71a7.bindPopup(popup_5a1efd06870cf483187f42658218b3fe)
;
marker_a1772012dc0c1acbc69e11e009db71a7.bindTooltip(
`<div>
شركة مغاسل الجبر المحدودة
</div>`,
{
"sticky": true,
}
);
marker_a1772012dc0c1acbc69e11e009db71a7.setIcon(icon_b59aac7a1622e409c8293506b4be0cd4);
var marker_429e8f5bc5c4159a6d980d32a947c7f9 = L.marker(
[25.3625472, 49.60758547],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_ebd1327939e22df9ae2402eb914a09db = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_53c4ea3a1b340c7f61c51f1434a98f23 = L.popup({
"maxWidth": 250,
});
var html_131f4a42fb3596da444eef4157f25203 = $(`<div id="html_131f4a42fb3596da444eef4157f25203" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مركز فطين للرعاية النهارية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251500466<br> المنطقة: الهفوف<br> الحارة: الشهابية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3625472,49.60758547" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_53c4ea3a1b340c7f61c51f1434a98f23.setContent(html_131f4a42fb3596da444eef4157f25203);
marker_429e8f5bc5c4159a6d980d32a947c7f9.bindPopup(popup_53c4ea3a1b340c7f61c51f1434a98f23)
;
marker_429e8f5bc5c4159a6d980d32a947c7f9.bindTooltip(
`<div>
مركز فطين للرعاية النهارية
</div>`,
{
"sticky": true,
}
);
marker_429e8f5bc5c4159a6d980d32a947c7f9.setIcon(icon_ebd1327939e22df9ae2402eb914a09db);
var marker_f15e895db4ec64628bfa761629905025 = L.marker(
[25.337045388112, 49.6144096501237],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_c467e18c8ed34008c589e1b443a90d0e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f7f92c8eaa68fa430524be74225a6848 = L.popup({
"maxWidth": 250,
});
var html_231ac2b4e3df1b35e61d038b1f37fd13 = $(`<div id="html_231ac2b4e3df1b35e61d038b1f37fd13" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة بوابة الأحساء للتكييف والتبريد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251024937<br> المنطقة: الهفوف<br> الحارة: المزروع الثاني<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.337045388112,49.6144096501237" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f7f92c8eaa68fa430524be74225a6848.setContent(html_231ac2b4e3df1b35e61d038b1f37fd13);
marker_f15e895db4ec64628bfa761629905025.bindPopup(popup_f7f92c8eaa68fa430524be74225a6848)
;
marker_f15e895db4ec64628bfa761629905025.bindTooltip(
`<div>
مؤسسة بوابة الأحساء للتكييف والتبريد
</div>`,
{
"sticky": true,
}
);
marker_f15e895db4ec64628bfa761629905025.setIcon(icon_c467e18c8ed34008c589e1b443a90d0e);
var marker_324aee488348069a1d457b50780faa5d = L.marker(
[25.35996703, 49.6219131],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_db447823088a44c9253d0e2c00fae14e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_781a782969ab01e04d4246d092e2b7da = L.popup({
"maxWidth": 250,
});
var html_ecfa7eed83e01f7d8b03f53c1c7f5d30 = $(`<div id="html_ecfa7eed83e01f7d8b03f53c1c7f5d30" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة عبدالرزاق بن احمد بن عايش الخليفه للمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2031106854<br> المنطقة: الهفوف<br> الحارة: الرويضة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.35996703,49.6219131" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_781a782969ab01e04d4246d092e2b7da.setContent(html_ecfa7eed83e01f7d8b03f53c1c7f5d30);
marker_324aee488348069a1d457b50780faa5d.bindPopup(popup_781a782969ab01e04d4246d092e2b7da)
;
marker_324aee488348069a1d457b50780faa5d.bindTooltip(
`<div>
مؤسسة عبدالرزاق بن احمد بن عايش الخليفه للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_324aee488348069a1d457b50780faa5d.setIcon(icon_db447823088a44c9253d0e2c00fae14e);
var marker_5e32eafc603ecbe8e12a9fdeb66367e2 = L.marker(
[25.3525060678257, 49.6113700670236],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_8631eedfec9c9cde040d016d47128f34 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a1bcb31e23c52a4578a30dcccb24be22 = L.popup({
"maxWidth": 250,
});
var html_99c78fcad692cf311464ec437b6cebbc = $(`<div id="html_99c78fcad692cf311464ec437b6cebbc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة سامي احمد الجبر للمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251008080<br> المنطقة: الهفوف<br> الحارة: الرويضة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3525060678257,49.6113700670236" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a1bcb31e23c52a4578a30dcccb24be22.setContent(html_99c78fcad692cf311464ec437b6cebbc);
marker_5e32eafc603ecbe8e12a9fdeb66367e2.bindPopup(popup_a1bcb31e23c52a4578a30dcccb24be22)
;
marker_5e32eafc603ecbe8e12a9fdeb66367e2.bindTooltip(
`<div>
مؤسسة سامي احمد الجبر للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_5e32eafc603ecbe8e12a9fdeb66367e2.setIcon(icon_8631eedfec9c9cde040d016d47128f34);
var marker_8b98dd59efe446ead5aa0a958403d1e8 = L.marker(
[25.35135105, 49.61205896],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_e0907e2c71be5124dc337d9dfdc0fcfe = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d221e365aa77278bca1756c9759df123 = L.popup({
"maxWidth": 250,
});
var html_6308914b2452bdf55d62f6753a29beb1 = $(`<div id="html_6308914b2452bdf55d62f6753a29beb1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة فاضل علي ابن حسن الياسين للمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251492748<br> المنطقة: الهفوف<br> الحارة: الرويضة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.35135105,49.61205896" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d221e365aa77278bca1756c9759df123.setContent(html_6308914b2452bdf55d62f6753a29beb1);
marker_8b98dd59efe446ead5aa0a958403d1e8.bindPopup(popup_d221e365aa77278bca1756c9759df123)
;
marker_8b98dd59efe446ead5aa0a958403d1e8.bindTooltip(
`<div>
مؤسسة فاضل علي ابن حسن الياسين للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_8b98dd59efe446ead5aa0a958403d1e8.setIcon(icon_e0907e2c71be5124dc337d9dfdc0fcfe);
var marker_c5d0b6261e73ed9a605dc7ec67e2643d = L.marker(
[25.3584793, 49.62340439],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_2e81adf1109a8060e5e9293682c729e9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1fc60843ff2a5a5d9a21ea2ec9fa43d7 = L.popup({
"maxWidth": 250,
});
var html_12e6080cecf33ff51219ec8173299312 = $(`<div id="html_12e6080cecf33ff51219ec8173299312" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة كود لتقديم الوجبات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251101650<br> المنطقة: الهفوف<br> الحارة: الرويضة<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3584793,49.62340439" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1fc60843ff2a5a5d9a21ea2ec9fa43d7.setContent(html_12e6080cecf33ff51219ec8173299312);
marker_c5d0b6261e73ed9a605dc7ec67e2643d.bindPopup(popup_1fc60843ff2a5a5d9a21ea2ec9fa43d7)
;
marker_c5d0b6261e73ed9a605dc7ec67e2643d.bindTooltip(
`<div>
شركة كود لتقديم الوجبات
</div>`,
{
"sticky": true,
}
);
marker_c5d0b6261e73ed9a605dc7ec67e2643d.setIcon(icon_2e81adf1109a8060e5e9293682c729e9);
var marker_bf3eccc0bb52005a7f38d8f5c912f4d3 = L.marker(
[25.35424307, 49.61021982],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_8192fd51627e096993b866df36db2017 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_82b587d0acc9be45a46f68ca1b149c30 = L.popup({
"maxWidth": 250,
});
var html_efd7f550a26b9f74e89e0aaf9790611b = $(`<div id="html_efd7f550a26b9f74e89e0aaf9790611b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة عبدالرحمن سعد العياف وشركاه</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251063285<br> المنطقة: الهفوف<br> الحارة: الرويضة<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.35424307,49.61021982" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_82b587d0acc9be45a46f68ca1b149c30.setContent(html_efd7f550a26b9f74e89e0aaf9790611b);
marker_bf3eccc0bb52005a7f38d8f5c912f4d3.bindPopup(popup_82b587d0acc9be45a46f68ca1b149c30)
;
marker_bf3eccc0bb52005a7f38d8f5c912f4d3.bindTooltip(
`<div>
شركة عبدالرحمن سعد العياف وشركاه
</div>`,
{
"sticky": true,
}
);
marker_bf3eccc0bb52005a7f38d8f5c912f4d3.setIcon(icon_8192fd51627e096993b866df36db2017);
var marker_9147a439b17c2fddc50b052bd37e87ad = L.marker(
[25.3756078839355, 49.6324413777989],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_877a0b8d65f205c3df18dfc13aaa3e5f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cbb47c1ed9b6f11760ce972e65775603 = L.popup({
"maxWidth": 250,
});
var html_c7f3606c339a504472a5cf218d3df77e = $(`<div id="html_c7f3606c339a504472a5cf218d3df77e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>الشركة الآسيوية للتجارة شركة لشخص واحد شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251000791<br> المنطقة: الهفوف<br> الحارة: صويدرة<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3756078839355,49.6324413777989" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cbb47c1ed9b6f11760ce972e65775603.setContent(html_c7f3606c339a504472a5cf218d3df77e);
marker_9147a439b17c2fddc50b052bd37e87ad.bindPopup(popup_cbb47c1ed9b6f11760ce972e65775603)
;
marker_9147a439b17c2fddc50b052bd37e87ad.bindTooltip(
`<div>
الشركة الآسيوية للتجارة شركة لشخص واحد شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_9147a439b17c2fddc50b052bd37e87ad.setIcon(icon_877a0b8d65f205c3df18dfc13aaa3e5f);
var marker_5ce65b8ee28ed23c85611169ea9ba9a7 = L.marker(
[25.35875002, 49.62870845],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_260901fbc0e839f7ae04bef48b3d3924 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c11e37e55ecfc18a32bdb971cf70c8d4 = L.popup({
"maxWidth": 250,
});
var html_b1ef807a8dfa8e6b2773779fa0fcd9cb = $(`<div id="html_b1ef807a8dfa8e6b2773779fa0fcd9cb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مصنع حوراء راضي بن ناصر الهودار للصناعة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2252055778<br> المنطقة: الهفوف<br> الحارة: الملك فهد<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.35875002,49.62870845" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c11e37e55ecfc18a32bdb971cf70c8d4.setContent(html_b1ef807a8dfa8e6b2773779fa0fcd9cb);
marker_5ce65b8ee28ed23c85611169ea9ba9a7.bindPopup(popup_c11e37e55ecfc18a32bdb971cf70c8d4)
;
marker_5ce65b8ee28ed23c85611169ea9ba9a7.bindTooltip(
`<div>
مصنع حوراء راضي بن ناصر الهودار للصناعة
</div>`,
{
"sticky": true,
}
);
marker_5ce65b8ee28ed23c85611169ea9ba9a7.setIcon(icon_260901fbc0e839f7ae04bef48b3d3924);
var marker_ee8f5616a9c165a4fda1e6696d8341ec = L.marker(
[25.31102423, 49.64761481],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_3a22480768ba8a00d1005069ca763341 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6c91b5e0aa16e0e2ac49af2b85460930 = L.popup({
"maxWidth": 250,
});
var html_f5555e2543e2c4dc50100a7ebd4d9b51 = $(`<div id="html_f5555e2543e2c4dc50100a7ebd4d9b51" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة البشير للتجارة والمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251002422<br> المنطقة: الهفوف<br> الحارة: الدوحة<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.31102423,49.64761481" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6c91b5e0aa16e0e2ac49af2b85460930.setContent(html_f5555e2543e2c4dc50100a7ebd4d9b51);
marker_ee8f5616a9c165a4fda1e6696d8341ec.bindPopup(popup_6c91b5e0aa16e0e2ac49af2b85460930)
;
marker_ee8f5616a9c165a4fda1e6696d8341ec.bindTooltip(
`<div>
شركة البشير للتجارة والمقاولات
</div>`,
{
"sticky": true,
}
);
marker_ee8f5616a9c165a4fda1e6696d8341ec.setIcon(icon_3a22480768ba8a00d1005069ca763341);
var marker_4d531888e4ff4b1b6165d9a3ad6e29e7 = L.marker(
[25.3794136932973, 49.6463954164053],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_52bf3baa95d046652ea5dfed06a43a05 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_36931e56896c9939ae5e329d4c408789 = L.popup({
"maxWidth": 250,
});
var html_445aa6227416bf48d2a8a46315b28fd5 = $(`<div id="html_445aa6227416bf48d2a8a46315b28fd5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة الحديد أخوان القابضة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2252028040<br> المنطقة: الهفوف<br> الحارة: الفردوس<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3794136932973,49.6463954164053" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_36931e56896c9939ae5e329d4c408789.setContent(html_445aa6227416bf48d2a8a46315b28fd5);
marker_4d531888e4ff4b1b6165d9a3ad6e29e7.bindPopup(popup_36931e56896c9939ae5e329d4c408789)
;
marker_4d531888e4ff4b1b6165d9a3ad6e29e7.bindTooltip(
`<div>
شركة الحديد أخوان القابضة
</div>`,
{
"sticky": true,
}
);
marker_4d531888e4ff4b1b6165d9a3ad6e29e7.setIcon(icon_52bf3baa95d046652ea5dfed06a43a05);
var marker_508d5f11bee26f713de31c115fd85bb1 = L.marker(
[25.3137394, 49.66032879999999],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_c5f4499259584eafd8475271c3876b55 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b311f86889296184e87c4b9003590127 = L.popup({
"maxWidth": 250,
});
var html_c1dd97590e5b69af39f053b780dd2a1c = $(`<div id="html_c1dd97590e5b69af39f053b780dd2a1c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة ربوع الصمان للمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 1010246217<br> المنطقة: الهفوف<br> الحارة: منطقة الغويبة الزراعية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3137394,49.66032879999999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b311f86889296184e87c4b9003590127.setContent(html_c1dd97590e5b69af39f053b780dd2a1c);
marker_508d5f11bee26f713de31c115fd85bb1.bindPopup(popup_b311f86889296184e87c4b9003590127)
;
marker_508d5f11bee26f713de31c115fd85bb1.bindTooltip(
`<div>
مؤسسة ربوع الصمان للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_508d5f11bee26f713de31c115fd85bb1.setIcon(icon_c5f4499259584eafd8475271c3876b55);
var marker_3f8554281b65b2f7d296bc669e0abcf5 = L.marker(
[25.3247585530974, 49.6412326201658],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_e41a42904c4048afd4de1a8e1b140659 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c732bc30faa9927d91b0892dc13a2165 = L.popup({
"maxWidth": 250,
});
var html_8ceb7f97b93767b1bb1f4911d54b2baf = $(`<div id="html_8ceb7f97b93767b1bb1f4911d54b2baf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مصنع عبدالله محمد الملحم للملابس الجاهزه</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251025958<br> المنطقة: الهفوف<br> الحارة: منطقة الغويبة الزراعية<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3247585530974,49.6412326201658" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c732bc30faa9927d91b0892dc13a2165.setContent(html_8ceb7f97b93767b1bb1f4911d54b2baf);
marker_3f8554281b65b2f7d296bc669e0abcf5.bindPopup(popup_c732bc30faa9927d91b0892dc13a2165)
;
marker_3f8554281b65b2f7d296bc669e0abcf5.bindTooltip(
`<div>
مصنع عبدالله محمد الملحم للملابس الجاهزه
</div>`,
{
"sticky": true,
}
);
marker_3f8554281b65b2f7d296bc669e0abcf5.setIcon(icon_e41a42904c4048afd4de1a8e1b140659);
var marker_4dd736b1e35ac4a3f34d5f45f659700c = L.marker(
[25.3466477439714, 49.6317972027689],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_01089f9b0e5e276fe3dbad2b7f64a7ef = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e0fb60c21d56bfb813cea7c069b1e5ad = L.popup({
"maxWidth": 250,
});
var html_82819f4b414b404a270231c69700758c = $(`<div id="html_82819f4b414b404a270231c69700758c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مصنع البشير للاسفلت شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251493404<br> المنطقة: الهفوف<br> الحارة: منطقة الغويبة الزراعية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3466477439714,49.6317972027689" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e0fb60c21d56bfb813cea7c069b1e5ad.setContent(html_82819f4b414b404a270231c69700758c);
marker_4dd736b1e35ac4a3f34d5f45f659700c.bindPopup(popup_e0fb60c21d56bfb813cea7c069b1e5ad)
;
marker_4dd736b1e35ac4a3f34d5f45f659700c.bindTooltip(
`<div>
مصنع البشير للاسفلت شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_4dd736b1e35ac4a3f34d5f45f659700c.setIcon(icon_01089f9b0e5e276fe3dbad2b7f64a7ef);
var marker_61836bb96e5070c81a8d7608f46db67f = L.marker(
[25.32285928, 49.64261772],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_371b2dacf0ef8ddeca30ce80653fd95c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7538f729e36c626e4881c93b6212ce9b = L.popup({
"maxWidth": 250,
});
var html_2108836ebae1c4433e77949cfd7bcc13 = $(`<div id="html_2108836ebae1c4433e77949cfd7bcc13" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مقهى ليالي فردان لتقديم المشروبات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2031104485<br> المنطقة: الهفوف<br> الحارة: منطقة الغويبة الزراعية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.32285928,49.64261772" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7538f729e36c626e4881c93b6212ce9b.setContent(html_2108836ebae1c4433e77949cfd7bcc13);
marker_61836bb96e5070c81a8d7608f46db67f.bindPopup(popup_7538f729e36c626e4881c93b6212ce9b)
;
marker_61836bb96e5070c81a8d7608f46db67f.bindTooltip(
`<div>
مقهى ليالي فردان لتقديم المشروبات
</div>`,
{
"sticky": true,
}
);
marker_61836bb96e5070c81a8d7608f46db67f.setIcon(icon_371b2dacf0ef8ddeca30ce80653fd95c);
var marker_5a346f232801340341e99377984e5589 = L.marker(
[25.33238019, 49.63175973],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_f851f8f60ef28d01de744700f2de33cb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e68956391591fc4d4f753fd6f1037384 = L.popup({
"maxWidth": 250,
});
var html_e201dfd77e057b180e9948a67381e747 = $(`<div id="html_e201dfd77e057b180e9948a67381e747" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مدارس النخبة النموذجية الأهلية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251031723<br> المنطقة: الهفوف<br> الحارة: منطقة الغويبة الزراعية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.33238019,49.63175973" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e68956391591fc4d4f753fd6f1037384.setContent(html_e201dfd77e057b180e9948a67381e747);
marker_5a346f232801340341e99377984e5589.bindPopup(popup_e68956391591fc4d4f753fd6f1037384)
;
marker_5a346f232801340341e99377984e5589.bindTooltip(
`<div>
مدارس النخبة النموذجية الأهلية
</div>`,
{
"sticky": true,
}
);
marker_5a346f232801340341e99377984e5589.setIcon(icon_f851f8f60ef28d01de744700f2de33cb);
var marker_d49694d472a7fb9f64773287cde8f983 = L.marker(
[25.3645458137859, 49.6687424887102],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_ea903c016457c0cef1686b7354f23502 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e3dfaa5452696995f7d7fde6ebed96a8 = L.popup({
"maxWidth": 250,
});
var html_d223d7b0056aa88c73329d51d7ec3e2f = $(`<div id="html_d223d7b0056aa88c73329d51d7ec3e2f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة علي عبدالله الجطيل التجارية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251047402<br> المنطقة: الهفوف<br> الحارة: مقترح مستقبلي<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3645458137859,49.6687424887102" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e3dfaa5452696995f7d7fde6ebed96a8.setContent(html_d223d7b0056aa88c73329d51d7ec3e2f);
marker_d49694d472a7fb9f64773287cde8f983.bindPopup(popup_e3dfaa5452696995f7d7fde6ebed96a8)
;
marker_d49694d472a7fb9f64773287cde8f983.bindTooltip(
`<div>
مؤسسة علي عبدالله الجطيل التجارية
</div>`,
{
"sticky": true,
}
);
marker_d49694d472a7fb9f64773287cde8f983.setIcon(icon_ea903c016457c0cef1686b7354f23502);
var marker_1ebd9ec105689d7de0d092257ab681ce = L.marker(
[25.36411686, 49.69736527],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_b6b4cb4f959a21fcd36c40ade50cf280 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_53751140a0c548476613a1ecae61084a = L.popup({
"maxWidth": 250,
});
var html_19862944f310f592580a6c73c1c514b7 = $(`<div id="html_19862944f310f592580a6c73c1c514b7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة يوسف دعيج بن يوسف الثويني للمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250027369<br> المنطقة: الهفوف<br> الحارة: مقترح مستقبلي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.36411686,49.69736527" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_53751140a0c548476613a1ecae61084a.setContent(html_19862944f310f592580a6c73c1c514b7);
marker_1ebd9ec105689d7de0d092257ab681ce.bindPopup(popup_53751140a0c548476613a1ecae61084a)
;
marker_1ebd9ec105689d7de0d092257ab681ce.bindTooltip(
`<div>
مؤسسة يوسف دعيج بن يوسف الثويني للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_1ebd9ec105689d7de0d092257ab681ce.setIcon(icon_b6b4cb4f959a21fcd36c40ade50cf280);
var marker_69b96ec2de49d8f7e186b1bbc1fa5132 = L.marker(
[25.2741539554257, 49.7272971843452],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_bde5ef48f06a0adf9f88d41bc53d29c2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5d2a519b548d25a69c171497a4369afa = L.popup({
"maxWidth": 250,
});
var html_2394c4de6bf342c1c882d2e3b7946f37 = $(`<div id="html_2394c4de6bf342c1c882d2e3b7946f37" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة الألبان الوطنية المتحدة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251031952<br> المنطقة: سوده<br> الحارة: سوده<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.2741539554257,49.7272971843452" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5d2a519b548d25a69c171497a4369afa.setContent(html_2394c4de6bf342c1c882d2e3b7946f37);
marker_69b96ec2de49d8f7e186b1bbc1fa5132.bindPopup(popup_5d2a519b548d25a69c171497a4369afa)
;
marker_69b96ec2de49d8f7e186b1bbc1fa5132.bindTooltip(
`<div>
شركة الألبان الوطنية المتحدة
</div>`,
{
"sticky": true,
}
);
marker_69b96ec2de49d8f7e186b1bbc1fa5132.setIcon(icon_bde5ef48f06a0adf9f88d41bc53d29c2);
var marker_a24254764e1fa0a9f52b120d51b7ae29 = L.marker(
[25.38465629, 49.64261209],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_0e4267bb6684365d7606de7b0d140b63 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_482dc3e68364456a968f20e381bf6a19 = L.popup({
"maxWidth": 250,
});
var html_a6cfdbe54efe347a1ab5a770f382e5b3 = $(`<div id="html_a6cfdbe54efe347a1ab5a770f382e5b3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة منى عبدالعزيز العيد للمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251059391<br> المنطقة: مزارع بني معن<br> الحارة: مزارع بني معن<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.38465629,49.64261209" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_482dc3e68364456a968f20e381bf6a19.setContent(html_a6cfdbe54efe347a1ab5a770f382e5b3);
marker_a24254764e1fa0a9f52b120d51b7ae29.bindPopup(popup_482dc3e68364456a968f20e381bf6a19)
;
marker_a24254764e1fa0a9f52b120d51b7ae29.bindTooltip(
`<div>
مؤسسة منى عبدالعزيز العيد للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_a24254764e1fa0a9f52b120d51b7ae29.setIcon(icon_0e4267bb6684365d7606de7b0d140b63);
var marker_f5bb12279763a0b5ff0255016b505694 = L.marker(
[25.275373340767, 49.6588503637881],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_430955608df1455885891a20f70bfabf = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_45b68195eea91e97670a2c51d0532734 = L.popup({
"maxWidth": 250,
});
var html_50f6c1f5de390ac935f97e29fa501038 = $(`<div id="html_50f6c1f5de390ac935f97e29fa501038" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مصنع حمد جمعان العجمي للصناعات المعدنية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2050121766<br> المنطقة: مزارع طريق سلوى<br> الحارة: مزارع طريق سلوى<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.275373340767,49.6588503637881" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_45b68195eea91e97670a2c51d0532734.setContent(html_50f6c1f5de390ac935f97e29fa501038);
marker_f5bb12279763a0b5ff0255016b505694.bindPopup(popup_45b68195eea91e97670a2c51d0532734)
;
marker_f5bb12279763a0b5ff0255016b505694.bindTooltip(
`<div>
مصنع حمد جمعان العجمي للصناعات المعدنية
</div>`,
{
"sticky": true,
}
);
marker_f5bb12279763a0b5ff0255016b505694.setIcon(icon_430955608df1455885891a20f70bfabf);
var marker_a7acfcd48fcf50d9ccf82dce30390005 = L.marker(
[25.26163216, 49.81901063],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_f2170092624120c470185c99ac82ab6a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_875079b45ddeb6534004414b6e56febb = L.popup({
"maxWidth": 250,
});
var html_fb589b0123087af43d581210ce3f657b = $(`<div id="html_fb589b0123087af43d581210ce3f657b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة رمال سودة للصناعة شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251115307<br> المنطقة: الباهيه<br> الحارة: الباهيه<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.26163216,49.81901063" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_875079b45ddeb6534004414b6e56febb.setContent(html_fb589b0123087af43d581210ce3f657b);
marker_a7acfcd48fcf50d9ccf82dce30390005.bindPopup(popup_875079b45ddeb6534004414b6e56febb)
;
marker_a7acfcd48fcf50d9ccf82dce30390005.bindTooltip(
`<div>
شركة رمال سودة للصناعة شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_a7acfcd48fcf50d9ccf82dce30390005.setIcon(icon_f2170092624120c470185c99ac82ab6a);
var marker_af0c05289cfcebb6abd8b89974cb183e = L.marker(
[25.257108981344, 49.83051439066],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_a0951c03e144b919d5560d4236afcd88 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6db4b976def4c926b0aa9f95a11c597c = L.popup({
"maxWidth": 250,
});
var html_97a496f7d50ae46f7a0cf5cb91904c07 = $(`<div id="html_97a496f7d50ae46f7a0cf5cb91904c07" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة جودة الشرقية للخرسانة والطابوق شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2051050483<br> المنطقة: الباهيه<br> الحارة: الباهيه<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.257108981344,49.83051439066" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6db4b976def4c926b0aa9f95a11c597c.setContent(html_97a496f7d50ae46f7a0cf5cb91904c07);
marker_af0c05289cfcebb6abd8b89974cb183e.bindPopup(popup_6db4b976def4c926b0aa9f95a11c597c)
;
marker_af0c05289cfcebb6abd8b89974cb183e.bindTooltip(
`<div>
شركة جودة الشرقية للخرسانة والطابوق شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_af0c05289cfcebb6abd8b89974cb183e.setIcon(icon_a0951c03e144b919d5560d4236afcd88);
var marker_0348c3ad66d813a447036af38e1a4b8b = L.marker(
[25.26170338, 49.82817413],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_f99fcb917f1d2de649ebd082b7cae84a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_841b755654fd529755dce8a68e1a71a4 = L.popup({
"maxWidth": 250,
});
var html_27a8ff0f769a4762a8906ad0aac3fba0 = $(`<div id="html_27a8ff0f769a4762a8906ad0aac3fba0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة الماسة الصناعية شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2252065984<br> المنطقة: الباهيه<br> الحارة: الباهيه<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.26170338,49.82817413" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_841b755654fd529755dce8a68e1a71a4.setContent(html_27a8ff0f769a4762a8906ad0aac3fba0);
marker_0348c3ad66d813a447036af38e1a4b8b.bindPopup(popup_841b755654fd529755dce8a68e1a71a4)
;
marker_0348c3ad66d813a447036af38e1a4b8b.bindTooltip(
`<div>
شركة الماسة الصناعية شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_0348c3ad66d813a447036af38e1a4b8b.setIcon(icon_f99fcb917f1d2de649ebd082b7cae84a);
var marker_f9780e7dd861b9797eed6aea6495be4b = L.marker(
[25.2603461785152, 49.8162738894196],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_b7690181dc672e1a5b89e8ae6e7624a6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_129e5765fa29e468cace30f27c2f049f = L.popup({
"maxWidth": 250,
});
var html_f5e677d1f2c20f42e57eb72c78e5a6d2 = $(`<div id="html_f5e677d1f2c20f42e57eb72c78e5a6d2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة سعد علي العيسى للخرسانة والبلوك شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251052539<br> المنطقة: الباهيه<br> الحارة: الباهيه<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.2603461785152,49.8162738894196" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_129e5765fa29e468cace30f27c2f049f.setContent(html_f5e677d1f2c20f42e57eb72c78e5a6d2);
marker_f9780e7dd861b9797eed6aea6495be4b.bindPopup(popup_129e5765fa29e468cace30f27c2f049f)
;
marker_f9780e7dd861b9797eed6aea6495be4b.bindTooltip(
`<div>
شركة سعد علي العيسى للخرسانة والبلوك شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_f9780e7dd861b9797eed6aea6495be4b.setIcon(icon_b7690181dc672e1a5b89e8ae6e7624a6);
var marker_e3ed8cc987c252682fb60408bda94dbc = L.marker(
[25.42010498, 49.68988037],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_aa049a83c5b60a9ee5e8beb561fedd2d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f23dc737666cfee799cae649be4efdf5 = L.popup({
"maxWidth": 250,
});
var html_70fe9d537c04c7d5868b1727c240952e = $(`<div id="html_70fe9d537c04c7d5868b1727c240952e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مصنع نبع الرضا للصناعة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250374223<br> المنطقة: التويثير<br> الحارة: القارة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.42010498,49.68988037" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f23dc737666cfee799cae649be4efdf5.setContent(html_70fe9d537c04c7d5868b1727c240952e);
marker_e3ed8cc987c252682fb60408bda94dbc.bindPopup(popup_f23dc737666cfee799cae649be4efdf5)
;
marker_e3ed8cc987c252682fb60408bda94dbc.bindTooltip(
`<div>
مصنع نبع الرضا للصناعة
</div>`,
{
"sticky": true,
}
);
marker_e3ed8cc987c252682fb60408bda94dbc.setIcon(icon_aa049a83c5b60a9ee5e8beb561fedd2d);
var marker_4593e0fcaf0e200bf236a059d47594de = L.marker(
[25.41730071012173, 49.70490011514157],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_8de1e6b24ed16c279dff3c63754780c4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7a8f2ef3c93d4613fe600891ad41003c = L.popup({
"maxWidth": 250,
});
var html_0d744197ccf5b45822dcaacb0f210cbb = $(`<div id="html_0d744197ccf5b45822dcaacb0f210cbb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة الاصول الطبيعية للمقاولات العامة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250026524<br> المنطقة: التويثير<br> الحارة: القارة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.41730071012173,49.70490011514157" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7a8f2ef3c93d4613fe600891ad41003c.setContent(html_0d744197ccf5b45822dcaacb0f210cbb);
marker_4593e0fcaf0e200bf236a059d47594de.bindPopup(popup_7a8f2ef3c93d4613fe600891ad41003c)
;
marker_4593e0fcaf0e200bf236a059d47594de.bindTooltip(
`<div>
مؤسسة الاصول الطبيعية للمقاولات العامة
</div>`,
{
"sticky": true,
}
);
marker_4593e0fcaf0e200bf236a059d47594de.setIcon(icon_8de1e6b24ed16c279dff3c63754780c4);
var marker_cd043ee4999b6b1a18ce60998e5a7c88 = L.marker(
[25.4199419, 49.68268119],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_5e9a1d0949fa591c546c3b7f81889b91 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_79c102a6da4faa872c0f7316f2b35d6b = L.popup({
"maxWidth": 250,
});
var html_532c00d2471ba802277e71a5d1a18e5f = $(`<div id="html_532c00d2471ba802277e71a5d1a18e5f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مطابخ نجمة الهرمين لتقديم الوجبات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251498181<br> المنطقة: التويثير<br> الحارة: القارة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.4199419,49.68268119" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_79c102a6da4faa872c0f7316f2b35d6b.setContent(html_532c00d2471ba802277e71a5d1a18e5f);
marker_cd043ee4999b6b1a18ce60998e5a7c88.bindPopup(popup_79c102a6da4faa872c0f7316f2b35d6b)
;
marker_cd043ee4999b6b1a18ce60998e5a7c88.bindTooltip(
`<div>
مطابخ نجمة الهرمين لتقديم الوجبات
</div>`,
{
"sticky": true,
}
);
marker_cd043ee4999b6b1a18ce60998e5a7c88.setIcon(icon_5e9a1d0949fa591c546c3b7f81889b91);
var marker_cf5a0084422e20a65f033aac76b7103d = L.marker(
[25.38851922, 49.74342349],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_f56940d12e771a85c033bfdfd2366c76 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bd1736d34ab8334afb802c453c675f4e = L.popup({
"maxWidth": 250,
});
var html_37fd92cf6dfe7450722de9ba4bebc26c = $(`<div id="html_37fd92cf6dfe7450722de9ba4bebc26c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة العاشور للمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250007754<br> المنطقة: الجشه<br> الحارة: الجشة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.38851922,49.74342349" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bd1736d34ab8334afb802c453c675f4e.setContent(html_37fd92cf6dfe7450722de9ba4bebc26c);
marker_cf5a0084422e20a65f033aac76b7103d.bindPopup(popup_bd1736d34ab8334afb802c453c675f4e)
;
marker_cf5a0084422e20a65f033aac76b7103d.bindTooltip(
`<div>
مؤسسة العاشور للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_cf5a0084422e20a65f033aac76b7103d.setIcon(icon_f56940d12e771a85c033bfdfd2366c76);
var marker_4d1e4b292a7c1ea0325ac1ecf57aef16 = L.marker(
[25.3856231394283, 49.7439017555226],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_a0ea9abf8dee1d97dc967a63058be5fd = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e8a6e5ac1e3a5e2aecb39c18dfb6d31f = L.popup({
"maxWidth": 250,
});
var html_7209bb78a3ad5aabe2986eb450a4ed40 = $(`<div id="html_7209bb78a3ad5aabe2986eb450a4ed40" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة ملاس الحديقة لخدمات الاعاشة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2031108363<br> المنطقة: الجشه<br> الحارة: الجشة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3856231394283,49.7439017555226" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e8a6e5ac1e3a5e2aecb39c18dfb6d31f.setContent(html_7209bb78a3ad5aabe2986eb450a4ed40);
marker_4d1e4b292a7c1ea0325ac1ecf57aef16.bindPopup(popup_e8a6e5ac1e3a5e2aecb39c18dfb6d31f)
;
marker_4d1e4b292a7c1ea0325ac1ecf57aef16.bindTooltip(
`<div>
مؤسسة ملاس الحديقة لخدمات الاعاشة
</div>`,
{
"sticky": true,
}
);
marker_4d1e4b292a7c1ea0325ac1ecf57aef16.setIcon(icon_a0ea9abf8dee1d97dc967a63058be5fd);
var marker_f470adb023d115314cf0da98e1344825 = L.marker(
[25.39391696, 49.76109617],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_54fa2f35a15dd51d8eab35fc685ab9e0 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_13ebd8a6487c2db5836e722ec9c1528c = L.popup({
"maxWidth": 250,
});
var html_d06862c2711c556cac05890b07f54910 = $(`<div id="html_d06862c2711c556cac05890b07f54910" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مركز قيم زون للترفية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250376170<br> المنطقة: الجشه<br> الحارة: الجشة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.39391696,49.76109617" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_13ebd8a6487c2db5836e722ec9c1528c.setContent(html_d06862c2711c556cac05890b07f54910);
marker_f470adb023d115314cf0da98e1344825.bindPopup(popup_13ebd8a6487c2db5836e722ec9c1528c)
;
marker_f470adb023d115314cf0da98e1344825.bindTooltip(
`<div>
مركز قيم زون للترفية
</div>`,
{
"sticky": true,
}
);
marker_f470adb023d115314cf0da98e1344825.setIcon(icon_54fa2f35a15dd51d8eab35fc685ab9e0);
var marker_c2e9e1c0dd7d69f58520009eb3bf18d7 = L.marker(
[25.3771743, 49.71759887],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_e39256a2526e9d320c7bbe7fdf9991e4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_06a57ddf6889af52aa153e64335d3793 = L.popup({
"maxWidth": 250,
});
var html_caf5a4a95786827b810ad98144cfd24a = $(`<div id="html_caf5a4a95786827b810ad98144cfd24a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة سليل المستقبل التجارية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251029543<br> المنطقة: الجفر<br> الحارة: الجفر<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3771743,49.71759887" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_06a57ddf6889af52aa153e64335d3793.setContent(html_caf5a4a95786827b810ad98144cfd24a);
marker_c2e9e1c0dd7d69f58520009eb3bf18d7.bindPopup(popup_06a57ddf6889af52aa153e64335d3793)
;
marker_c2e9e1c0dd7d69f58520009eb3bf18d7.bindTooltip(
`<div>
شركة سليل المستقبل التجارية
</div>`,
{
"sticky": true,
}
);
marker_c2e9e1c0dd7d69f58520009eb3bf18d7.setIcon(icon_e39256a2526e9d320c7bbe7fdf9991e4);
var marker_794cda51874b70d1dba318e8a54c7b0d = L.marker(
[25.41311159353108, 49.72196090966463],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_77304a6dd60fff1024d6d65bd7473bc9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_101165fb51ef36df5eba91883161a601 = L.popup({
"maxWidth": 250,
});
var html_f638653185be1e3a4b2729394c413e77 = $(`<div id="html_f638653185be1e3a4b2729394c413e77" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة رواكز الأنارة التجارية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250060964<br> المنطقة: الحوطه<br> الحارة: الحوطة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.41311159353108,49.72196090966463" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_101165fb51ef36df5eba91883161a601.setContent(html_f638653185be1e3a4b2729394c413e77);
marker_794cda51874b70d1dba318e8a54c7b0d.bindPopup(popup_101165fb51ef36df5eba91883161a601)
;
marker_794cda51874b70d1dba318e8a54c7b0d.bindTooltip(
`<div>
مؤسسة رواكز الأنارة التجارية
</div>`,
{
"sticky": true,
}
);
marker_794cda51874b70d1dba318e8a54c7b0d.setIcon(icon_77304a6dd60fff1024d6d65bd7473bc9);
var marker_3913ce822582d0755d16c624e2bb1fbb = L.marker(
[25.4129336395597, 49.7215335424559],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_573366931082eb077c8ecd3cae0037e6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c416f0e757bd5cc02e177d12338bd36f = L.popup({
"maxWidth": 250,
});
var html_fa2636cddda7b2c156a0bfe56d647f91 = $(`<div id="html_fa2636cddda7b2c156a0bfe56d647f91" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة مجمع الرضا الطبي</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250010136<br> المنطقة: الحوطه<br> الحارة: الحوطة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.4129336395597,49.7215335424559" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c416f0e757bd5cc02e177d12338bd36f.setContent(html_fa2636cddda7b2c156a0bfe56d647f91);
marker_3913ce822582d0755d16c624e2bb1fbb.bindPopup(popup_c416f0e757bd5cc02e177d12338bd36f)
;
marker_3913ce822582d0755d16c624e2bb1fbb.bindTooltip(
`<div>
شركة مجمع الرضا الطبي
</div>`,
{
"sticky": true,
}
);
marker_3913ce822582d0755d16c624e2bb1fbb.setIcon(icon_573366931082eb077c8ecd3cae0037e6);
var marker_7f1a0f03361264bad551fc63cf01c210 = L.marker(
[25.3868123, 49.7166491],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_ba92a44fb20e5df9932d254aa713d9d2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_343a6799bdd82c556c3af730c3b70483 = L.popup({
"maxWidth": 250,
});
var html_20204bbf1f9b269af91bd718ebeecc60 = $(`<div id="html_20204bbf1f9b269af91bd718ebeecc60" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة سعد غانم محمد الحسين التجارية</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 1010809521<br> المنطقة: الساباط<br> الحارة: الساباط<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3868123,49.7166491" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_343a6799bdd82c556c3af730c3b70483.setContent(html_20204bbf1f9b269af91bd718ebeecc60);
marker_7f1a0f03361264bad551fc63cf01c210.bindPopup(popup_343a6799bdd82c556c3af730c3b70483)
;
marker_7f1a0f03361264bad551fc63cf01c210.bindTooltip(
`<div>
مؤسسة سعد غانم محمد الحسين التجارية
</div>`,
{
"sticky": true,
}
);
marker_7f1a0f03361264bad551fc63cf01c210.setIcon(icon_ba92a44fb20e5df9932d254aa713d9d2);
var marker_9f2ec18bb7ca7aeef92fc785e2cd7f33 = L.marker(
[25.3821502244044, 49.6502485300248],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_991b96929b0c0011e65ff080dc0a1fb6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8d842183880d85e9043f450a48495cb2 = L.popup({
"maxWidth": 250,
});
var html_dc7a033c50113f01fe3f9cf7e94ea8ff = $(`<div id="html_dc7a033c50113f01fe3f9cf7e94ea8ff" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة السلطان للتجارة والصناعة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2252000298<br> المنطقة: الشهارين<br> الحارة: الشهارين<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3821502244044,49.6502485300248" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8d842183880d85e9043f450a48495cb2.setContent(html_dc7a033c50113f01fe3f9cf7e94ea8ff);
marker_9f2ec18bb7ca7aeef92fc785e2cd7f33.bindPopup(popup_8d842183880d85e9043f450a48495cb2)
;
marker_9f2ec18bb7ca7aeef92fc785e2cd7f33.bindTooltip(
`<div>
شركة السلطان للتجارة والصناعة
</div>`,
{
"sticky": true,
}
);
marker_9f2ec18bb7ca7aeef92fc785e2cd7f33.setIcon(icon_991b96929b0c0011e65ff080dc0a1fb6);
var marker_59f2b4a4b08a46f08ae623f6a269c0c4 = L.marker(
[25.3627735979409, 49.7152798484836],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_39d4d270bb975332d16ae1cb91adce63 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_61e48e82a8a0cff4cd491c645d58f257 = L.popup({
"maxWidth": 250,
});
var html_330cc3e824cbf82f81b2a0aa33e6ab79 = $(`<div id="html_330cc3e824cbf82f81b2a0aa33e6ab79" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة جمال بن علي الحسيني للمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250027150<br> المنطقة: الطرف<br> الحارة: مخطط مستقبلي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3627735979409,49.7152798484836" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_61e48e82a8a0cff4cd491c645d58f257.setContent(html_330cc3e824cbf82f81b2a0aa33e6ab79);
marker_59f2b4a4b08a46f08ae623f6a269c0c4.bindPopup(popup_61e48e82a8a0cff4cd491c645d58f257)
;
marker_59f2b4a4b08a46f08ae623f6a269c0c4.bindTooltip(
`<div>
مؤسسة جمال بن علي الحسيني للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_59f2b4a4b08a46f08ae623f6a269c0c4.setIcon(icon_39d4d270bb975332d16ae1cb91adce63);
var marker_de3507238870f6f5da9324b99b8d3ec2 = L.marker(
[25.3665660003409, 49.7216940511239],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_f0f25f19fb838460903d0d5da0632478 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6a7a7089758c92d85e733eab5207ac89 = L.popup({
"maxWidth": 250,
});
var html_c3641e2a25794b7d405a16e48872631f = $(`<div id="html_c3641e2a25794b7d405a16e48872631f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة الطرف النموذجية للترفيه</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250038160<br> المنطقة: الطرف<br> الحارة: مخطط مستقبلي<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3665660003409,49.7216940511239" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6a7a7089758c92d85e733eab5207ac89.setContent(html_c3641e2a25794b7d405a16e48872631f);
marker_de3507238870f6f5da9324b99b8d3ec2.bindPopup(popup_6a7a7089758c92d85e733eab5207ac89)
;
marker_de3507238870f6f5da9324b99b8d3ec2.bindTooltip(
`<div>
مؤسسة الطرف النموذجية للترفيه
</div>`,
{
"sticky": true,
}
);
marker_de3507238870f6f5da9324b99b8d3ec2.setIcon(icon_f0f25f19fb838460903d0d5da0632478);
var marker_9d331eccd03cce1dd66f5b26f1c07cd5 = L.marker(
[25.36093399, 49.72396382],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_fc5b79c43b95c4208f0d2fd9de176efc = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bb7d21af46c00c0b0b3abcbac60d5992 = L.popup({
"maxWidth": 250,
});
var html_d2ec64973747f9903c907d015ab71f0c = $(`<div id="html_d2ec64973747f9903c907d015ab71f0c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة أيمن بن سعد بن عبدالله الناجم للمقاولات</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250025821<br> المنطقة: الطرف<br> الحارة: الطرف<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.36093399,49.72396382" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bb7d21af46c00c0b0b3abcbac60d5992.setContent(html_d2ec64973747f9903c907d015ab71f0c);
marker_9d331eccd03cce1dd66f5b26f1c07cd5.bindPopup(popup_bb7d21af46c00c0b0b3abcbac60d5992)
;
marker_9d331eccd03cce1dd66f5b26f1c07cd5.bindTooltip(
`<div>
مؤسسة أيمن بن سعد بن عبدالله الناجم للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_9d331eccd03cce1dd66f5b26f1c07cd5.setIcon(icon_fc5b79c43b95c4208f0d2fd9de176efc);
var marker_8fc54483ebad9724ea9a7a4d700efde3 = L.marker(
[25.3610503, 49.72525547],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_17f941b2995506ae95addf5cf477e5e4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9351bb61eae23b1755d45843753818b8 = L.popup({
"maxWidth": 250,
});
var html_38ebc56e065d71ddc90638e4bd096908 = $(`<div id="html_38ebc56e065d71ddc90638e4bd096908" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>شركة مطاعم رويال ملبار الشرقية لتقديم الوجبات شركة شخص واحد</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250054413<br> المنطقة: الطرف<br> الحارة: الطرف<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.3610503,49.72525547" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9351bb61eae23b1755d45843753818b8.setContent(html_38ebc56e065d71ddc90638e4bd096908);
marker_8fc54483ebad9724ea9a7a4d700efde3.bindPopup(popup_9351bb61eae23b1755d45843753818b8)
;
marker_8fc54483ebad9724ea9a7a4d700efde3.bindTooltip(
`<div>
شركة مطاعم رويال ملبار الشرقية لتقديم الوجبات شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_8fc54483ebad9724ea9a7a4d700efde3.setIcon(icon_17f941b2995506ae95addf5cf477e5e4);
var marker_797266ea5a17b296c754b3e502619467 = L.marker(
[25.419468616498, 49.7096869605568],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_ab8cd5bb1a7d66cafec714795af8a74c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_92a2ca7cd5c223d68105f5a5ea182648 = L.popup({
"maxWidth": 250,
});
var html_ae6fc9a4fea55a694b649f35dbed8fc2 = $(`<div id="html_ae6fc9a4fea55a694b649f35dbed8fc2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>ورشة واصل بن احمد بن محمد الشايب للحدادة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2250001858<br> المنطقة: العمران<br> الحارة: العمران الجنوبية<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.419468616498,49.7096869605568" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_92a2ca7cd5c223d68105f5a5ea182648.setContent(html_ae6fc9a4fea55a694b649f35dbed8fc2);
marker_797266ea5a17b296c754b3e502619467.bindPopup(popup_92a2ca7cd5c223d68105f5a5ea182648)
;
marker_797266ea5a17b296c754b3e502619467.bindTooltip(
`<div>
ورشة واصل بن احمد بن محمد الشايب للحدادة
</div>`,
{
"sticky": true,
}
);
marker_797266ea5a17b296c754b3e502619467.setIcon(icon_ab8cd5bb1a7d66cafec714795af8a74c);
var marker_412a6fef6cf9c8787ffdf8d82bd87ea6 = L.marker(
[25.4195170123074, 49.7376820286742],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_c5a867eacd3cba307039a8739173948c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_122634aadfeb45c79a000b9ad5080095 = L.popup({
"maxWidth": 250,
});
var html_d711785c85c53d4cbc9fd2084b54a726 = $(`<div id="html_d711785c85c53d4cbc9fd2084b54a726" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مؤسسة عبدالرحمن سالم السليم لبيع المواشي وا للحوم</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2251001925<br> المنطقة: العمران<br> الحارة: العمران الشرقية<br> الإقرار: يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.4195170123074,49.7376820286742" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_122634aadfeb45c79a000b9ad5080095.setContent(html_d711785c85c53d4cbc9fd2084b54a726);
marker_412a6fef6cf9c8787ffdf8d82bd87ea6.bindPopup(popup_122634aadfeb45c79a000b9ad5080095)
;
marker_412a6fef6cf9c8787ffdf8d82bd87ea6.bindTooltip(
`<div>
مؤسسة عبدالرحمن سالم السليم لبيع المواشي وا للحوم
</div>`,
{
"sticky": true,
}
);
marker_412a6fef6cf9c8787ffdf8d82bd87ea6.setIcon(icon_c5a867eacd3cba307039a8739173948c);
var marker_738f9e8f1badb6a7977818beae7c9e17 = L.marker(
[25.41785006, 49.67234395],
{
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
var icon_101e32e299ea56ca721bc3e816cd4798 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cd7b570e3c7812dba4eebceeff14da00 = L.popup({
"maxWidth": 250,
});
var html_0924f35e3caf45c3cdb45fb0b12df1cf = $(`<div id="html_0924f35e3caf45c3cdb45fb0b12df1cf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl"> <b>مصنع الثلج البلوري للصناعة</b><br> الباحث: باحث رقم 32<br> السجل التجاري: 2031102788<br> المنطقة: القاره<br> الحارة: القارة<br> الإقرار: لا يوجد إقرار<br> <a href="https://www.google.com/maps?q=25.41785006,49.67234395" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cd7b570e3c7812dba4eebceeff14da00.setContent(html_0924f35e3caf45c3cdb45fb0b12df1cf);
marker_738f9e8f1badb6a7977818beae7c9e17.bindPopup(popup_cd7b570e3c7812dba4eebceeff14da00)
;
marker_738f9e8f1badb6a7977818beae7c9e17.bindTooltip(
`<div>
مصنع الثلج البلوري للصناعة
</div>`,
{
"sticky": true,
}
);
marker_738f9e8f1badb6a7977818beae7c9e17.setIcon(icon_101e32e299ea56ca721bc3e816cd4798);
var layer_control_3203c37fe1bc7596cb70333697760d31_layers = {
base_layers : {
"openstreetmap" : tile_layer_ec2eaefe6b6ec761c513af56cd03a351,
"\u062e\u0631\u064a\u0637\u0629 \u0627\u0644\u0634\u0627\u0631\u0639" : tile_layer_a0a100078875dc0bd6901cf7ab3120fc,
"\u0623\u0642\u0645\u0627\u0631 \u0635\u0646\u0627\u0639\u064a\u0629 (Esri)" : tile_layer_3fd5e20d8fe99fec6b6e1e148bf08fda,
},
overlays : {
},
};
let layer_control_3203c37fe1bc7596cb70333697760d31 = L.control.layers(
layer_control_3203c37fe1bc7596cb70333697760d31_layers.base_layers,
layer_control_3203c37fe1bc7596cb70333697760d31_layers.overlays,
{
"position": "topright",
"collapsed": false,
"autoZIndex": true,
}
).addTo(map_5f52f6fca55f4eb434ff64a3a034058c);
</script>
</html> |