8ec69c7
| 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 | <!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_6cb027a3dc202c91ccc7a082caf5a950 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<style>html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
<style>#map {
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
}
</style>
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-locatecontrol/0.66.2/L.Control.Locate.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet-locatecontrol/0.66.2/L.Control.Locate.min.css"/>
</head>
<body>
<div style="
position:fixed;
top:10px;
right:10px;
z-index:10000;
direction:rtl;
font-family:Arial, sans-serif;
">
<button id="btn_stats_25" onclick="
var panel = document.getElementById('stats_25');
var btn = document.getElementById('btn_stats_25');
if (panel.style.display === 'none') {
panel.style.display = 'block';
btn.innerText = 'إخفاء';
} else {
panel.style.display = 'none';
btn.innerText = 'عرض الملخص';
}
" style="
background:rgba(255,255,255,0.92);
border:none;
border-radius:14px;
padding:10px 14px;
font-size:14px;
font-weight:bold;
cursor:pointer;
box-shadow:0 2px 10px rgba(0,0,0,0.18);
">إخفاء</button>
</div>
<div id="stats_25" style="
display:block;
position:fixed;
top:10px;
right:58px;
width:320px;
max-height:85vh;
overflow-y:auto;
background:rgba(255,255,255,0.86);
backdrop-filter:blur(4px);
-webkit-backdrop-filter:blur(4px);
border-radius:22px;
padding:18px 18px 16px 18px;
z-index:9999;
direction:rtl;
font-family:Arial, sans-serif;
box-shadow:0 8px 28px rgba(0,0,0,0.16);
line-height:1.9;
color:#222;
">
<div style="
font-size:18px;
font-weight:800;
text-align:center;
margin-bottom:10px;
">سارة صالح القحطاني - 25</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 68</div>
<div><b>عدد الحارات:</b> 8</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• الصفاة: 33</div><div>• ج6: 13</div><div>• المصانع: 10</div><div>• طيبة: 8</div><div>• الروضة: 1</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_25_سارة_صالح_القحطاني.pdf" target="_blank" style="
display:block;
text-align:center;
background:#16a34a;
color:#fff;
text-decoration:none;
padding:10px 12px;
border-radius:12px;
font-weight:700;
margin-bottom:14px;
">تصدير بيانات هذه الخريطة PDF</a>
<div style="font-weight:bold; margin-bottom:6px;">تلوين حسب الحارة</div>
<div style="font-size:13px;">
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkgreen;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الصفاة</span>
</div>
<span style="color:#555;">(33)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:cadetblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>ج6</span>
</div>
<span style="color:#555;">(13)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkgreen;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>المصانع</span>
</div>
<span style="color:#555;">(10)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:pink;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>طيبة</span>
</div>
<span style="color:#555;">(8)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkred;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الروضة</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:purple;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>7</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:green;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الحمراء</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:cadetblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>العزيزية</span>
</div>
<span style="color:#555;">(1)</span>
</div>
</div>
</div>
</div>
<div style="
position: fixed;
bottom: 8px; left: 8px;
background: rgba(255,255,255,0.85);
padding: 6px 10px;
border-radius: 10px;
font-size: 13px;
direction: rtl;
z-index: 9999;
box-shadow: 0 1px 8px rgba(0,0,0,0.15);
">
تصميم وإعداد <b>نوف الناصر</b>
</div>
<div class="folium-map" id="map_6cb027a3dc202c91ccc7a082caf5a950" ></div>
</body>
<script>
var map_6cb027a3dc202c91ccc7a082caf5a950 = L.map(
"map_6cb027a3dc202c91ccc7a082caf5a950",
{
center: [26.99582231865091, 49.644996420599945],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_e2cd298813bf2c814ea8d5585f539092 = 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_e2cd298813bf2c814ea8d5585f539092.addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var tile_layer_1d40c5140a510d2440223a824c054e4f = 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_1d40c5140a510d2440223a824c054e4f.addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var tile_layer_28c9c49c7c10c1a7f1cfb0ce47ddb4b5 = 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_28c9c49c7c10c1a7f1cfb0ce47ddb4b5.addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var locate_control_07209322565d145c6fc13b800036ed65 = L.control.locate(
{}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var marker_7fc17da7a2d3156b86d933e37519df13 = L.marker(
[26.98483194, 49.65738361],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_f7da7546a81f819e97869dd51683680c = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a26d7f51694477d46e2a0f44a377a6dc = L.popup({
"maxWidth": 320,
});
var html_643ca527abebe9507b663fa73948408d = $(`<div id="html_643ca527abebe9507b663fa73948408d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة آدم الدولية للمقاولات المحدودة</b><br> الرقم الموحد: 7001548580<br> السجل التجاري: 2055009206<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.98483194,49.65738361" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a26d7f51694477d46e2a0f44a377a6dc.setContent(html_643ca527abebe9507b663fa73948408d);
marker_7fc17da7a2d3156b86d933e37519df13.bindPopup(popup_a26d7f51694477d46e2a0f44a377a6dc)
;
marker_7fc17da7a2d3156b86d933e37519df13.setIcon(icon_f7da7546a81f819e97869dd51683680c);
var marker_bbe8cf8a49098ad6d76bc0419617d538 = L.marker(
[26.9894649472104, 49.6601412287122],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_3c11ffadcb1e2796b9bbd5b6a992a3e8 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a2e369b3594f4e044debe76dbff19c0a = L.popup({
"maxWidth": 320,
});
var html_5a8d38d1af4b2b7b3a681aa2c94cd8ac = $(`<div id="html_5a8d38d1af4b2b7b3a681aa2c94cd8ac" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أف أم أس مالاغا للمقاولات</b><br> الرقم الموحد: 7037084345<br> السجل التجاري: 2055138905<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.9894649472104,49.6601412287122" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a2e369b3594f4e044debe76dbff19c0a.setContent(html_5a8d38d1af4b2b7b3a681aa2c94cd8ac);
marker_bbe8cf8a49098ad6d76bc0419617d538.bindPopup(popup_a2e369b3594f4e044debe76dbff19c0a)
;
marker_bbe8cf8a49098ad6d76bc0419617d538.setIcon(icon_3c11ffadcb1e2796b9bbd5b6a992a3e8);
var marker_93f192a034807d7408adbc884a9025dd = L.marker(
[26.98125115, 49.65448252],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_02be1133f20815a8da366772d5b8657d = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8dd413cac63025de447bdf8dfd8f45fc = L.popup({
"maxWidth": 320,
});
var html_e1281ef64909726ca55064d6b56248a7 = $(`<div id="html_e1281ef64909726ca55064d6b56248a7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المسار الأخضر المحدودة</b><br> الرقم الموحد: 7015545929<br> السجل التجاري: 1010586873<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.98125115,49.65448252" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8dd413cac63025de447bdf8dfd8f45fc.setContent(html_e1281ef64909726ca55064d6b56248a7);
marker_93f192a034807d7408adbc884a9025dd.bindPopup(popup_8dd413cac63025de447bdf8dfd8f45fc)
;
marker_93f192a034807d7408adbc884a9025dd.setIcon(icon_02be1133f20815a8da366772d5b8657d);
var marker_0217459d23513785898dfd220d283d29 = L.marker(
[26.9747106773074, 49.6644994580594],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_5ad3dddf0e37bc6fc5eebd822d11cabd = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3e165552dfa8e291929b69e27fd37f94 = L.popup({
"maxWidth": 320,
});
var html_2a9b2c1d27e31d04fe8b396c60ab7bd0 = $(`<div id="html_2a9b2c1d27e31d04fe8b396c60ab7bd0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة القرية المميزة للاسكان</b><br> الرقم الموحد: 7002111727<br> السجل التجاري: 2055122227<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.9747106773074,49.6644994580594" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3e165552dfa8e291929b69e27fd37f94.setContent(html_2a9b2c1d27e31d04fe8b396c60ab7bd0);
marker_0217459d23513785898dfd220d283d29.bindPopup(popup_3e165552dfa8e291929b69e27fd37f94)
;
marker_0217459d23513785898dfd220d283d29.setIcon(icon_5ad3dddf0e37bc6fc5eebd822d11cabd);
var marker_d08462f741ba27fe0e44c34eedcbd2d9 = L.marker(
[26.98966802, 49.65490526],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_cee14b831b193977c8cca16f88edfe34 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_80ea7999b443376a89c3b68ba5039413 = L.popup({
"maxWidth": 320,
});
var html_96f2337d0be1e8621d874ec4319d73f7 = $(`<div id="html_96f2337d0be1e8621d874ec4319d73f7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الفاضلي للتشغيل والصيانة</b><br> الرقم الموحد: 7007647527<br> السجل التجاري: 2055025880<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.98966802,49.65490526" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_80ea7999b443376a89c3b68ba5039413.setContent(html_96f2337d0be1e8621d874ec4319d73f7);
marker_d08462f741ba27fe0e44c34eedcbd2d9.bindPopup(popup_80ea7999b443376a89c3b68ba5039413)
;
marker_d08462f741ba27fe0e44c34eedcbd2d9.setIcon(icon_cee14b831b193977c8cca16f88edfe34);
var marker_3b63fb1261ccaf5c617dc6438d6ec4de = L.marker(
[26.9817872775737, 49.6474310603572],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_b806d48009d50d5070d2d54427a6245a = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ce5636bf7844c9f153b6a7a26bc36db3 = L.popup({
"maxWidth": 320,
});
var html_33e57f4319ab84af71b1cb968250e211 = $(`<div id="html_33e57f4319ab84af71b1cb968250e211" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الجارنت العربية المحدودة</b><br> الرقم الموحد: 7001497846<br> السجل التجاري: 2055007572<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.9817872775737,49.6474310603572" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ce5636bf7844c9f153b6a7a26bc36db3.setContent(html_33e57f4319ab84af71b1cb968250e211);
marker_3b63fb1261ccaf5c617dc6438d6ec4de.bindPopup(popup_ce5636bf7844c9f153b6a7a26bc36db3)
;
marker_3b63fb1261ccaf5c617dc6438d6ec4de.setIcon(icon_b806d48009d50d5070d2d54427a6245a);
var marker_5baf0a2fb4332cfbe568b453be30aa48 = L.marker(
[26.990685882501, 49.6622363916114],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_8198a79400baed99759a5a271b8aec42 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_55365c4b88ef410bd7e2fb11f4aeeb96 = L.popup({
"maxWidth": 320,
});
var html_b6bd801603b9293569121c4a3e3f9229 = $(`<div id="html_b6bd801603b9293569121c4a3e3f9229" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة التقنية الموحدة للمقاولات</b><br> الرقم الموحد: 7009625224<br> السجل التجاري: 2055009069<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.990685882501,49.6622363916114" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_55365c4b88ef410bd7e2fb11f4aeeb96.setContent(html_b6bd801603b9293569121c4a3e3f9229);
marker_5baf0a2fb4332cfbe568b453be30aa48.bindPopup(popup_55365c4b88ef410bd7e2fb11f4aeeb96)
;
marker_5baf0a2fb4332cfbe568b453be30aa48.setIcon(icon_8198a79400baed99759a5a271b8aec42);
var marker_53d910f96e0de1798574a1c76e22136f = L.marker(
[26.9886095530913, 49.6622377850503],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_4d9c5251404ca8eec0968cda7dc6ac49 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_34b7611eda460e696039c0ed7ec15a5b = L.popup({
"maxWidth": 320,
});
var html_2329104ce56a0fcdcb93c6cf39bf4334 = $(`<div id="html_2329104ce56a0fcdcb93c6cf39bf4334" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الأجنحة الفنية للمقاولات</b><br> الرقم الموحد: 7013526020<br> السجل التجاري: 2055018751<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.9886095530913,49.6622377850503" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_34b7611eda460e696039c0ed7ec15a5b.setContent(html_2329104ce56a0fcdcb93c6cf39bf4334);
marker_53d910f96e0de1798574a1c76e22136f.bindPopup(popup_34b7611eda460e696039c0ed7ec15a5b)
;
marker_53d910f96e0de1798574a1c76e22136f.setIcon(icon_4d9c5251404ca8eec0968cda7dc6ac49);
var marker_7c4de06f6ddd04763651ee2eb9e23b6a = L.marker(
[27.0050150039343, 49.6565431242081],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_8ecb80fa9f3ce79bbc3b354a3d265e36 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_20b443a35e4e8b58656d71e306517280 = L.popup({
"maxWidth": 320,
});
var html_0a0c54c9f9ff20e8c9d5ee4dd353d7dd = $(`<div id="html_0a0c54c9f9ff20e8c9d5ee4dd353d7dd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>قرية الطاقة للمقاولات</b><br> الرقم الموحد: 7001536205<br> السجل التجاري: 2055023955<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0049550039343,49.6565431242081" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_20b443a35e4e8b58656d71e306517280.setContent(html_0a0c54c9f9ff20e8c9d5ee4dd353d7dd);
marker_7c4de06f6ddd04763651ee2eb9e23b6a.bindPopup(popup_20b443a35e4e8b58656d71e306517280)
;
marker_7c4de06f6ddd04763651ee2eb9e23b6a.setIcon(icon_8ecb80fa9f3ce79bbc3b354a3d265e36);
var marker_caeef6394b4b8d91b384715ee88638f4 = L.marker(
[27.01188429, 49.65609586],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_6bc62288d7b45585815fd0015ee948b1 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d021536f21ba974b9699284884d491a8 = L.popup({
"maxWidth": 320,
});
var html_0acf16a04c74ad5a45f454a3cbd2296f = $(`<div id="html_0acf16a04c74ad5a45f454a3cbd2296f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة يسرينا للمقاولات العامة</b><br> الرقم الموحد: 7012026873<br> السجل التجاري: 2055010121<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01188429,49.65609586" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d021536f21ba974b9699284884d491a8.setContent(html_0acf16a04c74ad5a45f454a3cbd2296f);
marker_caeef6394b4b8d91b384715ee88638f4.bindPopup(popup_d021536f21ba974b9699284884d491a8)
;
marker_caeef6394b4b8d91b384715ee88638f4.setIcon(icon_6bc62288d7b45585815fd0015ee948b1);
var marker_aa01a51694ba8bfe6682eb5040673df6 = L.marker(
[27.0120834499622, 49.6588838813636],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_6c25a9ac0704c694d2d05d973cdb4914 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e74d3d466801337247d7e9f538a6fa24 = L.popup({
"maxWidth": 320,
});
var html_1cba2d0dbf4b0056c1dff8cd5792471b = $(`<div id="html_1cba2d0dbf4b0056c1dff8cd5792471b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة يس يم يتش للخدمات الصناعية</b><br> الرقم الموحد: 7001599666<br> السجل التجاري: 2055011199<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0120834499622,49.6588838813636" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e74d3d466801337247d7e9f538a6fa24.setContent(html_1cba2d0dbf4b0056c1dff8cd5792471b);
marker_aa01a51694ba8bfe6682eb5040673df6.bindPopup(popup_e74d3d466801337247d7e9f538a6fa24)
;
marker_aa01a51694ba8bfe6682eb5040673df6.setIcon(icon_6c25a9ac0704c694d2d05d973cdb4914);
var marker_6496320c06a9c696387622cf959e6221 = L.marker(
[27.00758062, 49.66119431],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_390e3f9a7e78acf579c6f968c0e134e6 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b762fab2a342cfb3792a25832c1e56dd = L.popup({
"maxWidth": 320,
});
var html_dcd5b1e03a85a9081e9a883b39acd515 = $(`<div id="html_dcd5b1e03a85a9081e9a883b39acd515" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة هالة الثقة للفحص</b><br> الرقم الموحد: 7016468956<br> السجل التجاري: 2055127101<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.00758062,49.66119431" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b762fab2a342cfb3792a25832c1e56dd.setContent(html_dcd5b1e03a85a9081e9a883b39acd515);
marker_6496320c06a9c696387622cf959e6221.bindPopup(popup_b762fab2a342cfb3792a25832c1e56dd)
;
marker_6496320c06a9c696387622cf959e6221.setIcon(icon_390e3f9a7e78acf579c6f968c0e134e6);
var marker_306b3f12d85d064b9a7b366bf8dba974 = L.marker(
[27.01551578, 49.65798394],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_7aa653efc3d13a6d730686b11f5623ce = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6e8415afb7c4e46c9a8d2b7b41837a63 = L.popup({
"maxWidth": 320,
});
var html_f509acf1aa79a7901db2fcb37eebc0d9 = $(`<div id="html_f509acf1aa79a7901db2fcb37eebc0d9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نيوفايبرنت سبورت سيرفيسيز المحدودة</b><br> الرقم الموحد: 7022071802<br> السجل التجاري: 2055130202<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01551578,49.65798394" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6e8415afb7c4e46c9a8d2b7b41837a63.setContent(html_f509acf1aa79a7901db2fcb37eebc0d9);
marker_306b3f12d85d064b9a7b366bf8dba974.bindPopup(popup_6e8415afb7c4e46c9a8d2b7b41837a63)
;
marker_306b3f12d85d064b9a7b366bf8dba974.setIcon(icon_7aa653efc3d13a6d730686b11f5623ce);
var marker_7d42a663f211a9a6e2af4412ae352983 = L.marker(
[27.01290156, 49.65527158],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_195e626bf8196bbc3b7c8cd968ae1c83 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3ec098c8c71fecf1a408d4b0077a5fb3 = L.popup({
"maxWidth": 320,
});
var html_19efb69193b6712980756123a8c5f81d = $(`<div id="html_19efb69193b6712980756123a8c5f81d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصنع المرايا للزجاج</b><br> الرقم الموحد: 7013031757<br> السجل التجاري: 2055020584<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01290156,49.65527158" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3ec098c8c71fecf1a408d4b0077a5fb3.setContent(html_19efb69193b6712980756123a8c5f81d);
marker_7d42a663f211a9a6e2af4412ae352983.bindPopup(popup_3ec098c8c71fecf1a408d4b0077a5fb3)
;
marker_7d42a663f211a9a6e2af4412ae352983.setIcon(icon_195e626bf8196bbc3b7c8cd968ae1c83);
var marker_00dc031dcab6898c96c354c9eb99e537 = L.marker(
[27.0066742432919, 49.66180848239],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_228dd2682d9d022f9e42bc8768b8c12d = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f10402556466195acaeae509a9f9817c = L.popup({
"maxWidth": 320,
});
var html_836663a675cd9aa87237465dba54ed7d = $(`<div id="html_836663a675cd9aa87237465dba54ed7d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مركز الخليج الآسيوي الطبي</b><br> الرقم الموحد: 7001690796<br> السجل التجاري: 2055014599<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0066742432919,49.66180848239" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f10402556466195acaeae509a9f9817c.setContent(html_836663a675cd9aa87237465dba54ed7d);
marker_00dc031dcab6898c96c354c9eb99e537.bindPopup(popup_f10402556466195acaeae509a9f9817c)
;
marker_00dc031dcab6898c96c354c9eb99e537.setIcon(icon_228dd2682d9d022f9e42bc8768b8c12d);
var marker_fd3e09a65c6b411062178cdce9bba6d1 = L.marker(
[27.01353126, 49.6648192],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_7c74d835c501dc5c4026a5ee855fad53 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_164bc1958a6302d96a40f47f06fcd734 = L.popup({
"maxWidth": 320,
});
var html_513a932657590b5c0a8ebdcd0a5843f8 = $(`<div id="html_513a932657590b5c0a8ebdcd0a5843f8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كلاسيك الدولية للمقاولات</b><br> الرقم الموحد: 7007164614<br> السجل التجاري: 2055009884<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01353126,49.6648192" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_164bc1958a6302d96a40f47f06fcd734.setContent(html_513a932657590b5c0a8ebdcd0a5843f8);
marker_fd3e09a65c6b411062178cdce9bba6d1.bindPopup(popup_164bc1958a6302d96a40f47f06fcd734)
;
marker_fd3e09a65c6b411062178cdce9bba6d1.setIcon(icon_7c74d835c501dc5c4026a5ee855fad53);
var marker_f67d8a9534db10df82fef75afae80105 = L.marker(
[27.00989268455839, 49.6595248673156],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_da70faefbe7448e81c7dd4cf947b8278 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_238f1a1cf8976147a80ad7428969b255 = L.popup({
"maxWidth": 320,
});
var html_b9073443fd480991c6d5ad569e6b6f80 = $(`<div id="html_b9073443fd480991c6d5ad569e6b6f80" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فريق السفر العالمية المحدودة</b><br> الرقم الموحد: 7043477830<br> السجل التجاري: 1009178043<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.00989268455839,49.6595248673156" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_238f1a1cf8976147a80ad7428969b255.setContent(html_b9073443fd480991c6d5ad569e6b6f80);
marker_f67d8a9534db10df82fef75afae80105.bindPopup(popup_238f1a1cf8976147a80ad7428969b255)
;
marker_f67d8a9534db10df82fef75afae80105.setIcon(icon_da70faefbe7448e81c7dd4cf947b8278);
var marker_9171829ec62534e6dce81a223b9c73e8 = L.marker(
[27.01383703, 49.65468775],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_926d53789a168ac6ac07ea91a06d2378 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bc2a80f7da50a17e437e9c3df2550f32 = L.popup({
"maxWidth": 320,
});
var html_04bbf529803650884b56a6a043433c8a = $(`<div id="html_04bbf529803650884b56a6a043433c8a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فاش الفنية للمقاولات</b><br> الرقم الموحد: 7014077940<br> السجل التجاري: 2055003179<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01383703,49.65468775" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bc2a80f7da50a17e437e9c3df2550f32.setContent(html_04bbf529803650884b56a6a043433c8a);
marker_9171829ec62534e6dce81a223b9c73e8.bindPopup(popup_bc2a80f7da50a17e437e9c3df2550f32)
;
marker_9171829ec62534e6dce81a223b9c73e8.setIcon(icon_926d53789a168ac6ac07ea91a06d2378);
var marker_b9f3e773371aa8131d536774810cf97a = L.marker(
[27.0097331388345, 49.6559063418163],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_a231c12e11f61ebf420475179fea66c8 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_37a7229cae414040ce3c2f91196d9f70 = L.popup({
"maxWidth": 320,
});
var html_a2000a45a03d966ec1bda1ff9aa0ae88 = $(`<div id="html_a2000a45a03d966ec1bda1ff9aa0ae88" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عبر النفط للمقاولات العامة</b><br> الرقم الموحد: 7009937926<br> السجل التجاري: 2055104935<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0097331388345,49.6559063418163" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_37a7229cae414040ce3c2f91196d9f70.setContent(html_a2000a45a03d966ec1bda1ff9aa0ae88);
marker_b9f3e773371aa8131d536774810cf97a.bindPopup(popup_37a7229cae414040ce3c2f91196d9f70)
;
marker_b9f3e773371aa8131d536774810cf97a.setIcon(icon_a231c12e11f61ebf420475179fea66c8);
var marker_0803055975b337c241fb8d4e0a4d42cb = L.marker(
[27.01552163, 49.65784648],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_013a6d516eed2ee9c349b17a9232e0e4 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_917bb8bf9bc5c0e22649f3037e4a999e = L.popup({
"maxWidth": 320,
});
var html_34b8fd99f68395d19c2eb1fcd1e70f82 = $(`<div id="html_34b8fd99f68395d19c2eb1fcd1e70f82" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عبدالله سالم العمري للمقاولات</b><br> الرقم الموحد: 7014219534<br> السجل التجاري: 2055018095<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01552163,49.65784648" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_917bb8bf9bc5c0e22649f3037e4a999e.setContent(html_34b8fd99f68395d19c2eb1fcd1e70f82);
marker_0803055975b337c241fb8d4e0a4d42cb.bindPopup(popup_917bb8bf9bc5c0e22649f3037e4a999e)
;
marker_0803055975b337c241fb8d4e0a4d42cb.setIcon(icon_013a6d516eed2ee9c349b17a9232e0e4);
var marker_dfe80a33aca483251054158e55899406 = L.marker(
[27.01251903, 49.65768774],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_75dc8e28e1fbb5a59b53a9be5452025e = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d0cfa8d2545ca9f00a7841daf3e426d7 = L.popup({
"maxWidth": 320,
});
var html_6b968e118cdf112fbb638b734db45b7a = $(`<div id="html_6b968e118cdf112fbb638b734db45b7a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عبدالله النمشان للمقاولات</b><br> الرقم الموحد: 7013294074<br> السجل التجاري: 2055004489<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01251903,49.65768774" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d0cfa8d2545ca9f00a7841daf3e426d7.setContent(html_6b968e118cdf112fbb638b734db45b7a);
marker_dfe80a33aca483251054158e55899406.bindPopup(popup_d0cfa8d2545ca9f00a7841daf3e426d7)
;
marker_dfe80a33aca483251054158e55899406.setIcon(icon_75dc8e28e1fbb5a59b53a9be5452025e);
var marker_952eabc195b77a23d9d788bde6bbf884 = L.marker(
[27.01553524628384, 49.66395043737677],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_ff177f8eff7da8a896f2cabba39155fd = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_121d24ea255495a5f038e14e37e5af29 = L.popup({
"maxWidth": 320,
});
var html_3b2878f119cd717b195b60bed622056b = $(`<div id="html_3b2878f119cd717b195b60bed622056b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة شھیر عباس سبورت سرفیسز العربیة</b><br> الرقم الموحد: 7025522686<br> السجل التجاري: 2055131117<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01553524628384,49.66395043737677" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_121d24ea255495a5f038e14e37e5af29.setContent(html_3b2878f119cd717b195b60bed622056b);
marker_952eabc195b77a23d9d788bde6bbf884.bindPopup(popup_121d24ea255495a5f038e14e37e5af29)
;
marker_952eabc195b77a23d9d788bde6bbf884.setIcon(icon_ff177f8eff7da8a896f2cabba39155fd);
var marker_b51daedd3f637a1c6324567530abab58 = L.marker(
[27.00642130256401, 49.66333487535306],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_9fc50eb5c28ec61cf62fc8d296bc8cb8 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a502298eee79eee54b5f3073cdfde8b3 = L.popup({
"maxWidth": 320,
});
var html_d7f76782829c7e99c9bea1d6952a3720 = $(`<div id="html_d7f76782829c7e99c9bea1d6952a3720" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ريد ديون للمقاولات</b><br> الرقم الموحد: 7041487468<br> السجل التجاري: 2055150056<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.00642130256401,49.66333487535306" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a502298eee79eee54b5f3073cdfde8b3.setContent(html_d7f76782829c7e99c9bea1d6952a3720);
marker_b51daedd3f637a1c6324567530abab58.bindPopup(popup_a502298eee79eee54b5f3073cdfde8b3)
;
marker_b51daedd3f637a1c6324567530abab58.setIcon(icon_9fc50eb5c28ec61cf62fc8d296bc8cb8);
var marker_00462e4f1fae404970e82c55a0b3b5d1 = L.marker(
[27.00753819, 49.65523323],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_b714bafe31254326ccc4501975c0495e = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f2483f8d747bf4a7cb94746f5a3d8588 = L.popup({
"maxWidth": 320,
});
var html_7c753d49353eb7ae99475990a7bca23b = $(`<div id="html_7c753d49353eb7ae99475990a7bca23b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة راسكوم انترناشيونال</b><br> الرقم الموحد: 7008601580<br> السجل التجاري: 2055125278<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.00753819,49.65523323" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f2483f8d747bf4a7cb94746f5a3d8588.setContent(html_7c753d49353eb7ae99475990a7bca23b);
marker_00462e4f1fae404970e82c55a0b3b5d1.bindPopup(popup_f2483f8d747bf4a7cb94746f5a3d8588)
;
marker_00462e4f1fae404970e82c55a0b3b5d1.setIcon(icon_b714bafe31254326ccc4501975c0495e);
var marker_22c3a9a1a63ed65b74e617e58c22a292 = L.marker(
[27.0094634536906, 49.6556557147211],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_fad071e20f17dc8c29e12f624f62298b = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ab3bc47b36ef9ebe900a01e83fd93dcb = L.popup({
"maxWidth": 320,
});
var html_c7e4f3a9d598b6d4b64ed64002d67346 = $(`<div id="html_c7e4f3a9d598b6d4b64ed64002d67346" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جلاكسي اكسبلورينغ كونتراكتينغ</b><br> الرقم الموحد: 7006373935<br> السجل التجاري: 2055101883<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0094634536906,49.6556557147211" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ab3bc47b36ef9ebe900a01e83fd93dcb.setContent(html_c7e4f3a9d598b6d4b64ed64002d67346);
marker_22c3a9a1a63ed65b74e617e58c22a292.bindPopup(popup_ab3bc47b36ef9ebe900a01e83fd93dcb)
;
marker_22c3a9a1a63ed65b74e617e58c22a292.setIcon(icon_fad071e20f17dc8c29e12f624f62298b);
var marker_9e18cf9e44a5d596eee0fcef535b91ab = L.marker(
[27.0068987225612, 49.662351055962],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_cbe115ea484a8526438ecf52f43c4d80 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_93bace7b178cbe9f9ba2da8ac349615a = L.popup({
"maxWidth": 320,
});
var html_80d589bbe41397ccfa42f8655cafe0f9 = $(`<div id="html_80d589bbe41397ccfa42f8655cafe0f9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تيتان للمقاولات</b><br> الرقم الموحد: 7006796325<br> السجل التجاري: 2055009926<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0068987225612,49.662351055962" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_93bace7b178cbe9f9ba2da8ac349615a.setContent(html_80d589bbe41397ccfa42f8655cafe0f9);
marker_9e18cf9e44a5d596eee0fcef535b91ab.bindPopup(popup_93bace7b178cbe9f9ba2da8ac349615a)
;
marker_9e18cf9e44a5d596eee0fcef535b91ab.setIcon(icon_cbe115ea484a8526438ecf52f43c4d80);
var marker_39c1313b2b6a014558145961d5e4e60f = L.marker(
[27.004895003934298, 49.6565431242081],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_7c03af9fa9e503b194aa18bc52cd5d61 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7b70729997cf9e412337e6a4448e0050 = L.popup({
"maxWidth": 320,
});
var html_01e52110d32bbb9bf20ee5295c9fd265 = $(`<div id="html_01e52110d32bbb9bf20ee5295c9fd265" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بيسكو للخدمات الصناعية المحدودة</b><br> الرقم الموحد: 7010472210<br> السجل التجاري: 2055008098<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0049550039343,49.6565431242081" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7b70729997cf9e412337e6a4448e0050.setContent(html_01e52110d32bbb9bf20ee5295c9fd265);
marker_39c1313b2b6a014558145961d5e4e60f.bindPopup(popup_7b70729997cf9e412337e6a4448e0050)
;
marker_39c1313b2b6a014558145961d5e4e60f.setIcon(icon_7c03af9fa9e503b194aa18bc52cd5d61);
var marker_e21456616a703ea85522fad97c77db97 = L.marker(
[27.0077303430356, 49.6612505921506],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_ba4815f886baa23821e3086af833bd7f = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1fcb59b234d449b7f3ed00de3f956191 = L.popup({
"maxWidth": 320,
});
var html_006fcf991e65b5f296f64b0fa02c8806 = $(`<div id="html_006fcf991e65b5f296f64b0fa02c8806" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بيزيل العربية المحدودة</b><br> الرقم الموحد: 7001553598<br> السجل التجاري: 2055002947<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0077303430356,49.6612505921506" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1fcb59b234d449b7f3ed00de3f956191.setContent(html_006fcf991e65b5f296f64b0fa02c8806);
marker_e21456616a703ea85522fad97c77db97.bindPopup(popup_1fcb59b234d449b7f3ed00de3f956191)
;
marker_e21456616a703ea85522fad97c77db97.setIcon(icon_ba4815f886baa23821e3086af833bd7f);
var marker_68a34d9fcad0c4ea87348e7ba78f59b4 = L.marker(
[27.01189861407683, 49.6564361197447],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_2736186cec0553150e0c94f170c33734 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e1c3fb8166ed03619481c2d0b56fbce0 = L.popup({
"maxWidth": 320,
});
var html_15d5dfe5c13d49981da323c8c4957927 = $(`<div id="html_15d5dfe5c13d49981da323c8c4957927" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بلا عيوب الحلول المحدودة</b><br> الرقم الموحد: 7042561972<br> السجل التجاري: 2055154922<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01189861407683,49.6564361197447" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e1c3fb8166ed03619481c2d0b56fbce0.setContent(html_15d5dfe5c13d49981da323c8c4957927);
marker_68a34d9fcad0c4ea87348e7ba78f59b4.bindPopup(popup_e1c3fb8166ed03619481c2d0b56fbce0)
;
marker_68a34d9fcad0c4ea87348e7ba78f59b4.setIcon(icon_2736186cec0553150e0c94f170c33734);
var marker_3699264ee097796bd49c9ec21e0486f9 = L.marker(
[27.0150776156449, 49.6630086423402],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_26f3e79cb1121ffa9a03ab6628633417 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1f3434d23cb2734ca72e6206521ac502 = L.popup({
"maxWidth": 320,
});
var html_d950d1de2e89eee39b01c2cb01dd1cbf = $(`<div id="html_d950d1de2e89eee39b01c2cb01dd1cbf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة انشاءات الطوية للمقاولات</b><br> الرقم الموحد: 7015113751<br> السجل التجاري: 2055012138<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0150776156449,49.6630086423402" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1f3434d23cb2734ca72e6206521ac502.setContent(html_d950d1de2e89eee39b01c2cb01dd1cbf);
marker_3699264ee097796bd49c9ec21e0486f9.bindPopup(popup_1f3434d23cb2734ca72e6206521ac502)
;
marker_3699264ee097796bd49c9ec21e0486f9.setIcon(icon_26f3e79cb1121ffa9a03ab6628633417);
var marker_e50a2c48cf5d0eee9845a2bdc74e112f = L.marker(
[27.01552373, 49.65810243],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_74d6ab843008290852eed7c9b01a6fe3 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b4a03238c2bc122d44d3b71da6bb0170 = L.popup({
"maxWidth": 320,
});
var html_f1c3a5615cfb2b8d4eb84ab010c4ba59 = $(`<div id="html_f1c3a5615cfb2b8d4eb84ab010c4ba59" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المحيط الهادي للمقاولات العامة</b><br> الرقم الموحد: 7016901030<br> السجل التجاري: 2055127547<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01552373,49.65810243" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b4a03238c2bc122d44d3b71da6bb0170.setContent(html_f1c3a5615cfb2b8d4eb84ab010c4ba59);
marker_e50a2c48cf5d0eee9845a2bdc74e112f.bindPopup(popup_b4a03238c2bc122d44d3b71da6bb0170)
;
marker_e50a2c48cf5d0eee9845a2bdc74e112f.setIcon(icon_74d6ab843008290852eed7c9b01a6fe3);
var marker_ce0d44bed94271c8d44d27fc6462b01f = L.marker(
[27.01030281307945, 49.65989742422695],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_7038b7d58cf64f66fa60f2999d3a26d7 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c562271457197052b1a51e41db658bd3 = L.popup({
"maxWidth": 320,
});
var html_a6c8059ae40b99555341419badd0d567 = $(`<div id="html_a6c8059ae40b99555341419badd0d567" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة العناية بالنظافة الصحية للتجارة شركة شخص واحد</b><br> الرقم الموحد: 7021557363<br> السجل التجاري: 2050142598<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01030281307945,49.65989742422695" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c562271457197052b1a51e41db658bd3.setContent(html_a6c8059ae40b99555341419badd0d567);
marker_ce0d44bed94271c8d44d27fc6462b01f.bindPopup(popup_c562271457197052b1a51e41db658bd3)
;
marker_ce0d44bed94271c8d44d27fc6462b01f.setIcon(icon_7038b7d58cf64f66fa60f2999d3a26d7);
var marker_99424ae29e3ae02a0c91687f3127b735 = L.marker(
[27.00536126, 49.65933077],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_b549928e2d9b5e17fd586e82786cb65c = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_13a9924678c26506aef23d3bc4d5a2e0 = L.popup({
"maxWidth": 320,
});
var html_e34c1505db349b2677dfee9f1fc8792c = $(`<div id="html_e34c1505db349b2677dfee9f1fc8792c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة العربية الذكية للمقاولات العامة</b><br> الرقم الموحد: 7014703255<br> السجل التجاري: 2055005507<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.00536126,49.65933077" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_13a9924678c26506aef23d3bc4d5a2e0.setContent(html_e34c1505db349b2677dfee9f1fc8792c);
marker_99424ae29e3ae02a0c91687f3127b735.bindPopup(popup_13a9924678c26506aef23d3bc4d5a2e0)
;
marker_99424ae29e3ae02a0c91687f3127b735.setIcon(icon_b549928e2d9b5e17fd586e82786cb65c);
var marker_50ac26a6d418f636627ced20291ed0a8 = L.marker(
[27.01269615, 49.66150436],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_94c79c518769e504c4e0c732ac28fabb = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c00738ce7593596d95201da399032451 = L.popup({
"maxWidth": 320,
});
var html_fd9e20f40a13ccbd0d55795e2a400658 = $(`<div id="html_fd9e20f40a13ccbd0d55795e2a400658" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الظهران بالجبيل للتجارة</b><br> الرقم الموحد: 7012142837<br> السجل التجاري: 2055022805<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01269615,49.66150436" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c00738ce7593596d95201da399032451.setContent(html_fd9e20f40a13ccbd0d55795e2a400658);
marker_50ac26a6d418f636627ced20291ed0a8.bindPopup(popup_c00738ce7593596d95201da399032451)
;
marker_50ac26a6d418f636627ced20291ed0a8.setIcon(icon_94c79c518769e504c4e0c732ac28fabb);
var marker_0713d681445185fbf5adaa3c636750e1 = L.marker(
[27.01305331, 49.65450213],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_3f0864b3d46a832f7175dd89071007d0 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_814efd02ea38dd3cf7e222b6758863d0 = L.popup({
"maxWidth": 320,
});
var html_29cf8b8e030016a006f9b25ef9569310 = $(`<div id="html_29cf8b8e030016a006f9b25ef9569310" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الطاولة الرابعة للمقاولات</b><br> الرقم الموحد: 7012756065<br> السجل التجاري: 2055024030<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01305331,49.65450213" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_814efd02ea38dd3cf7e222b6758863d0.setContent(html_29cf8b8e030016a006f9b25ef9569310);
marker_0713d681445185fbf5adaa3c636750e1.bindPopup(popup_814efd02ea38dd3cf7e222b6758863d0)
;
marker_0713d681445185fbf5adaa3c636750e1.setIcon(icon_3f0864b3d46a832f7175dd89071007d0);
var marker_38611ccb195c298bbf78b1c67deead93 = L.marker(
[27.01223042, 49.6562335],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_8eda401f3993fb2bad069c5b9b218c3b = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b9fe33e8789986c08a4d3df63853f85a = L.popup({
"maxWidth": 320,
});
var html_9b3c24fd2c09d83c1a929d3dc7b9ddc8 = $(`<div id="html_9b3c24fd2c09d83c1a929d3dc7b9ddc8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الباطن المتقدمة للمقاولات</b><br> الرقم الموحد: 7011902934<br> السجل التجاري: 2055022689<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01223042,49.6562335" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b9fe33e8789986c08a4d3df63853f85a.setContent(html_9b3c24fd2c09d83c1a929d3dc7b9ddc8);
marker_38611ccb195c298bbf78b1c67deead93.bindPopup(popup_b9fe33e8789986c08a4d3df63853f85a)
;
marker_38611ccb195c298bbf78b1c67deead93.setIcon(icon_8eda401f3993fb2bad069c5b9b218c3b);
var marker_300e25d9f96a124a12bdf1a2c1d65562 = L.marker(
[27.00839633633461, 49.66299822166864],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_8865423927ac50628af31bef569a15da = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_642e7a770ddcb977af162bef29e98b19 = L.popup({
"maxWidth": 320,
});
var html_fe8969b42454932d0c7eaabe5ec3855e = $(`<div id="html_fe8969b42454932d0c7eaabe5ec3855e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الاناقة المتطورة للمقاولات</b><br> الرقم الموحد: 7041611398<br> السجل التجاري: 2055150326<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.00839633633461,49.66299822166864" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_642e7a770ddcb977af162bef29e98b19.setContent(html_fe8969b42454932d0c7eaabe5ec3855e);
marker_300e25d9f96a124a12bdf1a2c1d65562.bindPopup(popup_642e7a770ddcb977af162bef29e98b19)
;
marker_300e25d9f96a124a12bdf1a2c1d65562.setIcon(icon_8865423927ac50628af31bef569a15da);
var marker_8f24a47cd6b2412fdd950dc3f6122008 = L.marker(
[27.0124722391519, 49.6617741331105],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_75c563cdabeec6804dad36b86eef908f = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_868ba0e4d69c9a04d65b3bb3c62e6b4c = L.popup({
"maxWidth": 320,
});
var html_bad50eac4b96c7531423322278d76be0 = $(`<div id="html_bad50eac4b96c7531423322278d76be0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الاتحادية موجة للمقاولات</b><br> الرقم الموحد: 7010841026<br> السجل التجاري: 2055121973<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0124722391519,49.6617741331105" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_868ba0e4d69c9a04d65b3bb3c62e6b4c.setContent(html_bad50eac4b96c7531423322278d76be0);
marker_8f24a47cd6b2412fdd950dc3f6122008.bindPopup(popup_868ba0e4d69c9a04d65b3bb3c62e6b4c)
;
marker_8f24a47cd6b2412fdd950dc3f6122008.setIcon(icon_75c563cdabeec6804dad36b86eef908f);
var marker_4045daed4ba2e0882ba5f257ac6da206 = L.marker(
[27.01322674, 49.6548425],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_a82bf5e813b5787ff63e7be6567cff2f = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_336a3ab7b51e07ffa447f462c8b3e6f2 = L.popup({
"maxWidth": 320,
});
var html_75b6439898a1d4df7d4a1eaf532651c5 = $(`<div id="html_75b6439898a1d4df7d4a1eaf532651c5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اس ایھ انجنیرنج اند كونتركتنغ</b><br> الرقم الموحد: 7025946000<br> السجل التجاري: 2055131421<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01322674,49.6548425" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_336a3ab7b51e07ffa447f462c8b3e6f2.setContent(html_75b6439898a1d4df7d4a1eaf532651c5);
marker_4045daed4ba2e0882ba5f257ac6da206.bindPopup(popup_336a3ab7b51e07ffa447f462c8b3e6f2)
;
marker_4045daed4ba2e0882ba5f257ac6da206.setIcon(icon_a82bf5e813b5787ff63e7be6567cff2f);
var marker_ad422c402c1570e25f772a345cb060bb = L.marker(
[27.01243563, 49.65552743],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_ee18ff7610f7abbf5d4d026b976dcb03 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e0a838a8e4f9610b4d79be0bc1c34159 = L.popup({
"maxWidth": 320,
});
var html_aa5c38d37f26443bab80042f106ad053 = $(`<div id="html_aa5c38d37f26443bab80042f106ad053" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ادكا للمقاولات العامة</b><br> الرقم الموحد: 7005697375<br> السجل التجاري: 2055124620<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01243563,49.65552743" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e0a838a8e4f9610b4d79be0bc1c34159.setContent(html_aa5c38d37f26443bab80042f106ad053);
marker_ad422c402c1570e25f772a345cb060bb.bindPopup(popup_e0a838a8e4f9610b4d79be0bc1c34159)
;
marker_ad422c402c1570e25f772a345cb060bb.setIcon(icon_ee18ff7610f7abbf5d4d026b976dcb03);
var marker_95ec8f63a104499aaa83c1b798e92df6 = L.marker(
[27.01317647, 49.65451254],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_df0af580dd0ec0c99ac37c84fab102c2 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_965306dde6ade07f2db6abfa4741bc44 = L.popup({
"maxWidth": 320,
});
var html_99698681d4fcb1eb4bb902253521a7f7 = $(`<div id="html_99698681d4fcb1eb4bb902253521a7f7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>رمز الأوائل المتحدة للمقاولات</b><br> الرقم الموحد: 7011554222<br> السجل التجاري: 2055006135<br> المنطقة: الجبيل<br> الحارة: الصفاة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.01317647,49.65451254" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_965306dde6ade07f2db6abfa4741bc44.setContent(html_99698681d4fcb1eb4bb902253521a7f7);
marker_95ec8f63a104499aaa83c1b798e92df6.bindPopup(popup_965306dde6ade07f2db6abfa4741bc44)
;
marker_95ec8f63a104499aaa83c1b798e92df6.setIcon(icon_df0af580dd0ec0c99ac37c84fab102c2);
var marker_cb2f6ea32bb498157ddfad193b34732f = L.marker(
[26.95977994, 49.66542533],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_0bbce55970fb3766bd3042ddaa875358 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c02ebe413e565fa269cd4b9ebeb78095 = L.popup({
"maxWidth": 320,
});
var html_30305f674d63fd775657f07f397fa965 = $(`<div id="html_30305f674d63fd775657f07f397fa965" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مطاعم درة البخاري لتقديم الوجبات</b><br> الرقم الموحد: 7003646564<br> السجل التجاري: 2055022760<br> المنطقة: الجبيل<br> الحارة: الروضة<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.95977994,49.66542533" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c02ebe413e565fa269cd4b9ebeb78095.setContent(html_30305f674d63fd775657f07f397fa965);
marker_cb2f6ea32bb498157ddfad193b34732f.bindPopup(popup_c02ebe413e565fa269cd4b9ebeb78095)
;
marker_cb2f6ea32bb498157ddfad193b34732f.setIcon(icon_0bbce55970fb3766bd3042ddaa875358);
var marker_452b2d2592b10b797cf580a36da67c5a = L.marker(
[26.94394083, 49.67388257],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_4b02ac82cd7a01a76ab290b8ab661f65 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cdbf5bd6558af370206054f144e901c3 = L.popup({
"maxWidth": 320,
});
var html_4ddb6fbad986e8e9680e83619d97044f = $(`<div id="html_4ddb6fbad986e8e9680e83619d97044f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصنع سعودي ثاليت للصناعة</b><br> الرقم الموحد: 7012250424<br> السجل التجاري: 2055010968<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.94394083,49.67388257" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cdbf5bd6558af370206054f144e901c3.setContent(html_4ddb6fbad986e8e9680e83619d97044f);
marker_452b2d2592b10b797cf580a36da67c5a.bindPopup(popup_cdbf5bd6558af370206054f144e901c3)
;
marker_452b2d2592b10b797cf580a36da67c5a.setIcon(icon_4b02ac82cd7a01a76ab290b8ab661f65);
var marker_f36d428fa074fdca019560dbe366ad64 = L.marker(
[26.93915738, 49.67865312],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_f6e5bfebcddd334cdfb9ae2ff4b3581a = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5ece990542c23295af094909a905e171 = L.popup({
"maxWidth": 320,
});
var html_3e9e8d58681ab0bbe72019cfb0cee894 = $(`<div id="html_3e9e8d58681ab0bbe72019cfb0cee894" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصنع الو ماسا للمنتجات المعدنية</b><br> الرقم الموحد: 7007434371<br> السجل التجاري: 2055014604<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.93915738,49.67865312" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5ece990542c23295af094909a905e171.setContent(html_3e9e8d58681ab0bbe72019cfb0cee894);
marker_f36d428fa074fdca019560dbe366ad64.bindPopup(popup_5ece990542c23295af094909a905e171)
;
marker_f36d428fa074fdca019560dbe366ad64.setIcon(icon_f6e5bfebcddd334cdfb9ae2ff4b3581a);
var marker_3cc0869bd8debcc51ec6f6d14d9ce8de = L.marker(
[26.94892216, 49.66418767],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_13915412782da1799d26f2f3bfc74e5d = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_83d985b1a93a8ecc461833e82bf8137c = L.popup({
"maxWidth": 320,
});
var html_af4763cdd7a355b7d527469538c86114 = $(`<div id="html_af4763cdd7a355b7d527469538c86114" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كي كيم انجنيرينج سيرفيس السعودية</b><br> الرقم الموحد: 7001632582<br> السجل التجاري: 2055012533<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.94892216,49.66418767" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_83d985b1a93a8ecc461833e82bf8137c.setContent(html_af4763cdd7a355b7d527469538c86114);
marker_3cc0869bd8debcc51ec6f6d14d9ce8de.bindPopup(popup_83d985b1a93a8ecc461833e82bf8137c)
;
marker_3cc0869bd8debcc51ec6f6d14d9ce8de.setIcon(icon_13915412782da1799d26f2f3bfc74e5d);
var marker_aa5726ef4ecdc21adfb8c90cbb4de4b9 = L.marker(
[26.95809682, 49.6390933],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_87e3e8f6f7639005eac386fda0a7b143 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_aca6af182c4a2b055a1cd8c45a739a45 = L.popup({
"maxWidth": 320,
});
var html_7f3505535ebbe6ae9ac7c6f4c6dcab56 = $(`<div id="html_7f3505535ebbe6ae9ac7c6f4c6dcab56" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عالم النفط للمقاولات</b><br> الرقم الموحد: 7030834787<br> السجل التجاري: 2055134517<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.95809682,49.6390933" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_aca6af182c4a2b055a1cd8c45a739a45.setContent(html_7f3505535ebbe6ae9ac7c6f4c6dcab56);
marker_aa5726ef4ecdc21adfb8c90cbb4de4b9.bindPopup(popup_aca6af182c4a2b055a1cd8c45a739a45)
;
marker_aa5726ef4ecdc21adfb8c90cbb4de4b9.setIcon(icon_87e3e8f6f7639005eac386fda0a7b143);
var marker_05312a3cc1732ab4631e07c2e53e35d9 = L.marker(
[26.94832681, 49.66521244],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_62e1a0cfc993ae803cfde166541df96c = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_59191e9c4fe2aa2b951b19132bf0418b = L.popup({
"maxWidth": 320,
});
var html_a45e278624d6b57aeaa5f5db2267d153 = $(`<div id="html_a45e278624d6b57aeaa5f5db2267d153" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة رائد الخليج لصيانة المعدات</b><br> الرقم الموحد: 7031032571<br> السجل التجاري: 2055134638<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.94832681,49.66521244" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_59191e9c4fe2aa2b951b19132bf0418b.setContent(html_a45e278624d6b57aeaa5f5db2267d153);
marker_05312a3cc1732ab4631e07c2e53e35d9.bindPopup(popup_59191e9c4fe2aa2b951b19132bf0418b)
;
marker_05312a3cc1732ab4631e07c2e53e35d9.setIcon(icon_62e1a0cfc993ae803cfde166541df96c);
var marker_60a02832212eb5d7e068c4df3524c064 = L.marker(
[26.94148891, 49.67446742],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_48c67aa2b0085bf0e6ba031d96bc85a3 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7e5fd030635b61a5c0c8e1151bc10a89 = L.popup({
"maxWidth": 320,
});
var html_cd06550d685562ac542eb69ca39e888d = $(`<div id="html_cd06550d685562ac542eb69ca39e888d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الموارد الصناعية العربية</b><br> الرقم الموحد: 7006569441<br> السجل التجاري: 2055007603<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.94148891,49.67446742" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7e5fd030635b61a5c0c8e1151bc10a89.setContent(html_cd06550d685562ac542eb69ca39e888d);
marker_60a02832212eb5d7e068c4df3524c064.bindPopup(popup_7e5fd030635b61a5c0c8e1151bc10a89)
;
marker_60a02832212eb5d7e068c4df3524c064.setIcon(icon_48c67aa2b0085bf0e6ba031d96bc85a3);
var marker_150054d3ee51b81d9a4cefad39ba768f = L.marker(
[26.9480935328513, 49.6653885478669],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_f955b8dfd0569614a0ed94e766d98ca4 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ba884a910ba014e73d21cb823f27a817 = L.popup({
"maxWidth": 320,
});
var html_b84157e25c55021546bc75d6c162d4d4 = $(`<div id="html_b84157e25c55021546bc75d6c162d4d4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المدينة البحرية المحدودة</b><br> الرقم الموحد: 7009427449<br> السجل التجاري: 2055022777<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.9480935328513,49.6653885478669" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ba884a910ba014e73d21cb823f27a817.setContent(html_b84157e25c55021546bc75d6c162d4d4);
marker_150054d3ee51b81d9a4cefad39ba768f.bindPopup(popup_ba884a910ba014e73d21cb823f27a817)
;
marker_150054d3ee51b81d9a4cefad39ba768f.setIcon(icon_f955b8dfd0569614a0ed94e766d98ca4);
var marker_3bcae2020d56101dc7c0341e6af30698 = L.marker(
[26.95769474, 49.6460803],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_d13c4bf470dc2712bf83d2a84d415191 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c4ddf45750a57f30a98c2192144b5cb2 = L.popup({
"maxWidth": 320,
});
var html_6f89fda8e955713b8ae699fa07b18918 = $(`<div id="html_6f89fda8e955713b8ae699fa07b18918" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الفارس السعودية الدولية</b><br> الرقم الموحد: 7001700793<br> السجل التجاري: 2055015075<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.95769474,49.6460803" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c4ddf45750a57f30a98c2192144b5cb2.setContent(html_6f89fda8e955713b8ae699fa07b18918);
marker_3bcae2020d56101dc7c0341e6af30698.bindPopup(popup_c4ddf45750a57f30a98c2192144b5cb2)
;
marker_3bcae2020d56101dc7c0341e6af30698.setIcon(icon_d13c4bf470dc2712bf83d2a84d415191);
var marker_475658af5249a85826b1d9485b9222e8 = L.marker(
[26.95508377, 49.63910863],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_471ba75b302ea15efba9b623e63b1134 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ed198dcc56a324a980224a4a702bd263 = L.popup({
"maxWidth": 320,
});
var html_6ddb996a1b4fe0428ca8b42d12b879cc = $(`<div id="html_6ddb996a1b4fe0428ca8b42d12b879cc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الزرقاء الوطنية للمقاولات العامة</b><br> الرقم الموحد: 7011035214<br> السجل التجاري: 2055007374<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.95508377,49.63910863" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ed198dcc56a324a980224a4a702bd263.setContent(html_6ddb996a1b4fe0428ca8b42d12b879cc);
marker_475658af5249a85826b1d9485b9222e8.bindPopup(popup_ed198dcc56a324a980224a4a702bd263)
;
marker_475658af5249a85826b1d9485b9222e8.setIcon(icon_471ba75b302ea15efba9b623e63b1134);
var marker_3a89a24e0e6c040b7f9361711cbde385 = L.marker(
[26.9383885118819, 49.6752162191515],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_93600c0656100ed9a2a8d7faaa014da8 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f8556d47c0a27ab842ded9fef8fbdacf = L.popup({
"maxWidth": 320,
});
var html_09b754c47922bc55d816605d4e8b15b4 = $(`<div id="html_09b754c47922bc55d816605d4e8b15b4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اسكون كونترول المحدودة</b><br> الرقم الموحد: 7001684468<br> السجل التجاري: 2055014082<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.9383885118819,49.6752162191515" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f8556d47c0a27ab842ded9fef8fbdacf.setContent(html_09b754c47922bc55d816605d4e8b15b4);
marker_3a89a24e0e6c040b7f9361711cbde385.bindPopup(popup_f8556d47c0a27ab842ded9fef8fbdacf)
;
marker_3a89a24e0e6c040b7f9361711cbde385.setIcon(icon_93600c0656100ed9a2a8d7faaa014da8);
var marker_4c20dc4fb6f08c149d7b8800cdcbd8d8 = L.marker(
[26.95308727612282, 49.64887699711527],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_a5f5aec20c3ceedd83a581033b242b48 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f91f2efd77a88ab96909bb063c7a1802 = L.popup({
"maxWidth": 320,
});
var html_c8b9b1c289eb74ae355751cb1fec263a = $(`<div id="html_c8b9b1c289eb74ae355751cb1fec263a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اس اس تي انفرا بروجكتس العربية المحدودة</b><br> الرقم الموحد: 7034990882<br> السجل التجاري: 2055136357<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.95308727612282,49.64887699711527" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f91f2efd77a88ab96909bb063c7a1802.setContent(html_c8b9b1c289eb74ae355751cb1fec263a);
marker_4c20dc4fb6f08c149d7b8800cdcbd8d8.bindPopup(popup_f91f2efd77a88ab96909bb063c7a1802)
;
marker_4c20dc4fb6f08c149d7b8800cdcbd8d8.setIcon(icon_a5f5aec20c3ceedd83a581033b242b48);
var marker_fa22233bcf3ea2d2fbff130acda25e44 = L.marker(
[26.9505194468458, 49.6575158986866],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_bd964c4b6c3f07f7598aaa95cfa78b96 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_43bc37117737e14ceec55ec7536719f7 = L.popup({
"maxWidth": 320,
});
var html_c4b7b39c79d707e1d9fa001f792e4f78 = $(`<div id="html_c4b7b39c79d707e1d9fa001f792e4f78" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جاسر للخدمات البترولية والصناعية</b><br> الرقم الموحد: 7001883714<br> السجل التجاري: 2055023372<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.9505194468458,49.6575158986866" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_43bc37117737e14ceec55ec7536719f7.setContent(html_c4b7b39c79d707e1d9fa001f792e4f78);
marker_fa22233bcf3ea2d2fbff130acda25e44.bindPopup(popup_43bc37117737e14ceec55ec7536719f7)
;
marker_fa22233bcf3ea2d2fbff130acda25e44.setIcon(icon_bd964c4b6c3f07f7598aaa95cfa78b96);
var marker_67af0f62c59dc90a863a57502ef5ba78 = L.marker(
[26.95744038, 49.64745239],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_b046cb458d96b6b40f732964172d3b4c = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_060fe1df3805fe5545ca7b7535215899 = L.popup({
"maxWidth": 320,
});
var html_af727ead4fa0c4ccfe5b6a1b74fd4e58 = $(`<div id="html_af727ead4fa0c4ccfe5b6a1b74fd4e58" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة العربية الموحدة للتنظيف الصناعي</b><br> الرقم الموحد: 7001663546<br> السجل التجاري: 2055013311<br> المنطقة: الجبيل<br> الحارة: ج6<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.95744038,49.64745239" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_060fe1df3805fe5545ca7b7535215899.setContent(html_af727ead4fa0c4ccfe5b6a1b74fd4e58);
marker_67af0f62c59dc90a863a57502ef5ba78.bindPopup(popup_060fe1df3805fe5545ca7b7535215899)
;
marker_67af0f62c59dc90a863a57502ef5ba78.setIcon(icon_b046cb458d96b6b40f732964172d3b4c);
var marker_83dd347914c7766af2068f901e278c50 = L.marker(
[26.8980216942242, 49.7097932146818],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_058076ab309e6d3fa967c1ff4ca51c4a = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f22c8dcfcc5c71133cb97678dd728b30 = L.popup({
"maxWidth": 320,
});
var html_695baebff39eb82cb405d7790c54cdeb = $(`<div id="html_695baebff39eb82cb405d7790c54cdeb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المختصة الحديثة المحدودة</b><br> الرقم الموحد: 7011898116<br> السجل التجاري: 2055100070<br> المنطقة: الجبيل<br> الحارة: 7<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.8980216942242,49.7097932146818" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f22c8dcfcc5c71133cb97678dd728b30.setContent(html_695baebff39eb82cb405d7790c54cdeb);
marker_83dd347914c7766af2068f901e278c50.bindPopup(popup_f22c8dcfcc5c71133cb97678dd728b30)
;
marker_83dd347914c7766af2068f901e278c50.setIcon(icon_058076ab309e6d3fa967c1ff4ca51c4a);
var marker_f11802be3f7b512487355a9a8816a5e6 = L.marker(
[26.93022106, 49.71729425],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_e49cb6ff9fefe78614778e32c9bf5445 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e51c57523451ac2a613292e6ec0b06a5 = L.popup({
"maxWidth": 320,
});
var html_275fc1404fabe2c1989fbaa017600e90 = $(`<div id="html_275fc1404fabe2c1989fbaa017600e90" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عاليه الجبيل التجارية</b><br> الرقم الموحد: 7014157452<br> السجل التجاري: 2055012466<br> المنطقة: الجبيل<br> الحارة: الحمراء<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.93022106,49.71729425" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e51c57523451ac2a613292e6ec0b06a5.setContent(html_275fc1404fabe2c1989fbaa017600e90);
marker_f11802be3f7b512487355a9a8816a5e6.bindPopup(popup_e51c57523451ac2a613292e6ec0b06a5)
;
marker_f11802be3f7b512487355a9a8816a5e6.setIcon(icon_e49cb6ff9fefe78614778e32c9bf5445);
var marker_d4f2a000e13ca2b5ab703f07d46a0d70 = L.marker(
[26.84986576, 49.82555875],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_60d5aa3e1a1689dbbe5670c5c25ed350 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_336db9cd4b6cfdb8689e274553879776 = L.popup({
"maxWidth": 320,
});
var html_029e5568a5eea61d608bcdf53cd5e5d2 = $(`<div id="html_029e5568a5eea61d608bcdf53cd5e5d2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سوماك للمقاولات</b><br> الرقم الموحد: 7001494769<br> السجل التجاري: 2050004497<br> المنطقة: الجبيل<br> الحارة: العزيزية<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=26.84986576,49.82555875" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_336db9cd4b6cfdb8689e274553879776.setContent(html_029e5568a5eea61d608bcdf53cd5e5d2);
marker_d4f2a000e13ca2b5ab703f07d46a0d70.bindPopup(popup_336db9cd4b6cfdb8689e274553879776)
;
marker_d4f2a000e13ca2b5ab703f07d46a0d70.setIcon(icon_60d5aa3e1a1689dbbe5670c5c25ed350);
var marker_22efc8707c76004528eee6fadef6a3fe = L.marker(
[27.07470605, 49.54957081],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_a01ec840228c168fca3f6997d540db85 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b9d647cd656307ba398003445700f475 = L.popup({
"maxWidth": 320,
});
var html_deeefa0f9509417018f7fdfcbce545b4 = $(`<div id="html_deeefa0f9509417018f7fdfcbce545b4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مصنع شركة اوربيتوس العربية المحدودة</b><br> الرقم الموحد: 7001771653<br> السجل التجاري: 2055017743<br> المنطقة: مدينه الجبيل الصناعيه<br> الحارة: المصانع<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.07470605,49.54957081" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b9d647cd656307ba398003445700f475.setContent(html_deeefa0f9509417018f7fdfcbce545b4);
marker_22efc8707c76004528eee6fadef6a3fe.bindPopup(popup_b9d647cd656307ba398003445700f475)
;
marker_22efc8707c76004528eee6fadef6a3fe.setIcon(icon_a01ec840228c168fca3f6997d540db85);
var marker_caf79ff5800e7d0f6cb08979435a8403 = L.marker(
[27.04449559, 49.50313998],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_08c91acce130859b486b8b02d0719374 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f2e45815f14412239d14e32e9fb557f9 = L.popup({
"maxWidth": 320,
});
var html_ac7df9fbff2a24e5bc99f4badc4b06a4 = $(`<div id="html_ac7df9fbff2a24e5bc99f4badc4b06a4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مصنع شركة ارني فيتنجز الشرق الأوسط شركة</b><br> الرقم الموحد: 7001524748<br> السجل التجاري: 2055008088<br> المنطقة: مدينه الجبيل الصناعيه<br> الحارة: المصانع<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.04449559,49.50313998" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f2e45815f14412239d14e32e9fb557f9.setContent(html_ac7df9fbff2a24e5bc99f4badc4b06a4);
marker_caf79ff5800e7d0f6cb08979435a8403.bindPopup(popup_f2e45815f14412239d14e32e9fb557f9)
;
marker_caf79ff5800e7d0f6cb08979435a8403.setIcon(icon_08c91acce130859b486b8b02d0719374);
var marker_0ca09073da7a7eac57c4a507d1449625 = L.marker(
[27.0455583195414, 49.5450648755303],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_33d1822310ea42c85f0be48202d96e6e = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_30849ffda736703d89bb6f78610d453c = L.popup({
"maxWidth": 320,
});
var html_2bc883578ddb3216c873f735afe26c66 = $(`<div id="html_2bc883578ddb3216c873f735afe26c66" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مصنع الشركة الخليجية للمواد الكيماوية</b><br> الرقم الموحد: 7001400782<br> السجل التجاري: 2055004513<br> المنطقة: مدينه الجبيل الصناعيه<br> الحارة: المصانع<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0455583195414,49.5450648755303" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_30849ffda736703d89bb6f78610d453c.setContent(html_2bc883578ddb3216c873f735afe26c66);
marker_0ca09073da7a7eac57c4a507d1449625.bindPopup(popup_30849ffda736703d89bb6f78610d453c)
;
marker_0ca09073da7a7eac57c4a507d1449625.setIcon(icon_33d1822310ea42c85f0be48202d96e6e);
var marker_11d2c663081a5983e9a157a44a3dd61c = L.marker(
[27.0390197718426, 49.5025897897117],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_cc274efa66115b62575030903f0d5de6 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c3147334fbea263c3921faa331b78ad7 = L.popup({
"maxWidth": 320,
});
var html_bb5087ac504d0856bb069165221cf20d = $(`<div id="html_bb5087ac504d0856bb069165221cf20d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة هيت السعودية المحدودة</b><br> الرقم الموحد: 7008060134<br> السجل التجاري: 2051047657<br> المنطقة: مدينه الجبيل الصناعيه<br> الحارة: المصانع<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0390197718426,49.5025897897117" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c3147334fbea263c3921faa331b78ad7.setContent(html_bb5087ac504d0856bb069165221cf20d);
marker_11d2c663081a5983e9a157a44a3dd61c.bindPopup(popup_c3147334fbea263c3921faa331b78ad7)
;
marker_11d2c663081a5983e9a157a44a3dd61c.setIcon(icon_cc274efa66115b62575030903f0d5de6);
var marker_e35775de2944535727ae32a1ea57b238 = L.marker(
[27.03022035, 49.55992968],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_982d8be4f94577e2b1c01b98918f3452 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_505a3bada2ac120376effa4ff524fc18 = L.popup({
"maxWidth": 320,
});
var html_cc0ce25d5166b270d94beaac389b3b88 = $(`<div id="html_cc0ce25d5166b270d94beaac389b3b88" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة هاريس باي السعودية</b><br> الرقم الموحد: 7001470801<br> السجل التجاري: 2055008500<br> المنطقة: مدينه الجبيل الصناعيه<br> الحارة: المصانع<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.03022035,49.55992968" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_505a3bada2ac120376effa4ff524fc18.setContent(html_cc0ce25d5166b270d94beaac389b3b88);
marker_e35775de2944535727ae32a1ea57b238.bindPopup(popup_505a3bada2ac120376effa4ff524fc18)
;
marker_e35775de2944535727ae32a1ea57b238.setIcon(icon_982d8be4f94577e2b1c01b98918f3452);
var marker_abe632839561f39bbed73b2aed2d05a7 = L.marker(
[27.0707269824672, 49.548774590713],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_1ecf405a9e248429fe7c1f904f2788fc = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7b06192f9929c9e29fc776bfb8d67449 = L.popup({
"maxWidth": 320,
});
var html_7ece71d41812b91298a5f7216746f20e = $(`<div id="html_7ece71d41812b91298a5f7216746f20e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصنع مجموعة الشيخ الدولية لانظمة</b><br> الرقم الموحد: 7006793835<br> السجل التجاري: 2055007843<br> المنطقة: مدينه الجبيل الصناعيه<br> الحارة: المصانع<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0707269824672,49.548774590713" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7b06192f9929c9e29fc776bfb8d67449.setContent(html_7ece71d41812b91298a5f7216746f20e);
marker_abe632839561f39bbed73b2aed2d05a7.bindPopup(popup_7b06192f9929c9e29fc776bfb8d67449)
;
marker_abe632839561f39bbed73b2aed2d05a7.setIcon(icon_1ecf405a9e248429fe7c1f904f2788fc);
var marker_c2a74b8b2d265c506565cf9b7f28b93d = L.marker(
[27.06594897, 49.5364506],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_64a39532396ba147cc5ed1a5f82c809e = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f741b36f80ced288ae34921d2f35679d = L.popup({
"maxWidth": 320,
});
var html_aa31a7ffe15df4aa063b8d274e673c08 = $(`<div id="html_aa31a7ffe15df4aa063b8d274e673c08" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصنع غازات الجبيل</b><br> الرقم الموحد: 7000736004<br> السجل التجاري: 2055000140<br> المنطقة: مدينه الجبيل الصناعيه<br> الحارة: المصانع<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.06594897,49.5364506" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f741b36f80ced288ae34921d2f35679d.setContent(html_aa31a7ffe15df4aa063b8d274e673c08);
marker_c2a74b8b2d265c506565cf9b7f28b93d.bindPopup(popup_f741b36f80ced288ae34921d2f35679d)
;
marker_c2a74b8b2d265c506565cf9b7f28b93d.setIcon(icon_64a39532396ba147cc5ed1a5f82c809e);
var marker_bdf281632a0beca178d0a330d3dc4437 = L.marker(
[27.0453534738625, 49.6093897155922],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_4d0a914c96ec6d2dc8de642c35f84e70 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4df8fd51634cd457d65f150a7bd5b305 = L.popup({
"maxWidth": 320,
});
var html_b8f5cef14923493942c613f5f24bbace = $(`<div id="html_b8f5cef14923493942c613f5f24bbace" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصفاة ارامكو السعودية شل</b><br> الرقم الموحد: 7000874250<br> السجل التجاري: 2055000925<br> المنطقة: مدينه الجبيل الصناعيه<br> الحارة: المصانع<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.0453534738625,49.6093897155922" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4df8fd51634cd457d65f150a7bd5b305.setContent(html_b8f5cef14923493942c613f5f24bbace);
marker_bdf281632a0beca178d0a330d3dc4437.bindPopup(popup_4df8fd51634cd457d65f150a7bd5b305)
;
marker_bdf281632a0beca178d0a330d3dc4437.setIcon(icon_4d0a914c96ec6d2dc8de642c35f84e70);
var marker_f1240d59e88bfb3f80c38a6f55afafbe = L.marker(
[27.03246492, 49.49882025],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_60868ede221eeafebae0cb003ddf81bb = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f427db57cf75b6c17931c7303285ac52 = L.popup({
"maxWidth": 320,
});
var html_c960ea61ede4246d5f81c3fe70450bf8 = $(`<div id="html_c960ea61ede4246d5f81c3fe70450bf8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مرافق سور لخدمات التشغيل والصيانة</b><br> الرقم الموحد: 7001689731<br> السجل التجاري: 2055014785<br> المنطقة: مدينه الجبيل الصناعيه<br> الحارة: المصانع<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.03246492,49.49882025" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f427db57cf75b6c17931c7303285ac52.setContent(html_c960ea61ede4246d5f81c3fe70450bf8);
marker_f1240d59e88bfb3f80c38a6f55afafbe.bindPopup(popup_f427db57cf75b6c17931c7303285ac52)
;
marker_f1240d59e88bfb3f80c38a6f55afafbe.setIcon(icon_60868ede221eeafebae0cb003ddf81bb);
var marker_d81281b5ddaa54ae575b5c064c2b7bb7 = L.marker(
[27.04726146, 49.51425916],
{
}
).addTo(map_6cb027a3dc202c91ccc7a082caf5a950);
var icon_f7f107550550c84d64458824263d57c6 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_09885c5e652adf2caa20f9d09052340a = L.popup({
"maxWidth": 320,
});
var html_88e98c3cefbb0210c7b98529aa068b00 = $(`<div id="html_88e98c3cefbb0210c7b98529aa068b00" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ليسيجا العربية المحدودة</b><br> الرقم الموحد: 7001782155<br> السجل التجاري: 2055020068<br> المنطقة: مدينه الجبيل الصناعيه<br> الحارة: المصانع<br> <b>اسم الباحث:</b> سارة صالح القحطاني<br> <a href="https://www.google.com/maps?q=27.04726146,49.51425916" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_09885c5e652adf2caa20f9d09052340a.setContent(html_88e98c3cefbb0210c7b98529aa068b00);
marker_d81281b5ddaa54ae575b5c064c2b7bb7.bindPopup(popup_09885c5e652adf2caa20f9d09052340a)
;
marker_d81281b5ddaa54ae575b5c064c2b7bb7.setIcon(icon_f7f107550550c84d64458824263d57c6);
</script>
</html> |