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 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 | <!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_3c5262b89b34aad2f863666ffe158f6a {
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_13" onclick="
var panel = document.getElementById('stats_13');
var btn = document.getElementById('btn_stats_13');
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_13" 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;
">اشواق عبدالكريم الحنطي - 13</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 68</div>
<div><b>عدد الحارات:</b> 10</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• القشلة: 16</div><div>• جامعة الملك فهد للبترول والمعادن: 14</div><div>• الدوحة الجنوبية: 12</div><div>• الراكة الجنوبية: 6</div><div>• القصور: 6</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_13_اشواق_عبدالكريم_الحنطي.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:darkpurple;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>القشلة</span>
</div>
<span style="color:#555;">(16)</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:red;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>جامعة الملك فهد للبترول والمعادن</span>
</div>
<span style="color:#555;">(14)</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;">(12)</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:darkblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الراكة الجنوبية</span>
</div>
<span style="color:#555;">(6)</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:lightgray;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>القصور</span>
</div>
<span style="color:#555;">(6)</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:orange;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الجامعة</span>
</div>
<span style="color:#555;">(6)</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:lightblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الدانة الشمالية</span>
</div>
<span style="color:#555;">(4)</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:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>القاعدة الجوية وارامكو</span>
</div>
<span style="color:#555;">(2)</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:orange;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>ج45</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_3c5262b89b34aad2f863666ffe158f6a" ></div>
</body>
<script>
var map_3c5262b89b34aad2f863666ffe158f6a = L.map(
"map_3c5262b89b34aad2f863666ffe158f6a",
{
center: [26.33252439683902, 50.16174379538503],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_d1427ab45894eeacbc908c1af7838ce3 = 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_d1427ab45894eeacbc908c1af7838ce3.addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var tile_layer_9f2f2d6233b7ecb4d5f9108156ebbf23 = 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_9f2f2d6233b7ecb4d5f9108156ebbf23.addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var tile_layer_60c3fbe2de03b3b7121f4881213088bc = 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_60c3fbe2de03b3b7121f4881213088bc.addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var locate_control_623e0e66a25d7a52a460b613e87c24fa = L.control.locate(
{}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var marker_e3e339fecbda998482b37d083a401256 = L.marker(
[26.2749348417856, 50.0716777703194],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_29b22cce1bd9968632d237296f201eab = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6c831e08b82ef49ff48b6f42b6524948 = L.popup({
"maxWidth": 320,
});
var html_f3f52101bd4acb27fdb1dd5b8f8d956a = $(`<div id="html_f3f52101bd4acb27fdb1dd5b8f8d956a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>اكسيل انترناشيونال انك السعودية للتعليم</b><br> الرقم الموحد: 7006274257<br> السجل التجاري: 2052101652<br> المنطقة: الظهران<br> الحارة: ج45<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.2749348417856,50.0716777703194" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6c831e08b82ef49ff48b6f42b6524948.setContent(html_f3f52101bd4acb27fdb1dd5b8f8d956a);
marker_e3e339fecbda998482b37d083a401256.bindPopup(popup_6c831e08b82ef49ff48b6f42b6524948)
;
marker_e3e339fecbda998482b37d083a401256.setIcon(icon_29b22cce1bd9968632d237296f201eab);
var marker_50149c11f9b9f32911f7b7c4024d060f = L.marker(
[26.30955992, 50.13698488],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_f8d492836a774183e592a26332d38e3c = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_86a525a825a48a0d0f6fccab8fbecce0 = L.popup({
"maxWidth": 320,
});
var html_97163f982cb755fec45ed23cb1883109 = $(`<div id="html_97163f982cb755fec45ed23cb1883109" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جونز هوبكنز أرامكو الرعاية الصحية</b><br> الرقم الموحد: 7001816151<br> السجل التجاري: 2052002388<br> المنطقة: الظهران<br> الحارة: غرب الظهران<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.30955992,50.13698488" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_86a525a825a48a0d0f6fccab8fbecce0.setContent(html_97163f982cb755fec45ed23cb1883109);
marker_50149c11f9b9f32911f7b7c4024d060f.bindPopup(popup_86a525a825a48a0d0f6fccab8fbecce0)
;
marker_50149c11f9b9f32911f7b7c4024d060f.setIcon(icon_f8d492836a774183e592a26332d38e3c);
var marker_a17b1c8d733b1a01c5437713e268de4d = L.marker(
[26.2324612, 50.18526204],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_dbee629437c0e75af5bf1bb9090f20b0 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8d2e192b2536a6cc69f4a57d62be1ea4 = L.popup({
"maxWidth": 320,
});
var html_01f0682712413ffa6cb03d9b0648b5cd = $(`<div id="html_01f0682712413ffa6cb03d9b0648b5cd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الأسطح الناعمة للمقاولات العامة</b><br> الرقم الموحد: 7029998049<br> السجل التجاري: 2051242584<br> المنطقة: الظهران<br> الحارة: القاعدة الجوية وارامكو<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.2324612,50.18526204" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8d2e192b2536a6cc69f4a57d62be1ea4.setContent(html_01f0682712413ffa6cb03d9b0648b5cd);
marker_a17b1c8d733b1a01c5437713e268de4d.bindPopup(popup_8d2e192b2536a6cc69f4a57d62be1ea4)
;
marker_a17b1c8d733b1a01c5437713e268de4d.setIcon(icon_dbee629437c0e75af5bf1bb9090f20b0);
var marker_7e5fb28c66d030c0fe71074c7b470192 = L.marker(
[26.3124373, 50.09391779],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_3f39b18d2011fa0a29ad5e4b6c0ecc3b = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_09b13ec083a41dd0f10e6bc678b8612a = L.popup({
"maxWidth": 320,
});
var html_28a431d965fb61cbffa67d1ac2309933 = $(`<div id="html_28a431d965fb61cbffa67d1ac2309933" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أرامكو السعودية نابورس للحفر</b><br> الرقم الموحد: 7010993751<br> السجل التجاري: 2051064224<br> المنطقة: الظهران<br> الحارة: القاعدة الجوية وارامكو<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3124373,50.09391779" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_09b13ec083a41dd0f10e6bc678b8612a.setContent(html_28a431d965fb61cbffa67d1ac2309933);
marker_7e5fb28c66d030c0fe71074c7b470192.bindPopup(popup_09b13ec083a41dd0f10e6bc678b8612a)
;
marker_7e5fb28c66d030c0fe71074c7b470192.setIcon(icon_3f39b18d2011fa0a29ad5e4b6c0ecc3b);
var marker_999055ca49c782089dd280a8b2e83526 = L.marker(
[26.33609033, 50.12928756],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_e60c7ddec7b91330e15ebb8cc5c1495a = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0882057a1fbe7b45d2600bf371ba6bbb = L.popup({
"maxWidth": 320,
});
var html_cc690537368629d38bd931bd2c3ffe24 = $(`<div id="html_cc690537368629d38bd931bd2c3ffe24" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اتل فلود العربية المحدودة</b><br> الرقم الموحد: 7028994627<br> السجل التجاري: 2052103581<br> المنطقة: الظهران<br> الحارة: الجامعة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.33609033,50.12928756" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0882057a1fbe7b45d2600bf371ba6bbb.setContent(html_cc690537368629d38bd931bd2c3ffe24);
marker_999055ca49c782089dd280a8b2e83526.bindPopup(popup_0882057a1fbe7b45d2600bf371ba6bbb)
;
marker_999055ca49c782089dd280a8b2e83526.setIcon(icon_e60c7ddec7b91330e15ebb8cc5c1495a);
var marker_c8249528bedf13bd12124c9761570b89 = L.marker(
[26.33614214, 50.12937252],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_6cea06f1017894ea9712ed5339246e53 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_51fd9f86f2af5f3ee67a993489505ad8 = L.popup({
"maxWidth": 320,
});
var html_029c7b2f8fd3d42c99972017e650cb63 = $(`<div id="html_029c7b2f8fd3d42c99972017e650cb63" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ايكوديم السعودية للخدمات البيئية</b><br> الرقم الموحد: 7016759503<br> السجل التجاري: 2051229460<br> المنطقة: الظهران<br> الحارة: الجامعة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.33614214,50.12937252" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_51fd9f86f2af5f3ee67a993489505ad8.setContent(html_029c7b2f8fd3d42c99972017e650cb63);
marker_c8249528bedf13bd12124c9761570b89.bindPopup(popup_51fd9f86f2af5f3ee67a993489505ad8)
;
marker_c8249528bedf13bd12124c9761570b89.setIcon(icon_6cea06f1017894ea9712ed5339246e53);
var marker_1d9ba8e19fa7b55e58fc77586d062442 = L.marker(
[26.33617801940238, 50.12927329167724],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_cbd4bb218e76c6c74ba1c26467ee0d6f = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_91f0b32f1aefb0b2882c29c77ead37da = L.popup({
"maxWidth": 320,
});
var html_e16f590965e4e57f0a079fc4ded1e835 = $(`<div id="html_e16f590965e4e57f0a079fc4ded1e835" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>جوتور اليكترونيك العربية المحدودة</b><br> الرقم الموحد: 7036454499<br> السجل التجاري: 2051248534<br> المنطقة: الظهران<br> الحارة: الجامعة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.33617801940238,50.12927329167724" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_91f0b32f1aefb0b2882c29c77ead37da.setContent(html_e16f590965e4e57f0a079fc4ded1e835);
marker_1d9ba8e19fa7b55e58fc77586d062442.bindPopup(popup_91f0b32f1aefb0b2882c29c77ead37da)
;
marker_1d9ba8e19fa7b55e58fc77586d062442.setIcon(icon_cbd4bb218e76c6c74ba1c26467ee0d6f);
var marker_dde583e610c4d78a3bbb18d721683399 = L.marker(
[26.33625382, 50.12948682],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_6217472a7ef37e8a8a3e36c6fa0a8252 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c4648005dc8119f443e7d641b0b4174c = L.popup({
"maxWidth": 320,
});
var html_f74c72a2d180adc4eb8d221af9ee4ff7 = $(`<div id="html_f74c72a2d180adc4eb8d221af9ee4ff7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الخالدي بيرتلينغ للامدادات</b><br> الرقم الموحد: 7009175931<br> السجل التجاري: 2051232870<br> المنطقة: الظهران<br> الحارة: الجامعة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.33625382,50.12948682" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c4648005dc8119f443e7d641b0b4174c.setContent(html_f74c72a2d180adc4eb8d221af9ee4ff7);
marker_dde583e610c4d78a3bbb18d721683399.bindPopup(popup_c4648005dc8119f443e7d641b0b4174c)
;
marker_dde583e610c4d78a3bbb18d721683399.setIcon(icon_6217472a7ef37e8a8a3e36c6fa0a8252);
var marker_1c89fbfd692c829dab10eedaa62b96f6 = L.marker(
[26.3447992031911, 50.1384625303554],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_afcfa2d8a333d059cde2b1cc2a79f28e = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f0d1b878f6714f34b2e3fbd395e33a53 = L.popup({
"maxWidth": 320,
});
var html_e21d0faa0848055a149d2922803b9379 = $(`<div id="html_e21d0faa0848055a149d2922803b9379" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أنا وأنتم للتجارة</b><br> الرقم الموحد: 7014614411<br> السجل التجاري: 2052002840<br> المنطقة: الظهران<br> الحارة: الجامعة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3447992031911,50.1384625303554" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f0d1b878f6714f34b2e3fbd395e33a53.setContent(html_e21d0faa0848055a149d2922803b9379);
marker_1c89fbfd692c829dab10eedaa62b96f6.bindPopup(popup_f0d1b878f6714f34b2e3fbd395e33a53)
;
marker_1c89fbfd692c829dab10eedaa62b96f6.setIcon(icon_afcfa2d8a333d059cde2b1cc2a79f28e);
var marker_fe1ae0d43fc5d7db9c46582137cefba0 = L.marker(
[26.3482775707307, 50.1349099761091],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_918aaa6ddb78d15edab0a79f72577c3d = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d7c2c8c75d7636b1c059f408bb502091 = L.popup({
"maxWidth": 320,
});
var html_e2715a3cc29ef48270030ac608ef90a8 = $(`<div id="html_e2715a3cc29ef48270030ac608ef90a8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عالم المتفوق التجارية</b><br> الرقم الموحد: 7012904558<br> السجل التجاري: 2050089275<br> المنطقة: الظهران<br> الحارة: الجامعة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3482775707307,50.1349099761091" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d7c2c8c75d7636b1c059f408bb502091.setContent(html_e2715a3cc29ef48270030ac608ef90a8);
marker_fe1ae0d43fc5d7db9c46582137cefba0.bindPopup(popup_d7c2c8c75d7636b1c059f408bb502091)
;
marker_fe1ae0d43fc5d7db9c46582137cefba0.setIcon(icon_918aaa6ddb78d15edab0a79f72577c3d);
var marker_612069d4f61240f13d1eb325a2fb070c = L.marker(
[26.33063514436938, 50.13947876170278],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_4673eae551d0daf7e0e8fd138c79a793 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_843d4133da2500f29c1f4a1a379d966a = L.popup({
"maxWidth": 320,
});
var html_f8af0c248ab45898a0bf70ceb8dafeba = $(`<div id="html_f8af0c248ab45898a0bf70ceb8dafeba" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>كينيرا اينيرجي سولوشنز الشرق الأوسط</b><br> الرقم الموحد: 7029759367<br> السجل التجاري: 2052103643<br> المنطقة: الظهران<br> الحارة: الدانة الشمالية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.33063514436938,50.13947876170278" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_843d4133da2500f29c1f4a1a379d966a.setContent(html_f8af0c248ab45898a0bf70ceb8dafeba);
marker_612069d4f61240f13d1eb325a2fb070c.bindPopup(popup_843d4133da2500f29c1f4a1a379d966a)
;
marker_612069d4f61240f13d1eb325a2fb070c.setIcon(icon_4673eae551d0daf7e0e8fd138c79a793);
var marker_d1c063491cd8e7b0d8861d38948e6578 = L.marker(
[26.3307861262816, 50.1394857701575],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_5cfbd0d9ed432c4281b871c7f5a0730e = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4bcea0ec1298ca9baaf3372e36c15dd2 = L.popup({
"maxWidth": 320,
});
var html_0b5c2a5a78b8d6fd93467a55690acb38 = $(`<div id="html_0b5c2a5a78b8d6fd93467a55690acb38" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كي سي أي ديتوغ الخليج للحفرالمحدودة</b><br> الرقم الموحد: 7004524224<br> السجل التجاري: 2052101330<br> المنطقة: الظهران<br> الحارة: الدانة الشمالية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3307861262816,50.1394857701575" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4bcea0ec1298ca9baaf3372e36c15dd2.setContent(html_0b5c2a5a78b8d6fd93467a55690acb38);
marker_d1c063491cd8e7b0d8861d38948e6578.bindPopup(popup_4bcea0ec1298ca9baaf3372e36c15dd2)
;
marker_d1c063491cd8e7b0d8861d38948e6578.setIcon(icon_5cfbd0d9ed432c4281b871c7f5a0730e);
var marker_fcbd7455973cb7b2fe3b3a3a4dd45310 = L.marker(
[26.33122177, 50.13875483],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_185512cdb08a7e77cb4ea01c12364f6a = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f870c9e684ddd66f83cdb844cae10226 = L.popup({
"maxWidth": 320,
});
var html_f62e3ae9d55dcc217f4b1667af3c69e8 = $(`<div id="html_f62e3ae9d55dcc217f4b1667af3c69e8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كات انترناشنال المحدودة</b><br> الرقم الموحد: 7001501621<br> السجل التجاري: 2052002989<br> المنطقة: الظهران<br> الحارة: الدانة الشمالية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.33122177,50.13875483" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f870c9e684ddd66f83cdb844cae10226.setContent(html_f62e3ae9d55dcc217f4b1667af3c69e8);
marker_fcbd7455973cb7b2fe3b3a3a4dd45310.bindPopup(popup_f870c9e684ddd66f83cdb844cae10226)
;
marker_fcbd7455973cb7b2fe3b3a3a4dd45310.setIcon(icon_185512cdb08a7e77cb4ea01c12364f6a);
var marker_1782375a1c2450901f76b1cc965cc8d4 = L.marker(
[26.3340961481894, 50.1341887233482],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_e42cc0ca828428bcc245ff88b4a08935 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3b697aac2c31f049375abbfbf9a13aa1 = L.popup({
"maxWidth": 320,
});
var html_9b42e45117907bb0fc2cc2f8b3fc8a3a = $(`<div id="html_9b42e45117907bb0fc2cc2f8b3fc8a3a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بي جي بي العربية المحدودة</b><br> الرقم الموحد: 7001397392<br> السجل التجاري: 2051023310<br> المنطقة: الظهران<br> الحارة: الدانة الشمالية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3340961481894,50.1341887233482" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3b697aac2c31f049375abbfbf9a13aa1.setContent(html_9b42e45117907bb0fc2cc2f8b3fc8a3a);
marker_1782375a1c2450901f76b1cc965cc8d4.bindPopup(popup_3b697aac2c31f049375abbfbf9a13aa1)
;
marker_1782375a1c2450901f76b1cc965cc8d4.setIcon(icon_e42cc0ca828428bcc245ff88b4a08935);
var marker_fff6423c63d16a143ff02dd6be308bb5 = L.marker(
[26.33894086580488, 50.15303845202291],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_4bbfd081c768e15c2f02eb8978f1da0a = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_459bd854952b9323687da173c5fd7d53 = L.popup({
"maxWidth": 320,
});
var html_3b7f5ac7adce4c5ef808c3b77fe579af = $(`<div id="html_3b7f5ac7adce4c5ef808c3b77fe579af" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الحلم الدولية القابضة</b><br> الرقم الموحد: 7043162952<br> السجل التجاري: 2052105048<br> المنطقة: الظهران<br> الحارة: القصور<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.33894086580488,50.15303845202291" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_459bd854952b9323687da173c5fd7d53.setContent(html_3b7f5ac7adce4c5ef808c3b77fe579af);
marker_fff6423c63d16a143ff02dd6be308bb5.bindPopup(popup_459bd854952b9323687da173c5fd7d53)
;
marker_fff6423c63d16a143ff02dd6be308bb5.setIcon(icon_4bbfd081c768e15c2f02eb8978f1da0a);
var marker_875e838380455377e1a2a180f02f5d79 = L.marker(
[26.3406212390958, 50.1524578766393],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_7175b9eeba5211b8ee5ee9f57c0ad1e2 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2a8f3e01aef3da5a297e13e0aab08efe = L.popup({
"maxWidth": 320,
});
var html_91d4431852cae82684ea46d7b65629eb = $(`<div id="html_91d4431852cae82684ea46d7b65629eb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دنى البساتين التجارية</b><br> الرقم الموحد: 7006252311<br> السجل التجاري: 2052101647<br> المنطقة: الظهران<br> الحارة: القصور<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3406212390958,50.1524578766393" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2a8f3e01aef3da5a297e13e0aab08efe.setContent(html_91d4431852cae82684ea46d7b65629eb);
marker_875e838380455377e1a2a180f02f5d79.bindPopup(popup_2a8f3e01aef3da5a297e13e0aab08efe)
;
marker_875e838380455377e1a2a180f02f5d79.setIcon(icon_7175b9eeba5211b8ee5ee9f57c0ad1e2);
var marker_e0ab3979d7227b20ee7cec9ce450762b = L.marker(
[26.3452020308007, 50.1463289099031],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_1c537a1dfaa383652a26cc899e895acc = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0abde1acf2d0a00eff4ca9e0e9405a50 = L.popup({
"maxWidth": 320,
});
var html_ee9f2b123ac3bf0eac2153696cbc689a = $(`<div id="html_ee9f2b123ac3bf0eac2153696cbc689a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة البستان المائي الزراعية</b><br> الرقم الموحد: 7001986418<br> السجل التجاري: 2051219688<br> المنطقة: الظهران<br> الحارة: القصور<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3452020308007,50.1463289099031" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0abde1acf2d0a00eff4ca9e0e9405a50.setContent(html_ee9f2b123ac3bf0eac2153696cbc689a);
marker_e0ab3979d7227b20ee7cec9ce450762b.bindPopup(popup_0abde1acf2d0a00eff4ca9e0e9405a50)
;
marker_e0ab3979d7227b20ee7cec9ce450762b.setIcon(icon_1c537a1dfaa383652a26cc899e895acc);
var marker_ba54fc6aed00d9fe621b6f6ce7c733ee = L.marker(
[26.34544061, 50.14631214],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_57948db118bb190f6fe902aa4b303ffe = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8d38edb335a1b7204c7f815284e230fd = L.popup({
"maxWidth": 320,
});
var html_da551613da2d6ec5acccb39afd3aca16 = $(`<div id="html_da551613da2d6ec5acccb39afd3aca16" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة إيبلس للخدمات الصناعية</b><br> الرقم الموحد: 7003756249<br> السجل التجاري: 2052002978<br> المنطقة: الظهران<br> الحارة: القصور<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.34544061,50.14631214" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8d38edb335a1b7204c7f815284e230fd.setContent(html_da551613da2d6ec5acccb39afd3aca16);
marker_ba54fc6aed00d9fe621b6f6ce7c733ee.bindPopup(popup_8d38edb335a1b7204c7f815284e230fd)
;
marker_ba54fc6aed00d9fe621b6f6ce7c733ee.setIcon(icon_57948db118bb190f6fe902aa4b303ffe);
var marker_4ab081e86deed9ce418f5ecac5a0b0d6 = L.marker(
[26.34829831, 50.14402794],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_93f1b0ac57359ef2f9b11ddd190a106d = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b694ab3c7361d7269b1ac2ead7f4d863 = L.popup({
"maxWidth": 320,
});
var html_ea5048cd714415ea65337f497c5cedc0 = $(`<div id="html_ea5048cd714415ea65337f497c5cedc0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مجموعة زاد للعقارات</b><br> الرقم الموحد: 7011933442<br> السجل التجاري: 2051030298<br> المنطقة: الظهران<br> الحارة: القصور<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.34829831,50.14402794" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b694ab3c7361d7269b1ac2ead7f4d863.setContent(html_ea5048cd714415ea65337f497c5cedc0);
marker_4ab081e86deed9ce418f5ecac5a0b0d6.bindPopup(popup_b694ab3c7361d7269b1ac2ead7f4d863)
;
marker_4ab081e86deed9ce418f5ecac5a0b0d6.setIcon(icon_93f1b0ac57359ef2f9b11ddd190a106d);
var marker_2132aab8aab1eceabe696fd5bbc3f256 = L.marker(
[26.35230549265958, 50.15417467267963],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_8fce247eff279bda703f525d7451c96b = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3460eae9563053fdd666acd4790467e7 = L.popup({
"maxWidth": 320,
});
var html_6fdbcb424ca16b66b925ab829600998a = $(`<div id="html_6fdbcb424ca16b66b925ab829600998a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مدرسة مدارز الدولية للتعليم</b><br> الرقم الموحد: 7042439724<br> السجل التجاري: 2051260618<br> المنطقة: الظهران<br> الحارة: القصور<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.35230549265958,50.15417467267963" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3460eae9563053fdd666acd4790467e7.setContent(html_6fdbcb424ca16b66b925ab829600998a);
marker_2132aab8aab1eceabe696fd5bbc3f256.bindPopup(popup_3460eae9563053fdd666acd4790467e7)
;
marker_2132aab8aab1eceabe696fd5bbc3f256.setIcon(icon_8fce247eff279bda703f525d7451c96b);
var marker_6d3f23162854447bc6047f81e20ad647 = L.marker(
[26.29465016, 50.15829936],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_889dfcb47c462a93651b7a8f2215324f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5a4b92352581527f0b58b2043821e871 = L.popup({
"maxWidth": 320,
});
var html_a3e75ce80b996de215a910dfd1fb5729 = $(`<div id="html_a3e75ce80b996de215a910dfd1fb5729" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة شنايدر الكتريك سيستمس العربية</b><br> الرقم الموحد: 7001537351<br> السجل التجاري: 2050057046<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.29465016,50.15829936" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5a4b92352581527f0b58b2043821e871.setContent(html_a3e75ce80b996de215a910dfd1fb5729);
marker_6d3f23162854447bc6047f81e20ad647.bindPopup(popup_5a4b92352581527f0b58b2043821e871)
;
marker_6d3f23162854447bc6047f81e20ad647.setIcon(icon_889dfcb47c462a93651b7a8f2215324f);
var marker_0f7c880cfad43c49c8bb08d9a09544f0 = L.marker(
[26.2952304249077, 50.1591915776747],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_548a30ea66dd3f2d8895cba048a2fd58 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ff5e61eed761f35f670efbbfa75756d0 = L.popup({
"maxWidth": 320,
});
var html_e245ddaa95db2d1d65c283da37340792 = $(`<div id="html_e245ddaa95db2d1d65c283da37340792" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>ايمرسون العربية السعودية</b><br> الرقم الموحد: 7007911550<br> السجل التجاري: 2052003125<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.2952304249077,50.1591915776747" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ff5e61eed761f35f670efbbfa75756d0.setContent(html_e245ddaa95db2d1d65c283da37340792);
marker_0f7c880cfad43c49c8bb08d9a09544f0.bindPopup(popup_ff5e61eed761f35f670efbbfa75756d0)
;
marker_0f7c880cfad43c49c8bb08d9a09544f0.setIcon(icon_548a30ea66dd3f2d8895cba048a2fd58);
var marker_ed93e6fff0f89a54115f749d3adc6d52 = L.marker(
[26.2960584197857, 50.1582778803004],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_70258bc9e43c92c5ec4c8e46cd22214a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7df5b19d998f4300f8ea654e22f44246 = L.popup({
"maxWidth": 320,
});
var html_ae876030bb0cadfce49d6e0c7889b29b = $(`<div id="html_ae876030bb0cadfce49d6e0c7889b29b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة يوكوجاوا للخدمات العربية السعودية</b><br> الرقم الموحد: 7001664304<br> السجل التجاري: 2052001720<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.2959984197857,50.1582778803004" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7df5b19d998f4300f8ea654e22f44246.setContent(html_ae876030bb0cadfce49d6e0c7889b29b);
marker_ed93e6fff0f89a54115f749d3adc6d52.bindPopup(popup_7df5b19d998f4300f8ea654e22f44246)
;
marker_ed93e6fff0f89a54115f749d3adc6d52.setIcon(icon_70258bc9e43c92c5ec4c8e46cd22214a);
var marker_4f7c80215fddae974dd73e7c82afcbe1 = L.marker(
[26.2959384197857, 50.1582778803004],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_55d3416f95196ef973da730ce0f1a6da = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fcf36ba94497561889026598841dce70 = L.popup({
"maxWidth": 320,
});
var html_24732448ae5f029e8d27d9227196154f = $(`<div id="html_24732448ae5f029e8d27d9227196154f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة يوكوجاوا العربية السعودية</b><br> الرقم الموحد: 7001644546<br> السجل التجاري: 2052001656<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.2959984197857,50.1582778803004" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fcf36ba94497561889026598841dce70.setContent(html_24732448ae5f029e8d27d9227196154f);
marker_4f7c80215fddae974dd73e7c82afcbe1.bindPopup(popup_fcf36ba94497561889026598841dce70)
;
marker_4f7c80215fddae974dd73e7c82afcbe1.setIcon(icon_55d3416f95196ef973da730ce0f1a6da);
var marker_509d1891fbc3f9d509d5b8e569032cf0 = L.marker(
[26.29599842, 50.15827788],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_ae6346e094c5793602894fa3b6472eb2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_45c65538314771d101ed4abf5bac88a7 = L.popup({
"maxWidth": 320,
});
var html_cf2e539be58fd1accd2623fc92fb76f0 = $(`<div id="html_cf2e539be58fd1accd2623fc92fb76f0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة صينوبك الشرق الاوسط للتكنولوجيا</b><br> الرقم الموحد: 7002793946<br> السجل التجاري: 2052101152<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.29599842,50.15827788" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_45c65538314771d101ed4abf5bac88a7.setContent(html_cf2e539be58fd1accd2623fc92fb76f0);
marker_509d1891fbc3f9d509d5b8e569032cf0.bindPopup(popup_45c65538314771d101ed4abf5bac88a7)
;
marker_509d1891fbc3f9d509d5b8e569032cf0.setIcon(icon_ae6346e094c5793602894fa3b6472eb2);
var marker_932c105009aae5572692c3fd09ec6855 = L.marker(
[26.29644442, 50.16061518],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_4a7269ff7185121e1a8de86b0a9f354d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_14bfbdfa6a162e592ac8f1bd87f4f839 = L.popup({
"maxWidth": 320,
});
var html_5309975b9dfca27d156da7304d1ed78c = $(`<div id="html_5309975b9dfca27d156da7304d1ed78c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اير برودكتس الشرق الأوسط للغازات</b><br> الرقم الموحد: 7002715402<br> السجل التجاري: 2052101133<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.29644442,50.16061518" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_14bfbdfa6a162e592ac8f1bd87f4f839.setContent(html_5309975b9dfca27d156da7304d1ed78c);
marker_932c105009aae5572692c3fd09ec6855.bindPopup(popup_14bfbdfa6a162e592ac8f1bd87f4f839)
;
marker_932c105009aae5572692c3fd09ec6855.setIcon(icon_4a7269ff7185121e1a8de86b0a9f354d);
var marker_a8024dbf679d104083854a53b4cb013e = L.marker(
[26.2964446243915, 50.1606148116995],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_a54228c5b99efe68b094e3d342758b2d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e3384d06ba96b676d0187b61eb4e853d = L.popup({
"maxWidth": 320,
});
var html_93f7364b2d13038e23090856c314ef92 = $(`<div id="html_93f7364b2d13038e23090856c314ef92" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نوفو بيجوني انترناشيونال اس ارال</b><br> الرقم الموحد: 7001759906<br> السجل التجاري: 2050089435<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.2964446243915,50.1606148116995" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e3384d06ba96b676d0187b61eb4e853d.setContent(html_93f7364b2d13038e23090856c314ef92);
marker_a8024dbf679d104083854a53b4cb013e.bindPopup(popup_e3384d06ba96b676d0187b61eb4e853d)
;
marker_a8024dbf679d104083854a53b4cb013e.setIcon(icon_a54228c5b99efe68b094e3d342758b2d);
var marker_dbfe07e0edb88ebb952182dbcb267eb9 = L.marker(
[26.2965987633888, 50.15940726336],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_5a67baa974388da32f9f5a7f388e424e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0e3548fe0e78fe70d90c2de939bef71a = L.popup({
"maxWidth": 320,
});
var html_70bca7a078ade8b4e23598e7e50d8da9 = $(`<div id="html_70bca7a078ade8b4e23598e7e50d8da9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة روزن العربية السعودية</b><br> الرقم الموحد: 7001563571<br> السجل التجاري: 2052002302<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.2965987633888,50.15940726336" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0e3548fe0e78fe70d90c2de939bef71a.setContent(html_70bca7a078ade8b4e23598e7e50d8da9);
marker_dbfe07e0edb88ebb952182dbcb267eb9.bindPopup(popup_0e3548fe0e78fe70d90c2de939bef71a)
;
marker_dbfe07e0edb88ebb952182dbcb267eb9.setIcon(icon_5a67baa974388da32f9f5a7f388e424e);
var marker_a4999b7b2db32312c6b2d5ed70a1087a = L.marker(
[26.2988019, 50.1608896],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_18c4db8501a352a0de0d5176236782fd = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d9c175552c630543bb65c184fc2dbd8f = L.popup({
"maxWidth": 320,
});
var html_8aad0db7aa04249cddd39732b27c09fa = $(`<div id="html_8aad0db7aa04249cddd39732b27c09fa" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة العالية للبوليمرات</b><br> الرقم الموحد: 7001594386<br> السجل التجاري: 2055010529<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.2988019,50.1608896" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d9c175552c630543bb65c184fc2dbd8f.setContent(html_8aad0db7aa04249cddd39732b27c09fa);
marker_a4999b7b2db32312c6b2d5ed70a1087a.bindPopup(popup_d9c175552c630543bb65c184fc2dbd8f)
;
marker_a4999b7b2db32312c6b2d5ed70a1087a.setIcon(icon_18c4db8501a352a0de0d5176236782fd);
var marker_4125b6881cb2e5bcb0035eb7cf8d8b13 = L.marker(
[26.29922733, 50.15879811],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_6ab5626e6159432a6a541dd3f060dac5 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_371f0594934fb70df2ae2d403005fcce = L.popup({
"maxWidth": 320,
});
var html_eca0ad6e3a00df13964a32ace32ee5f7 = $(`<div id="html_eca0ad6e3a00df13964a32ace32ee5f7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بيكر هيوز العربية السعودية</b><br> الرقم الموحد: 7000218375<br> السجل التجاري: 2051005207<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.29922733,50.15879811" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_371f0594934fb70df2ae2d403005fcce.setContent(html_eca0ad6e3a00df13964a32ace32ee5f7);
marker_4125b6881cb2e5bcb0035eb7cf8d8b13.bindPopup(popup_371f0594934fb70df2ae2d403005fcce)
;
marker_4125b6881cb2e5bcb0035eb7cf8d8b13.setIcon(icon_6ab5626e6159432a6a541dd3f060dac5);
var marker_5da76f8449419f474989c13953d21c00 = L.marker(
[26.2992273319779, 50.1587981112697],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_99387234467532db5053d0db8c0d6b7b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e51947ee9d35285bf187edeb173be844 = L.popup({
"maxWidth": 320,
});
var html_4fc95b64e5d97c461198991b15ae01cd = $(`<div id="html_4fc95b64e5d97c461198991b15ae01cd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بيكر هيوز العربية السعودية للتشغيل</b><br> الرقم الموحد: 7001434989<br> السجل التجاري: 2051026397<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.2992273319779,50.1587981112697" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e51947ee9d35285bf187edeb173be844.setContent(html_4fc95b64e5d97c461198991b15ae01cd);
marker_5da76f8449419f474989c13953d21c00.bindPopup(popup_e51947ee9d35285bf187edeb173be844)
;
marker_5da76f8449419f474989c13953d21c00.setIcon(icon_99387234467532db5053d0db8c0d6b7b);
var marker_e831e045b876b4693e85197c60629d57 = L.marker(
[26.29932204, 50.15992345],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_9e927a70c0476d5eb071311605961d34 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bb2fec7927e9212ab1e418972516e592 = L.popup({
"maxWidth": 320,
});
var html_4c7aa7da424c5e823ef6c14f3b51a106 = $(`<div id="html_4c7aa7da424c5e823ef6c14f3b51a106" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة هوني ويل التركي العربية</b><br> الرقم الموحد: 7000348701<br> السجل التجاري: 2052001957<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.29932204,50.15992345" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bb2fec7927e9212ab1e418972516e592.setContent(html_4c7aa7da424c5e823ef6c14f3b51a106);
marker_e831e045b876b4693e85197c60629d57.bindPopup(popup_bb2fec7927e9212ab1e418972516e592)
;
marker_e831e045b876b4693e85197c60629d57.setIcon(icon_9e927a70c0476d5eb071311605961d34);
var marker_4bc5e6adeb23be07b86bd4c142cb819d = L.marker(
[26.3016598039055, 50.1522194549326],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_24dc5965202124902cd56307b956f78a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_082dd7e1391fb0934a63822b91d60914 = L.popup({
"maxWidth": 320,
});
var html_dcc9ba964fff12345550bef46f466d63 = $(`<div id="html_dcc9ba964fff12345550bef46f466d63" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة فلو بترول سيرفسيز انك المحدودة</b><br> الرقم الموحد: 7001368161<br> السجل التجاري: 2051005240<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3015998039055,50.1522194549326" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_082dd7e1391fb0934a63822b91d60914.setContent(html_dcc9ba964fff12345550bef46f466d63);
marker_4bc5e6adeb23be07b86bd4c142cb819d.bindPopup(popup_082dd7e1391fb0934a63822b91d60914)
;
marker_4bc5e6adeb23be07b86bd4c142cb819d.setIcon(icon_24dc5965202124902cd56307b956f78a);
var marker_552473fa710deee33e85a41bbd8c78f6 = L.marker(
[26.3015398039055, 50.1522194549326],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_31fd3357e56bee4af8d8ce3937f05210 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_45f1263cfdc559d1aed10cb501d7c8f5 = L.popup({
"maxWidth": 320,
});
var html_b86c90cee1247d209526ba0ec37fff78 = $(`<div id="html_b86c90cee1247d209526ba0ec37fff78" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جيوسيرفيسزالعربية المحدودة</b><br> الرقم الموحد: 7001525554<br> السجل التجاري: 2051034891<br> المنطقة: الظهران<br> الحارة: جامعة الملك فهد للبترول والمعادن<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3015998039055,50.1522194549326" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_45f1263cfdc559d1aed10cb501d7c8f5.setContent(html_b86c90cee1247d209526ba0ec37fff78);
marker_552473fa710deee33e85a41bbd8c78f6.bindPopup(popup_45f1263cfdc559d1aed10cb501d7c8f5)
;
marker_552473fa710deee33e85a41bbd8c78f6.setIcon(icon_31fd3357e56bee4af8d8ce3937f05210);
var marker_26486fc601b091d350eb9ac5e091747c = L.marker(
[26.3059209, 50.17089146],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_2b5ad89393d101939d3bec8777cd54cf = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3f4f46b1bf4fe811b9d00f003c2bc3aa = L.popup({
"maxWidth": 320,
});
var html_df4ffc37f03c107db6da7b5b0b4b3359 = $(`<div id="html_df4ffc37f03c107db6da7b5b0b4b3359" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جيكاي المتقدمة للتجارة</b><br> الرقم الموحد: 7028908270<br> السجل التجاري: 2050165726<br> المنطقة: الظهران<br> الحارة: الدوحة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3059209,50.17089146" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3f4f46b1bf4fe811b9d00f003c2bc3aa.setContent(html_df4ffc37f03c107db6da7b5b0b4b3359);
marker_26486fc601b091d350eb9ac5e091747c.bindPopup(popup_3f4f46b1bf4fe811b9d00f003c2bc3aa)
;
marker_26486fc601b091d350eb9ac5e091747c.setIcon(icon_2b5ad89393d101939d3bec8777cd54cf);
var marker_1e168140f064a58056fe2fedf517bf3d = L.marker(
[26.30642322, 50.1712695],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_bd156bc9c31023a6baadad4cf6c6776e = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cdf6a20e8e1b679c499db5473f919a44 = L.popup({
"maxWidth": 320,
});
var html_d18367f0b02e696e3a216a3ddbcc3a90 = $(`<div id="html_d18367f0b02e696e3a216a3ddbcc3a90" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اليسره التجاريه المحدوده</b><br> الرقم الموحد: 7001549562<br> السجل التجاري: 1010240151<br> المنطقة: الظهران<br> الحارة: الدوحة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.30642322,50.1712695" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cdf6a20e8e1b679c499db5473f919a44.setContent(html_d18367f0b02e696e3a216a3ddbcc3a90);
marker_1e168140f064a58056fe2fedf517bf3d.bindPopup(popup_cdf6a20e8e1b679c499db5473f919a44)
;
marker_1e168140f064a58056fe2fedf517bf3d.setIcon(icon_bd156bc9c31023a6baadad4cf6c6776e);
var marker_010a2d742556a497ec6cb3361dc8d3cc = L.marker(
[26.30821362, 50.16241756],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_0457038c368243f0942d60313b27f65d = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9bf56fa61e71bf8ddc169af373e2719a = L.popup({
"maxWidth": 320,
});
var html_28a5a3cc12653e08cf651f256bf507e2 = $(`<div id="html_28a5a3cc12653e08cf651f256bf507e2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة العالمية للصناعات البحرية</b><br> الرقم الموحد: 7007956738<br> السجل التجاري: 2051065250<br> المنطقة: الظهران<br> الحارة: الدوحة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.30821362,50.16241756" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9bf56fa61e71bf8ddc169af373e2719a.setContent(html_28a5a3cc12653e08cf651f256bf507e2);
marker_010a2d742556a497ec6cb3361dc8d3cc.bindPopup(popup_9bf56fa61e71bf8ddc169af373e2719a)
;
marker_010a2d742556a497ec6cb3361dc8d3cc.setIcon(icon_0457038c368243f0942d60313b27f65d);
var marker_c769da1d1171443032a82e105cc3e069 = L.marker(
[26.30943189, 50.17541935],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_bd0ecdd7882cd19285956b472d972525 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8539a82787a49c98724bbc77e7c2a704 = L.popup({
"maxWidth": 320,
});
var html_b88708552c6a0f9b07e5db6bd4861deb = $(`<div id="html_b88708552c6a0f9b07e5db6bd4861deb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة السعودية لصناعة المحركات</b><br> الرقم الموحد: 7009159653<br> السجل التجاري: 2055129126<br> المنطقة: الظهران<br> الحارة: الدوحة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.30943189,50.17541935" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8539a82787a49c98724bbc77e7c2a704.setContent(html_b88708552c6a0f9b07e5db6bd4861deb);
marker_c769da1d1171443032a82e105cc3e069.bindPopup(popup_8539a82787a49c98724bbc77e7c2a704)
;
marker_c769da1d1171443032a82e105cc3e069.setIcon(icon_bd0ecdd7882cd19285956b472d972525);
var marker_31d1f539074a2afa3266c5da759d9af0 = L.marker(
[26.309431893102, 50.1754193484389],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_6b623f14f8f15149b6bc658b27b4052b = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9d541470f42275af561878cdd05d0c8a = L.popup({
"maxWidth": 320,
});
var html_08a107f97c43fc04016118070d035878 = $(`<div id="html_08a107f97c43fc04016118070d035878" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نوفل الحلول غير المعدنية</b><br> الرقم الموحد: 7008363892<br> السجل التجاري: 2050138826<br> المنطقة: الظهران<br> الحارة: الدوحة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.309431893102,50.1754193484389" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9d541470f42275af561878cdd05d0c8a.setContent(html_08a107f97c43fc04016118070d035878);
marker_31d1f539074a2afa3266c5da759d9af0.bindPopup(popup_9d541470f42275af561878cdd05d0c8a)
;
marker_31d1f539074a2afa3266c5da759d9af0.setIcon(icon_6b623f14f8f15149b6bc658b27b4052b);
var marker_e61e93794cbe94100d88898f68308633 = L.marker(
[26.30969238, 50.17572022],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_c985514347c5eea17c2f2d38a77ddcd6 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7e2cea7acf7722a72e1f1243ae37e319 = L.popup({
"maxWidth": 320,
});
var html_6e29b39cab475b8613eda442ae8cd1b2 = $(`<div id="html_6e29b39cab475b8613eda442ae8cd1b2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بال السعودية الدولية المحدودة</b><br> الرقم الموحد: 7001745509<br> السجل التجاري: 2051051252<br> المنطقة: الظهران<br> الحارة: الدوحة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.30969238,50.17572022" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7e2cea7acf7722a72e1f1243ae37e319.setContent(html_6e29b39cab475b8613eda442ae8cd1b2);
marker_e61e93794cbe94100d88898f68308633.bindPopup(popup_7e2cea7acf7722a72e1f1243ae37e319)
;
marker_e61e93794cbe94100d88898f68308633.setIcon(icon_c985514347c5eea17c2f2d38a77ddcd6);
var marker_f145ada3344fc0eb23de0958aff67f04 = L.marker(
[26.32250319, 50.15558788],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_b759c893cbfabfc7201b3be10a44d346 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bdfc2d08cfaaeea69d117c885912bede = L.popup({
"maxWidth": 320,
});
var html_766b47a36166e7174a3193d8e348cf98 = $(`<div id="html_766b47a36166e7174a3193d8e348cf98" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة برج التوت للعصيرات</b><br> الرقم الموحد: 7006693431<br> السجل التجاري: 2051162187<br> المنطقة: الظهران<br> الحارة: الدوحة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.32250319,50.15558788" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bdfc2d08cfaaeea69d117c885912bede.setContent(html_766b47a36166e7174a3193d8e348cf98);
marker_f145ada3344fc0eb23de0958aff67f04.bindPopup(popup_bdfc2d08cfaaeea69d117c885912bede)
;
marker_f145ada3344fc0eb23de0958aff67f04.setIcon(icon_b759c893cbfabfc7201b3be10a44d346);
var marker_4acee3db696899b35739a7e5ca974a96 = L.marker(
[26.3226856195098, 50.1567737225877],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_39328a60b1bfc0c2d8ad13b7c211e1d2 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2b0a5e6f0d2cc18a28aa343ba74aa448 = L.popup({
"maxWidth": 320,
});
var html_8cb7cd5d313683aa11ee7ce150117a30 = $(`<div id="html_8cb7cd5d313683aa11ee7ce150117a30" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة حكماء الغد للتدريب</b><br> الرقم الموحد: 7011523516<br> السجل التجاري: 2051043239<br> المنطقة: الظهران<br> الحارة: الدوحة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3226856195098,50.1567737225877" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2b0a5e6f0d2cc18a28aa343ba74aa448.setContent(html_8cb7cd5d313683aa11ee7ce150117a30);
marker_4acee3db696899b35739a7e5ca974a96.bindPopup(popup_2b0a5e6f0d2cc18a28aa343ba74aa448)
;
marker_4acee3db696899b35739a7e5ca974a96.setIcon(icon_39328a60b1bfc0c2d8ad13b7c211e1d2);
var marker_1123309598ea7efc9d05287a49b1f69d = L.marker(
[26.3274070860261, 50.1773116908678],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_c0fe4804daec175b875b3853c1e4107e = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6502874eddc8f4891f65b7af5160f106 = L.popup({
"maxWidth": 320,
});
var html_764c567281108b60820a727c6ac8a9e4 = $(`<div id="html_764c567281108b60820a727c6ac8a9e4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة انترناشيونال انيرجي سيرفسز السعودية</b><br> الرقم الموحد: 7016296704<br> السجل التجاري: 2052102045<br> المنطقة: الظهران<br> الحارة: الدوحة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3274070860261,50.1773116908678" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6502874eddc8f4891f65b7af5160f106.setContent(html_764c567281108b60820a727c6ac8a9e4);
marker_1123309598ea7efc9d05287a49b1f69d.bindPopup(popup_6502874eddc8f4891f65b7af5160f106)
;
marker_1123309598ea7efc9d05287a49b1f69d.setIcon(icon_c0fe4804daec175b875b3853c1e4107e);
var marker_175f9aa3b9aed9ea4c09720341838544 = L.marker(
[26.327467090000003, 50.17731169],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_a1a9e0ac186a2c3597364e7e50cdce64 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8eb8fa9ea21a01c591e32b6837b28845 = L.popup({
"maxWidth": 320,
});
var html_4c8d09049f2fac575e35154869c00ed6 = $(`<div id="html_4c8d09049f2fac575e35154869c00ed6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سنامبروجتي للهندسة و المقاولات</b><br> الرقم الموحد: 7006877505<br> السجل التجاري: 2052101667<br> المنطقة: الظهران<br> الحارة: الدوحة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.32740709,50.17731169" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8eb8fa9ea21a01c591e32b6837b28845.setContent(html_4c8d09049f2fac575e35154869c00ed6);
marker_175f9aa3b9aed9ea4c09720341838544.bindPopup(popup_8eb8fa9ea21a01c591e32b6837b28845)
;
marker_175f9aa3b9aed9ea4c09720341838544.setIcon(icon_a1a9e0ac186a2c3597364e7e50cdce64);
var marker_af0510819e774ad559c5a6a9881230ce = L.marker(
[26.32734709, 50.17731169],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_5078ee2ea8cf20966c5cecc64fc738a6 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_073857d6cb7fd995989ecd3e9993505b = L.popup({
"maxWidth": 320,
});
var html_fbb8fc1ff4572302fa28a4952ad58781 = $(`<div id="html_fbb8fc1ff4572302fa28a4952ad58781" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سايبم العربية السعودية</b><br> الرقم الموحد: 7000013008<br> السجل التجاري: 2051002660<br> المنطقة: الظهران<br> الحارة: الدوحة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.32740709,50.17731169" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_073857d6cb7fd995989ecd3e9993505b.setContent(html_fbb8fc1ff4572302fa28a4952ad58781);
marker_af0510819e774ad559c5a6a9881230ce.bindPopup(popup_073857d6cb7fd995989ecd3e9993505b)
;
marker_af0510819e774ad559c5a6a9881230ce.setIcon(icon_5078ee2ea8cf20966c5cecc64fc738a6);
var marker_2333546b36b68b2f77f4654658d8206b = L.marker(
[26.32791413, 50.16766333],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_022ace311dfd6583dfedc35c09e0cd72 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7f82737fdd0d99e4d8fe75b92c67ce60 = L.popup({
"maxWidth": 320,
});
var html_b994b56733cd1c380844da49df84b0a0 = $(`<div id="html_b994b56733cd1c380844da49df84b0a0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اصالة البن العربي التجارية</b><br> الرقم الموحد: 7012167628<br> السجل التجاري: 2050060301<br> المنطقة: الظهران<br> الحارة: الدوحة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.32791413,50.16766333" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7f82737fdd0d99e4d8fe75b92c67ce60.setContent(html_b994b56733cd1c380844da49df84b0a0);
marker_2333546b36b68b2f77f4654658d8206b.bindPopup(popup_7f82737fdd0d99e4d8fe75b92c67ce60)
;
marker_2333546b36b68b2f77f4654658d8206b.setIcon(icon_022ace311dfd6583dfedc35c09e0cd72);
var marker_f53fafbd2ba5cd315465650b92a19cbf = L.marker(
[26.36684204, 50.17728629],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_ca1539a788a5bf0c38c2ce54f243bdc6 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_05da872135e68c66fb0c83ed5351f18d = L.popup({
"maxWidth": 320,
});
var html_fb8c75df261784a8147549db2caa438e = $(`<div id="html_fb8c75df261784a8147549db2caa438e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أرامكو السعودية روان للحفر البحري</b><br> الرقم الموحد: 7010992514<br> السجل التجاري: 2051064243<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.36684204,50.17728629" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_05da872135e68c66fb0c83ed5351f18d.setContent(html_fb8c75df261784a8147549db2caa438e);
marker_f53fafbd2ba5cd315465650b92a19cbf.bindPopup(popup_05da872135e68c66fb0c83ed5351f18d)
;
marker_f53fafbd2ba5cd315465650b92a19cbf.setIcon(icon_ca1539a788a5bf0c38c2ce54f243bdc6);
var marker_131e3a66ff1b6fd0fc9548a7bc447bb5 = L.marker(
[26.3668420441641, 50.1772862908873],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_6b90dac2fc5badcee63a9e03315f4df0 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9edeea8d7ddbf62df5f8bbb449d45ce5 = L.popup({
"maxWidth": 320,
});
var html_a8c154a1f17baf9cc40801bb5f83f7fd = $(`<div id="html_a8c154a1f17baf9cc40801bb5f83f7fd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ايبك العربية السعودية المحدودة</b><br> الرقم الموحد: 7001715759<br> السجل التجاري: 2052001944<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3668420441641,50.1772862908873" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9edeea8d7ddbf62df5f8bbb449d45ce5.setContent(html_a8c154a1f17baf9cc40801bb5f83f7fd);
marker_131e3a66ff1b6fd0fc9548a7bc447bb5.bindPopup(popup_9edeea8d7ddbf62df5f8bbb449d45ce5)
;
marker_131e3a66ff1b6fd0fc9548a7bc447bb5.setIcon(icon_6b90dac2fc5badcee63a9e03315f4df0);
var marker_e13bea429d81870b15636d68a4c2707a = L.marker(
[26.36694849, 50.17769973],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_85aec9a3f33194a30e009e5acf5851f2 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2e4a2723f2d87d56b11703f6d00c4a77 = L.popup({
"maxWidth": 320,
});
var html_40e8b4d427a0c7a8e6694f638668f60c = $(`<div id="html_40e8b4d427a0c7a8e6694f638668f60c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>اكسلينس لوجنج السعودية المحدودة</b><br> الرقم الموحد: 7005886366<br> السجل التجاري: 2051224431<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.36694849,50.17769973" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2e4a2723f2d87d56b11703f6d00c4a77.setContent(html_40e8b4d427a0c7a8e6694f638668f60c);
marker_e13bea429d81870b15636d68a4c2707a.bindPopup(popup_2e4a2723f2d87d56b11703f6d00c4a77)
;
marker_e13bea429d81870b15636d68a4c2707a.setIcon(icon_85aec9a3f33194a30e009e5acf5851f2);
var marker_6de952ddc178c42c4f5a394037ab3802 = L.marker(
[26.36745425, 50.17768498],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_7a534c7b6ad8bee82ed953b32159c8f2 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9836b8d18e0e178326d80e09c37c5543 = L.popup({
"maxWidth": 320,
});
var html_2583c6d121288293e1c53f2bd3561b8e = $(`<div id="html_2583c6d121288293e1c53f2bd3561b8e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الشرقية للتشغيل والصيانة</b><br> الرقم الموحد: 7001911499<br> السجل التجاري: 2051055477<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.36745425,50.17768498" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9836b8d18e0e178326d80e09c37c5543.setContent(html_2583c6d121288293e1c53f2bd3561b8e);
marker_6de952ddc178c42c4f5a394037ab3802.bindPopup(popup_9836b8d18e0e178326d80e09c37c5543)
;
marker_6de952ddc178c42c4f5a394037ab3802.setIcon(icon_7a534c7b6ad8bee82ed953b32159c8f2);
var marker_f40b456ee4c1f2304f40905b9f5dffff = L.marker(
[26.36747091, 50.17755212],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_664490e2c3de5b67cdb097b60a52bc8b = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f169bdf7bb3d3c81295867eb7c7802c2 = L.popup({
"maxWidth": 320,
});
var html_cb0237d4d74b98d2f3914ca490e10558 = $(`<div id="html_cb0237d4d74b98d2f3914ca490e10558" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سبرنت لخدمات النفط والغاز</b><br> الرقم الموحد: 7004308164<br> السجل التجاري: 2050116464<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.36747091,50.17755212" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f169bdf7bb3d3c81295867eb7c7802c2.setContent(html_cb0237d4d74b98d2f3914ca490e10558);
marker_f40b456ee4c1f2304f40905b9f5dffff.bindPopup(popup_f169bdf7bb3d3c81295867eb7c7802c2)
;
marker_f40b456ee4c1f2304f40905b9f5dffff.setIcon(icon_664490e2c3de5b67cdb097b60a52bc8b);
var marker_943bf32eb94d8aa67ab8e87de248e5c2 = L.marker(
[26.36757307, 50.17772292],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_e60b490cb72cffb092b84d8d0468ad7c = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6c964ba3876e79116e69d0e045486761 = L.popup({
"maxWidth": 320,
});
var html_e89685b75aa135d4da9612729a137ff9 = $(`<div id="html_e89685b75aa135d4da9612729a137ff9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مصنع شركة توليد الطاقة المزدوج</b><br> الرقم الموحد: 7001797591<br> السجل التجاري: 2051054990<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.36757307,50.17772292" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6c964ba3876e79116e69d0e045486761.setContent(html_e89685b75aa135d4da9612729a137ff9);
marker_943bf32eb94d8aa67ab8e87de248e5c2.bindPopup(popup_6c964ba3876e79116e69d0e045486761)
;
marker_943bf32eb94d8aa67ab8e87de248e5c2.setIcon(icon_e60b490cb72cffb092b84d8d0468ad7c);
var marker_e2e911f4ef1862b6e19d691456a312d5 = L.marker(
[26.3701977678276, 50.1772834678511],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_274466f925c48a14d4b588dc64b927fd = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a055129772e7c14dca955b924855ef5a = L.popup({
"maxWidth": 320,
});
var html_6a496b426a47407c9e86d06fb2d26d54 = $(`<div id="html_6a496b426a47407c9e86d06fb2d26d54" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تناجيب كوجينيريشن للطاقة</b><br> الرقم الموحد: 7025499323<br> السجل التجاري: 2051236966<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3701977678276,50.1772834678511" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a055129772e7c14dca955b924855ef5a.setContent(html_6a496b426a47407c9e86d06fb2d26d54);
marker_e2e911f4ef1862b6e19d691456a312d5.bindPopup(popup_a055129772e7c14dca955b924855ef5a)
;
marker_e2e911f4ef1862b6e19d691456a312d5.setIcon(icon_274466f925c48a14d4b588dc64b927fd);
var marker_b9f43ab4eca13ec3a2302a1060c19510 = L.marker(
[26.3701977678276, 50.177283467851],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_b64a6493a9b427eac63c6f7d5c0a8e8f = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f0e94dc42dc16c687c281ff63d5f0cfd = L.popup({
"maxWidth": 320,
});
var html_92b6abc6dc12b0aa4738f2ce9a9977bd = $(`<div id="html_92b6abc6dc12b0aa4738f2ce9a9977bd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الاتحاد التجاري للتامين التعاوني</b><br> الرقم الموحد: 7001549059<br> السجل التجاري: 2051036304<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3701977678276,50.177283467851" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f0e94dc42dc16c687c281ff63d5f0cfd.setContent(html_92b6abc6dc12b0aa4738f2ce9a9977bd);
marker_b9f43ab4eca13ec3a2302a1060c19510.bindPopup(popup_f0e94dc42dc16c687c281ff63d5f0cfd)
;
marker_b9f43ab4eca13ec3a2302a1060c19510.setIcon(icon_b64a6493a9b427eac63c6f7d5c0a8e8f);
var marker_ff62f3f49ddd646cf3598660fdad6576 = L.marker(
[26.37068693, 50.17694729],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_cbf581348a2ab7c9e806409b06345c79 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_731fd82d88f1c782a56d2f4cd3a15cd9 = L.popup({
"maxWidth": 320,
});
var html_4cb6c2a759cfac147a4a448b49b7dbd8 = $(`<div id="html_4cb6c2a759cfac147a4a448b49b7dbd8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فرع شركة اوريغون سيستمز</b><br> الرقم الموحد: 7003790198<br> السجل التجاري: 2050115202<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.37068693,50.17694729" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_731fd82d88f1c782a56d2f4cd3a15cd9.setContent(html_4cb6c2a759cfac147a4a448b49b7dbd8);
marker_ff62f3f49ddd646cf3598660fdad6576.bindPopup(popup_731fd82d88f1c782a56d2f4cd3a15cd9)
;
marker_ff62f3f49ddd646cf3598660fdad6576.setIcon(icon_cbf581348a2ab7c9e806409b06345c79);
var marker_8ca000c5733222c8dc98ce26934af9c4 = L.marker(
[26.37152637664737, 50.17696644846989],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_a5d704a4a89b3c35d193619159bf30e2 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_332633b7fc521006e465ccaa6ff8a118 = L.popup({
"maxWidth": 320,
});
var html_00571601e7da8878f75106063141c713 = $(`<div id="html_00571601e7da8878f75106063141c713" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة خطوط الثقة للمقاولات</b><br> الرقم الموحد: 7037614893<br> السجل التجاري: 2052104472<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.37152637664737,50.17696644846989" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_332633b7fc521006e465ccaa6ff8a118.setContent(html_00571601e7da8878f75106063141c713);
marker_8ca000c5733222c8dc98ce26934af9c4.bindPopup(popup_332633b7fc521006e465ccaa6ff8a118)
;
marker_8ca000c5733222c8dc98ce26934af9c4.setIcon(icon_a5d704a4a89b3c35d193619159bf30e2);
var marker_f91f2126ce057aae6c3445d4ffe2d46a = L.marker(
[26.3728503146336, 50.1743505933214],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_1deb3aac06c7160b3e54bee31b34ffad = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c2ca0a5337b1eeda557f786b1508b068 = L.popup({
"maxWidth": 320,
});
var html_28d04d4b89479ba7f7cf93e950b81ece = $(`<div id="html_28d04d4b89479ba7f7cf93e950b81ece" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تكنيكاس ريونيداس السعودية للخدمات</b><br> الرقم الموحد: 7001753636<br> السجل التجاري: 2051051935<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3728503146336,50.1743505933214" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c2ca0a5337b1eeda557f786b1508b068.setContent(html_28d04d4b89479ba7f7cf93e950b81ece);
marker_f91f2126ce057aae6c3445d4ffe2d46a.bindPopup(popup_c2ca0a5337b1eeda557f786b1508b068)
;
marker_f91f2126ce057aae6c3445d4ffe2d46a.setIcon(icon_1deb3aac06c7160b3e54bee31b34ffad);
var marker_75e4f808eb38de67d6ad04049ee3ce1e = L.marker(
[26.3728503146336, 50.1743505933213],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_a4bfb2ee14ec5190cef80c66852d616e = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2f72f6fae31ad812533bb6ed38b34de3 = L.popup({
"maxWidth": 320,
});
var html_23324515beee2eea2a95bc6e7e621a17 = $(`<div id="html_23324515beee2eea2a95bc6e7e621a17" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة انرميك العربية السعودية</b><br> الرقم الموحد: 7009423745<br> السجل التجاري: 2050107950<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.3728503146336,50.1743505933213" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2f72f6fae31ad812533bb6ed38b34de3.setContent(html_23324515beee2eea2a95bc6e7e621a17);
marker_75e4f808eb38de67d6ad04049ee3ce1e.bindPopup(popup_2f72f6fae31ad812533bb6ed38b34de3)
;
marker_75e4f808eb38de67d6ad04049ee3ce1e.setIcon(icon_a4bfb2ee14ec5190cef80c66852d616e);
var marker_68b51bb4cc0fbd0e2f62fd730162afbe = L.marker(
[26.37326264, 50.17492953],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_9b7f49f3c26d5bafaa90aaf3bb9f9994 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_922481b9ca005060311f706624344e41 = L.popup({
"maxWidth": 320,
});
var html_6d2f4a2378f613eb804829d2210a1edc = $(`<div id="html_6d2f4a2378f613eb804829d2210a1edc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دريجنغ إنترناشيونال العربية</b><br> الرقم الموحد: 7001507198<br> السجل التجاري: 2051029310<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.37326264,50.17492953" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_922481b9ca005060311f706624344e41.setContent(html_6d2f4a2378f613eb804829d2210a1edc);
marker_68b51bb4cc0fbd0e2f62fd730162afbe.bindPopup(popup_922481b9ca005060311f706624344e41)
;
marker_68b51bb4cc0fbd0e2f62fd730162afbe.setIcon(icon_9b7f49f3c26d5bafaa90aaf3bb9f9994);
var marker_8a8eb698031d8c512fb63b18ffc8445f = L.marker(
[26.373305655, 50.1695886310001],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_141755d7261c64182af2685427dbd422 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c89841451a982dfdf6b8d239b0286e00 = L.popup({
"maxWidth": 320,
});
var html_0d429daf6487334b1c98a58f06cdcb4c = $(`<div id="html_0d429daf6487334b1c98a58f06cdcb4c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أنار الجديدة للمقاولات العامة شركة شخص واحد</b><br> الرقم الموحد: 7005531558<br> السجل التجاري: 2052101507<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.373305655,50.1695886310001" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c89841451a982dfdf6b8d239b0286e00.setContent(html_0d429daf6487334b1c98a58f06cdcb4c);
marker_8a8eb698031d8c512fb63b18ffc8445f.bindPopup(popup_c89841451a982dfdf6b8d239b0286e00)
;
marker_8a8eb698031d8c512fb63b18ffc8445f.setIcon(icon_141755d7261c64182af2685427dbd422);
var marker_bd22662aa3bfc01f6efcee6766246d18 = L.marker(
[26.37539191689625, 50.17004710806196],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_57ff51c794c4d2b5ab7bfd26588f5f85 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7a8391cf2b04cfa27b20026419ceb883 = L.popup({
"maxWidth": 320,
});
var html_6308bfc08165eec9d2c5d0fdf5bf4ba7 = $(`<div id="html_6308bfc08165eec9d2c5d0fdf5bf4ba7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كفاءة المعدات التجارية شركة شخص واحد</b><br> الرقم الموحد: 7007934081<br> السجل التجاري: 2051065161<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.37539191689625,50.17004710806196" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7a8391cf2b04cfa27b20026419ceb883.setContent(html_6308bfc08165eec9d2c5d0fdf5bf4ba7);
marker_bd22662aa3bfc01f6efcee6766246d18.bindPopup(popup_7a8391cf2b04cfa27b20026419ceb883)
;
marker_bd22662aa3bfc01f6efcee6766246d18.setIcon(icon_57ff51c794c4d2b5ab7bfd26588f5f85);
var marker_ca792fab654770766015e84e2f9d0a51 = L.marker(
[26.37644916, 50.17084501],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_3610bf8b46b5a924154829b4f19f7463 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_924ff2192e53081b11f2bbdcd7fd8736 = L.popup({
"maxWidth": 320,
});
var html_05a9cec59820d81d3004016eddfacc29 = $(`<div id="html_05a9cec59820d81d3004016eddfacc29" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أديس السعودية المحدودة</b><br> الرقم الموحد: 7009434981<br> السجل التجاري: 2051062895<br> المنطقة: الظهران<br> الحارة: القشلة<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.37644916,50.17084501" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_924ff2192e53081b11f2bbdcd7fd8736.setContent(html_05a9cec59820d81d3004016eddfacc29);
marker_ca792fab654770766015e84e2f9d0a51.bindPopup(popup_924ff2192e53081b11f2bbdcd7fd8736)
;
marker_ca792fab654770766015e84e2f9d0a51.setIcon(icon_3610bf8b46b5a924154829b4f19f7463);
var marker_db232594817621ab3c6b0458b0187ecf = L.marker(
[26.35396904, 50.20913466],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_4a8850c618b16825eae287ed452830f8 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c014452a4032c52a7efd545ef0d93ad1 = L.popup({
"maxWidth": 320,
});
var html_b58118fe86a6bfe076b26d18703330a6 = $(`<div id="html_b58118fe86a6bfe076b26d18703330a6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سي اتش تو ام هيل العربية</b><br> الرقم الموحد: 7001574024<br> السجل التجاري: 2051038659<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.35396904,50.20913466" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c014452a4032c52a7efd545ef0d93ad1.setContent(html_b58118fe86a6bfe076b26d18703330a6);
marker_db232594817621ab3c6b0458b0187ecf.bindPopup(popup_c014452a4032c52a7efd545ef0d93ad1)
;
marker_db232594817621ab3c6b0458b0187ecf.setIcon(icon_4a8850c618b16825eae287ed452830f8);
var marker_255ca9a23c1eb4414d29689865fa39bb = L.marker(
[26.35402036, 50.20362657],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_278026415b1db26333bc0483f1e95d48 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_44846f2b32bec14613623727bc543e61 = L.popup({
"maxWidth": 320,
});
var html_2ac9eb14d5e3a95e96a1252db51762b4 = $(`<div id="html_2ac9eb14d5e3a95e96a1252db51762b4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة إعمار البنية التحتية للمقاولات</b><br> الرقم الموحد: 7001552673<br> السجل التجاري: 2051030949<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.35402036,50.20362657" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_44846f2b32bec14613623727bc543e61.setContent(html_2ac9eb14d5e3a95e96a1252db51762b4);
marker_255ca9a23c1eb4414d29689865fa39bb.bindPopup(popup_44846f2b32bec14613623727bc543e61)
;
marker_255ca9a23c1eb4414d29689865fa39bb.setIcon(icon_278026415b1db26333bc0483f1e95d48);
var marker_0dac3216f0a0a753290151896af6d06d = L.marker(
[26.35454902, 50.20872988],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_faf2797323a7e933e87df4023a810cf2 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c89b4867c16067494bda6ce37b73f9fd = L.popup({
"maxWidth": 320,
});
var html_eedcf7ffb230befec3eba4c3ecdcf9f2 = $(`<div id="html_eedcf7ffb230befec3eba4c3ecdcf9f2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المبنى العالمي للمقاولات</b><br> الرقم الموحد: 7001833669<br> السجل التجاري: 2051040604<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.35454902,50.20872988" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c89b4867c16067494bda6ce37b73f9fd.setContent(html_eedcf7ffb230befec3eba4c3ecdcf9f2);
marker_0dac3216f0a0a753290151896af6d06d.bindPopup(popup_c89b4867c16067494bda6ce37b73f9fd)
;
marker_0dac3216f0a0a753290151896af6d06d.setIcon(icon_faf2797323a7e933e87df4023a810cf2);
var marker_fa57150b483a9b12ef5c0b1319aa35aa = L.marker(
[26.35835730442591, 50.18978342413902],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_0fb5b362860d2921d13dd3af2a009ed9 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9cb6e15fc773a2aaf5c9dcb39887e3b9 = L.popup({
"maxWidth": 320,
});
var html_6ecf067963d8a03171dac885e5fdc342 = $(`<div id="html_6ecf067963d8a03171dac885e5fdc342" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اركان الهندسية للمقاولات</b><br> الرقم الموحد: 7037260580<br> السجل التجاري: 1010947918<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.35835730442591,50.18978342413902" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9cb6e15fc773a2aaf5c9dcb39887e3b9.setContent(html_6ecf067963d8a03171dac885e5fdc342);
marker_fa57150b483a9b12ef5c0b1319aa35aa.bindPopup(popup_9cb6e15fc773a2aaf5c9dcb39887e3b9)
;
marker_fa57150b483a9b12ef5c0b1319aa35aa.setIcon(icon_0fb5b362860d2921d13dd3af2a009ed9);
var marker_fa783b784e1eeefa4261786440e1b066 = L.marker(
[26.35869479, 50.18932324],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_f001bef13c0170d2e9090ec8b1c41169 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_85728b9314fa0df04d8ca8ff5c0e28ef = L.popup({
"maxWidth": 320,
});
var html_fa349f778e16416b565598bd5f09fb7f = $(`<div id="html_fa349f778e16416b565598bd5f09fb7f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مقاولين الخبر المحدودة</b><br> الرقم الموحد: 7009436895<br> السجل التجاري: 2051062974<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.35869479,50.18932324" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_85728b9314fa0df04d8ca8ff5c0e28ef.setContent(html_fa349f778e16416b565598bd5f09fb7f);
marker_fa783b784e1eeefa4261786440e1b066.bindPopup(popup_85728b9314fa0df04d8ca8ff5c0e28ef)
;
marker_fa783b784e1eeefa4261786440e1b066.setIcon(icon_f001bef13c0170d2e9090ec8b1c41169);
var marker_ef56805af67df55c239fc1f95e38a61d = L.marker(
[26.36595677, 50.20436513],
{
}
).addTo(map_3c5262b89b34aad2f863666ffe158f6a);
var icon_dd5a174b0a0740feae8f544fc2c5e548 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b26c92d8f7b54476f591063b7e6a4961 = L.popup({
"maxWidth": 320,
});
var html_aa85090a9ee0e14ae69a6edfe0aa5c0a = $(`<div id="html_aa85090a9ee0e14ae69a6edfe0aa5c0a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة اللبنانية العربية للمقاولات</b><br> الرقم الموحد: 7023601037<br> السجل التجاري: 2051235729<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> <b>اسم الباحث:</b> اشواق عبدالكريم الحنطي<br> <a href="https://www.google.com/maps?q=26.36595677,50.20436513" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b26c92d8f7b54476f591063b7e6a4961.setContent(html_aa85090a9ee0e14ae69a6edfe0aa5c0a);
marker_ef56805af67df55c239fc1f95e38a61d.bindPopup(popup_b26c92d8f7b54476f591063b7e6a4961)
;
marker_ef56805af67df55c239fc1f95e38a61d.setIcon(icon_dd5a174b0a0740feae8f544fc2c5e548);
</script>
</html> |