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 | <!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_a67e2c7e59e7b1683c41286e6543029e {
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_10" onclick="
var panel = document.getElementById('stats_10');
var btn = document.getElementById('btn_stats_10');
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_10" 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;
">محمد يعقوب السبع - 10</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 66</div>
<div><b>عدد الحارات:</b> 8</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• الخالدية الشمالية: 37</div><div>• النهضة: 7</div><div>• النزهة: 6</div><div>• عبدالله فؤاد: 4</div><div>• الطبيشي: 4</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_10_محمد_يعقوب_السبع.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;">(37)</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;">(7)</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:gray;
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:lightgreen;
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:darkgreen;
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:beige;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>هجر</span>
</div>
<span style="color:#555;">(3)</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;">(3)</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:black;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الناصرية</span>
</div>
<span style="color:#555;">(2)</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_a67e2c7e59e7b1683c41286e6543029e" ></div>
</body>
<script>
var map_a67e2c7e59e7b1683c41286e6543029e = L.map(
"map_a67e2c7e59e7b1683c41286e6543029e",
{
center: [26.40562009732647, 50.13288454874899],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_5bae57eea022078452f06523014baf75 = 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_5bae57eea022078452f06523014baf75.addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var tile_layer_64d7b6aef67953ece624def18978913e = 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_64d7b6aef67953ece624def18978913e.addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var tile_layer_ded81c27df35b0b07d60c4aa249ca0ec = 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_ded81c27df35b0b07d60c4aa249ca0ec.addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var locate_control_fc64cc1f9fed4e676861d8916e60ad8e = L.control.locate(
{}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var marker_07b98298ac57b83075e11c4ca71037ac = L.marker(
[26.39192184, 50.10471266],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_481a65a5b79953d465bb9dbdfe1efe6d = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_aa900b792d3e2956beec09236c918223 = L.popup({
"maxWidth": 320,
});
var html_61465e19eec94160762475c6786386e5 = $(`<div id="html_61465e19eec94160762475c6786386e5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>توكوم للهندسة</b><br> الرقم الموحد: 7008627510<br> السجل التجاري: 2055125301<br> المنطقة: الدمام<br> الحارة: النزهة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.39192184,50.10471266" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_aa900b792d3e2956beec09236c918223.setContent(html_61465e19eec94160762475c6786386e5);
marker_07b98298ac57b83075e11c4ca71037ac.bindPopup(popup_aa900b792d3e2956beec09236c918223)
;
marker_07b98298ac57b83075e11c4ca71037ac.setIcon(icon_481a65a5b79953d465bb9dbdfe1efe6d);
var marker_f039f53fb013c26f6de7be2e67916af7 = L.marker(
[26.40217550926605, 50.10526498941892],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_41ce6ac693d258505d87588822b439bb = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5a8a23d148a2ed07a89015392c493664 = L.popup({
"maxWidth": 320,
});
var html_f30bd63a66eb4b3a6ae7ec67b67b2f15 = $(`<div id="html_f30bd63a66eb4b3a6ae7ec67b67b2f15" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كفاءات الصفوة التجارية</b><br> الرقم الموحد: 7043448872<br> السجل التجاري: 3555103388<br> المنطقة: الدمام<br> الحارة: النزهة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40217550926605,50.10526498941892" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5a8a23d148a2ed07a89015392c493664.setContent(html_f30bd63a66eb4b3a6ae7ec67b67b2f15);
marker_f039f53fb013c26f6de7be2e67916af7.bindPopup(popup_5a8a23d148a2ed07a89015392c493664)
;
marker_f039f53fb013c26f6de7be2e67916af7.setIcon(icon_41ce6ac693d258505d87588822b439bb);
var marker_d13d51a52dfe646f4fcc5b68a4e4e4f7 = L.marker(
[26.40576638, 50.11274791],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_81e86ef248d184a7feeaa02ef0e6decf = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9f11c16bfe02cc5355e7468215955b23 = L.popup({
"maxWidth": 320,
});
var html_a4791e0c930a892018b6926c2d4ef083 = $(`<div id="html_a4791e0c930a892018b6926c2d4ef083" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كي اس تي بلانت السعودية الصناعية</b><br> الرقم الموحد: 7017125753<br> السجل التجاري: 2050134203<br> المنطقة: الدمام<br> الحارة: النزهة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40576638,50.11274791" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9f11c16bfe02cc5355e7468215955b23.setContent(html_a4791e0c930a892018b6926c2d4ef083);
marker_d13d51a52dfe646f4fcc5b68a4e4e4f7.bindPopup(popup_9f11c16bfe02cc5355e7468215955b23)
;
marker_d13d51a52dfe646f4fcc5b68a4e4e4f7.setIcon(icon_81e86ef248d184a7feeaa02ef0e6decf);
var marker_3aa43ce983e134cc184a170264ec8a07 = L.marker(
[26.40619178, 50.11234625],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_519d9bde730bb40a51c7c47be549fe1c = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7045eeac9ae2d6ce081e1c1f469384bd = L.popup({
"maxWidth": 320,
});
var html_7a187ebe35a5947d5dbfdf5a29399a11 = $(`<div id="html_7a187ebe35a5947d5dbfdf5a29399a11" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة التل الماسي للمقاولات العامة</b><br> الرقم الموحد: 7021907691<br> السجل التجاري: 2050143796<br> المنطقة: الدمام<br> الحارة: النزهة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40619178,50.11234625" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7045eeac9ae2d6ce081e1c1f469384bd.setContent(html_7a187ebe35a5947d5dbfdf5a29399a11);
marker_3aa43ce983e134cc184a170264ec8a07.bindPopup(popup_7045eeac9ae2d6ce081e1c1f469384bd)
;
marker_3aa43ce983e134cc184a170264ec8a07.setIcon(icon_519d9bde730bb40a51c7c47be549fe1c);
var marker_3b6175d2c08fa506244f67d23663d1e3 = L.marker(
[26.40794737, 50.11148093],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_5d24b4680535b888a0715877b1116db3 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_383f53ead5e899b2e513871e2a23b4e7 = L.popup({
"maxWidth": 320,
});
var html_4e53a54746e4406d886a21e86af50dcf = $(`<div id="html_4e53a54746e4406d886a21e86af50dcf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سقيا الحديثة للتعدين</b><br> الرقم الموحد: 7004527557<br> السجل التجاري: 2050117389<br> المنطقة: الدمام<br> الحارة: النزهة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40794737,50.11148093" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_383f53ead5e899b2e513871e2a23b4e7.setContent(html_4e53a54746e4406d886a21e86af50dcf);
marker_3b6175d2c08fa506244f67d23663d1e3.bindPopup(popup_383f53ead5e899b2e513871e2a23b4e7)
;
marker_3b6175d2c08fa506244f67d23663d1e3.setIcon(icon_5d24b4680535b888a0715877b1116db3);
var marker_215bb47873d0e54ece790ddd1d8f273d = L.marker(
[26.4095502623988, 50.109769961463],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_75e1aec1ae9078bd7a9bee66368afb7f = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_16a91c760c08842ec95068c71259e0cd = L.popup({
"maxWidth": 320,
});
var html_12c884fb14847b1cddb2023260574382 = $(`<div id="html_12c884fb14847b1cddb2023260574382" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة الوطنية للفحص والآختبار الفني</b><br> الرقم الموحد: 7000959994<br> السجل التجاري: 2050016418<br> المنطقة: الدمام<br> الحارة: النزهة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4095502623988,50.109769961463" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_16a91c760c08842ec95068c71259e0cd.setContent(html_12c884fb14847b1cddb2023260574382);
marker_215bb47873d0e54ece790ddd1d8f273d.bindPopup(popup_16a91c760c08842ec95068c71259e0cd)
;
marker_215bb47873d0e54ece790ddd1d8f273d.setIcon(icon_75e1aec1ae9078bd7a9bee66368afb7f);
var marker_23bfb814924522281ed23ec1fc010015 = L.marker(
[26.37260534814953, 50.09980552517095],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_fa54bc1676603bb142a1b392edaaeed7 = L.AwesomeMarkers.icon(
{
"markerColor": "beige",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b2940cde0e9b68866fbdaab5b7a20da9 = L.popup({
"maxWidth": 320,
});
var html_aea648a34908987b48065bf513eca934 = $(`<div id="html_aea648a34908987b48065bf513eca934" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>سباروز العربية السعودية</b><br> الرقم الموحد: 7023287035<br> السجل التجاري: 2050116891<br> المنطقة: الدمام<br> الحارة: هجر<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.37260534814953,50.09980552517095" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b2940cde0e9b68866fbdaab5b7a20da9.setContent(html_aea648a34908987b48065bf513eca934);
marker_23bfb814924522281ed23ec1fc010015.bindPopup(popup_b2940cde0e9b68866fbdaab5b7a20da9)
;
marker_23bfb814924522281ed23ec1fc010015.setIcon(icon_fa54bc1676603bb142a1b392edaaeed7);
var marker_8d635f33509d2f388d94ce4ae22edd99 = L.marker(
[26.37263766, 50.10924609],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_f161caa64776b49db4968d8674a10062 = L.AwesomeMarkers.icon(
{
"markerColor": "beige",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_85b5d11f0c299b46317f3479fc6fc04e = L.popup({
"maxWidth": 320,
});
var html_8367af081cdb88515f5f128d1b2a48d7 = $(`<div id="html_8367af081cdb88515f5f128d1b2a48d7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كرمة إعمار للمقاولات</b><br> الرقم الموحد: 7023941862<br> السجل التجاري: 2051236246<br> المنطقة: الدمام<br> الحارة: هجر<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.37263766,50.10924609" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_85b5d11f0c299b46317f3479fc6fc04e.setContent(html_8367af081cdb88515f5f128d1b2a48d7);
marker_8d635f33509d2f388d94ce4ae22edd99.bindPopup(popup_85b5d11f0c299b46317f3479fc6fc04e)
;
marker_8d635f33509d2f388d94ce4ae22edd99.setIcon(icon_f161caa64776b49db4968d8674a10062);
var marker_c2ceb81a3b7edae2adf72c008f599b05 = L.marker(
[26.37287602038813, 50.10009488090873],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_d5d428c3f36a4dad2279a6f0d3d9259e = L.AwesomeMarkers.icon(
{
"markerColor": "beige",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0d92a9a582aca3c59a4603b69d316d05 = L.popup({
"maxWidth": 320,
});
var html_e87d020bb86ab5ebefbcdff2dd6acac0 = $(`<div id="html_e87d020bb86ab5ebefbcdff2dd6acac0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اي اس سي المحدودة</b><br> الرقم الموحد: 7034720669<br> السجل التجاري: 2051249757<br> المنطقة: الدمام<br> الحارة: هجر<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.37287602038813,50.10009488090873" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0d92a9a582aca3c59a4603b69d316d05.setContent(html_e87d020bb86ab5ebefbcdff2dd6acac0);
marker_c2ceb81a3b7edae2adf72c008f599b05.bindPopup(popup_0d92a9a582aca3c59a4603b69d316d05)
;
marker_c2ceb81a3b7edae2adf72c008f599b05.setIcon(icon_d5d428c3f36a4dad2279a6f0d3d9259e);
var marker_c3042fdf67009da3c2152f58180c0a61 = L.marker(
[26.41197595, 50.11976934],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_92e41063f71452264c017ef66bf7ddbf = L.AwesomeMarkers.icon(
{
"markerColor": "lightgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6cc60d0644a08afb08709fb6bdb9b92e = L.popup({
"maxWidth": 320,
});
var html_ba34432bd69262a037c061bf0a7d849d = $(`<div id="html_ba34432bd69262a037c061bf0a7d849d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ركني الخليج للتجارة والمقاولات العامة شركة ذات الشخص الواحد</b><br> الرقم الموحد: 7001766745<br> السجل التجاري: 2050086821<br> المنطقة: الدمام<br> الحارة: عبدالله فؤاد<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.41197595,50.11976934" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6cc60d0644a08afb08709fb6bdb9b92e.setContent(html_ba34432bd69262a037c061bf0a7d849d);
marker_c3042fdf67009da3c2152f58180c0a61.bindPopup(popup_6cc60d0644a08afb08709fb6bdb9b92e)
;
marker_c3042fdf67009da3c2152f58180c0a61.setIcon(icon_92e41063f71452264c017ef66bf7ddbf);
var marker_b1359cf832987591a5e699d727eeeb6e = L.marker(
[26.4143323474693, 50.1166032311914],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_ab188f25469f860698dc3ed49e4b322f = L.AwesomeMarkers.icon(
{
"markerColor": "lightgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_70514ddb76dba4076e00a64243907de7 = L.popup({
"maxWidth": 320,
});
var html_f3670ca3b47ea04e7a1812d5846b0e45 = $(`<div id="html_f3670ca3b47ea04e7a1812d5846b0e45" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>كفاءة الطريق للمقاولات</b><br> الرقم الموحد: 7008176070<br> السجل التجاري: 2050138322<br> المنطقة: الدمام<br> الحارة: عبدالله فؤاد<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4143323474693,50.1166032311914" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_70514ddb76dba4076e00a64243907de7.setContent(html_f3670ca3b47ea04e7a1812d5846b0e45);
marker_b1359cf832987591a5e699d727eeeb6e.bindPopup(popup_70514ddb76dba4076e00a64243907de7)
;
marker_b1359cf832987591a5e699d727eeeb6e.setIcon(icon_ab188f25469f860698dc3ed49e4b322f);
var marker_d4de10af37165da9684d3a67f29d323f = L.marker(
[26.42071583714802, 50.11501427267937],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_4e1c83f16135fc5ae86a7336e7502c87 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_285757cf6b0996a6fc55cf81231a8932 = L.popup({
"maxWidth": 320,
});
var html_0b14058e404ffa78f79c534a5f71083d = $(`<div id="html_0b14058e404ffa78f79c534a5f71083d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة روك وود إنترناشونال</b><br> الرقم الموحد: 7039969956<br> السجل التجاري: 1009095192<br> المنطقة: الدمام<br> الحارة: عبدالله فؤاد<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.42071583714802,50.11501427267937" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_285757cf6b0996a6fc55cf81231a8932.setContent(html_0b14058e404ffa78f79c534a5f71083d);
marker_d4de10af37165da9684d3a67f29d323f.bindPopup(popup_285757cf6b0996a6fc55cf81231a8932)
;
marker_d4de10af37165da9684d3a67f29d323f.setIcon(icon_4e1c83f16135fc5ae86a7336e7502c87);
var marker_8b46d225121ac0d2cd7b441db830058c = L.marker(
[26.4239528771201, 50.1166109899831],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_336c494fe0f78543971b3a80644393ac = L.AwesomeMarkers.icon(
{
"markerColor": "lightgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_55e77956bc43518586cd2c7b29ed95cf = L.popup({
"maxWidth": 320,
});
var html_d42d2c8604b97b5ac941ffa9a6db660d = $(`<div id="html_d42d2c8604b97b5ac941ffa9a6db660d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>عيادة اوكا البيطرية</b><br> الرقم الموحد: 7011037764<br> السجل التجاري: 2050087944<br> المنطقة: الدمام<br> الحارة: عبدالله فؤاد<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4239528771201,50.1166109899831" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_55e77956bc43518586cd2c7b29ed95cf.setContent(html_d42d2c8604b97b5ac941ffa9a6db660d);
marker_8b46d225121ac0d2cd7b441db830058c.bindPopup(popup_55e77956bc43518586cd2c7b29ed95cf)
;
marker_8b46d225121ac0d2cd7b441db830058c.setIcon(icon_336c494fe0f78543971b3a80644393ac);
var marker_f7aafd20d87acb06a7c35c3d95ab4df1 = L.marker(
[26.4202886292761, 50.1230541295474],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_4f4fd40664cd28b967f48421e0cc4059 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_be9d13d83fbd03a49d4e6a56060e8f22 = L.popup({
"maxWidth": 320,
});
var html_e782ec88153622bbcc5aaa2bd7dcb1db = $(`<div id="html_e782ec88153622bbcc5aaa2bd7dcb1db" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مؤسسة أطوار الخليج لمقاولات المباني</b><br> الرقم الموحد: 7001468953<br> السجل التجاري: 2050046712<br> المنطقة: الدمام<br> الحارة: الناصرية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4202886292761,50.1230541295474" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_be9d13d83fbd03a49d4e6a56060e8f22.setContent(html_e782ec88153622bbcc5aaa2bd7dcb1db);
marker_f7aafd20d87acb06a7c35c3d95ab4df1.bindPopup(popup_be9d13d83fbd03a49d4e6a56060e8f22)
;
marker_f7aafd20d87acb06a7c35c3d95ab4df1.setIcon(icon_4f4fd40664cd28b967f48421e0cc4059);
var marker_ba2755a2957cda5abc79a60f70f09159 = L.marker(
[26.42293558, 50.12071555],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_e8ca20fcc02fb75c18e5abb098902d58 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b720c01c79a3364466757c531401cdfe = L.popup({
"maxWidth": 320,
});
var html_34920ee245bbb49918530090e68dc783 = $(`<div id="html_34920ee245bbb49918530090e68dc783" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الشرق البعيد للمقاولات العامة</b><br> الرقم الموحد: 7012150681<br> السجل التجاري: 2050047552<br> المنطقة: الدمام<br> الحارة: الناصرية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.42293558,50.12071555" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b720c01c79a3364466757c531401cdfe.setContent(html_34920ee245bbb49918530090e68dc783);
marker_ba2755a2957cda5abc79a60f70f09159.bindPopup(popup_b720c01c79a3364466757c531401cdfe)
;
marker_ba2755a2957cda5abc79a60f70f09159.setIcon(icon_e8ca20fcc02fb75c18e5abb098902d58);
var marker_dd796d9097a63de9a6d09ac26f13aba4 = L.marker(
[26.43639718, 50.12418738],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_af336619d2f6a1727317dbb4c246635b = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7d166971a456d49054d39a80368e861e = L.popup({
"maxWidth": 320,
});
var html_1df16e8ab2d4ce04be654a5f6c5382f9 = $(`<div id="html_1df16e8ab2d4ce04be654a5f6c5382f9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عبودي للخدمات اللوجستية</b><br> الرقم الموحد: 7012260225<br> السجل التجاري: 2050104096<br> المنطقة: الدمام<br> الحارة: الطبيشي<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.43639718,50.12418738" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7d166971a456d49054d39a80368e861e.setContent(html_1df16e8ab2d4ce04be654a5f6c5382f9);
marker_dd796d9097a63de9a6d09ac26f13aba4.bindPopup(popup_7d166971a456d49054d39a80368e861e)
;
marker_dd796d9097a63de9a6d09ac26f13aba4.setIcon(icon_af336619d2f6a1727317dbb4c246635b);
var marker_8746b0f04acb79b80b66c324807ad445 = L.marker(
[26.43661622, 50.11811705],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_e333c55585f25696f31dce6b059284a9 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_51bde7b8a073f292232946c5b09ab6f0 = L.popup({
"maxWidth": 320,
});
var html_8b3c4eed374197cb51867bbf14d5ce78 = $(`<div id="html_8b3c4eed374197cb51867bbf14d5ce78" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة شبكة المستقبل العربية للشحن</b><br> الرقم الموحد: 7029952954<br> السجل التجاري: 2050159935<br> المنطقة: الدمام<br> الحارة: الطبيشي<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.43661622,50.11811705" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_51bde7b8a073f292232946c5b09ab6f0.setContent(html_8b3c4eed374197cb51867bbf14d5ce78);
marker_8746b0f04acb79b80b66c324807ad445.bindPopup(popup_51bde7b8a073f292232946c5b09ab6f0)
;
marker_8746b0f04acb79b80b66c324807ad445.setIcon(icon_e333c55585f25696f31dce6b059284a9);
var marker_0e21cd2f216e45772262a424928e09a6 = L.marker(
[26.43676428, 50.11831304],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_77bf5c2e4f56409468869112ba6032d4 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8c151805289e274f56613599016677e2 = L.popup({
"maxWidth": 320,
});
var html_ac800a7bbdecd82712cd13f0953c8059 = $(`<div id="html_ac800a7bbdecd82712cd13f0953c8059" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مجمع اضواء سجال للخدمات الطبية</b><br> الرقم الموحد: 7001896849<br> السجل التجاري: 2050100977<br> المنطقة: الدمام<br> الحارة: الطبيشي<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.43676428,50.11831304" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8c151805289e274f56613599016677e2.setContent(html_ac800a7bbdecd82712cd13f0953c8059);
marker_0e21cd2f216e45772262a424928e09a6.bindPopup(popup_8c151805289e274f56613599016677e2)
;
marker_0e21cd2f216e45772262a424928e09a6.setIcon(icon_77bf5c2e4f56409468869112ba6032d4);
var marker_44d3162043d3fe4acf799af5deb6075f = L.marker(
[26.4373035012282, 50.1229256017599],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_662f8b5f667fbb95d24a15559fb27c34 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_87748af03cd83a0b779e0f524d6bc860 = L.popup({
"maxWidth": 320,
});
var html_3b3ec52647c19d9221811f60a9b52f30 = $(`<div id="html_3b3ec52647c19d9221811f60a9b52f30" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة السلوى الخليجية للتجارة</b><br> الرقم الموحد: 7009424008<br> السجل التجاري: 2050109111<br> المنطقة: الدمام<br> الحارة: الطبيشي<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4373035012282,50.1229256017599" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_87748af03cd83a0b779e0f524d6bc860.setContent(html_3b3ec52647c19d9221811f60a9b52f30);
marker_44d3162043d3fe4acf799af5deb6075f.bindPopup(popup_87748af03cd83a0b779e0f524d6bc860)
;
marker_44d3162043d3fe4acf799af5deb6075f.setIcon(icon_662f8b5f667fbb95d24a15559fb27c34);
var marker_98d7aad02f512a0b048ccef1729be2fd = L.marker(
[26.3841809186334, 50.12603402137756],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_3c1d047dd08a6da233b2f3a00c623162 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_adcaadec017ae00bf8e4562c3c9d8ede = L.popup({
"maxWidth": 320,
});
var html_fc11e98ce6604953f1fcf33d88d1f2aa = $(`<div id="html_fc11e98ce6604953f1fcf33d88d1f2aa" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نادي وينرز لكرة القدم</b><br> الرقم الموحد: 7025828810<br> السجل التجاري: 2050148922<br> المنطقة: الدمام<br> الحارة: البساتين<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.3841809186334,50.12603402137756" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_adcaadec017ae00bf8e4562c3c9d8ede.setContent(html_fc11e98ce6604953f1fcf33d88d1f2aa);
marker_98d7aad02f512a0b048ccef1729be2fd.bindPopup(popup_adcaadec017ae00bf8e4562c3c9d8ede)
;
marker_98d7aad02f512a0b048ccef1729be2fd.setIcon(icon_3c1d047dd08a6da233b2f3a00c623162);
var marker_d0792893f284f72ac7bc2a006329fe49 = L.marker(
[26.39070195842, 50.1242698672309],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_5e00d4e9b87ad180b998b582a6e6e60a = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_028417a3167ee5f2bf4dfc286d8bc846 = L.popup({
"maxWidth": 320,
});
var html_5da045c6cf09f06c79a9acf20dc98519 = $(`<div id="html_5da045c6cf09f06c79a9acf20dc98519" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الجائزة الكبرى للترفيه</b><br> الرقم الموحد: 7001690648<br> السجل التجاري: 2051046662<br> المنطقة: الدمام<br> الحارة: البساتين<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.39070195842,50.1242698672309" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_028417a3167ee5f2bf4dfc286d8bc846.setContent(html_5da045c6cf09f06c79a9acf20dc98519);
marker_d0792893f284f72ac7bc2a006329fe49.bindPopup(popup_028417a3167ee5f2bf4dfc286d8bc846)
;
marker_d0792893f284f72ac7bc2a006329fe49.setIcon(icon_5e00d4e9b87ad180b998b582a6e6e60a);
var marker_8912c499768eedf1e39bf4488f37c63f = L.marker(
[26.40225615, 50.12620627],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_bd35e8cc6bc1424c0eeb54528bce1693 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_55c0c0e3deb50dbcabfce1fc3194d3a5 = L.popup({
"maxWidth": 320,
});
var html_4787ec60f8ba5b346429c6fdd3876bbf = $(`<div id="html_4787ec60f8ba5b346429c6fdd3876bbf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>المختبر الخليجي للطاقة المتجددة</b><br> الرقم الموحد: 7009407540<br> السجل التجاري: 2050108058<br> المنطقة: الدمام<br> الحارة: البساتين<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40225615,50.12620627" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_55c0c0e3deb50dbcabfce1fc3194d3a5.setContent(html_4787ec60f8ba5b346429c6fdd3876bbf);
marker_8912c499768eedf1e39bf4488f37c63f.bindPopup(popup_55c0c0e3deb50dbcabfce1fc3194d3a5)
;
marker_8912c499768eedf1e39bf4488f37c63f.setIcon(icon_bd35e8cc6bc1424c0eeb54528bce1693);
var marker_83eb9f01a04b030dfaf6e0bc5e76965e = L.marker(
[26.377333531104, 50.1480579779271],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_064d3a154913a9d64d9186f2d06db66c = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9833caa382593ad18673bf1799d9e78e = L.popup({
"maxWidth": 320,
});
var html_59530dfb28d03523af7d0478b9f92467 = $(`<div id="html_59530dfb28d03523af7d0478b9f92467" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المعماريون الخليجيون للمقاولات</b><br> الرقم الموحد: 7008057486<br> السجل التجاري: 2050053791<br> المنطقة: الدمام<br> الحارة: النهضة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.377333531104,50.1480579779271" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9833caa382593ad18673bf1799d9e78e.setContent(html_59530dfb28d03523af7d0478b9f92467);
marker_83eb9f01a04b030dfaf6e0bc5e76965e.bindPopup(popup_9833caa382593ad18673bf1799d9e78e)
;
marker_83eb9f01a04b030dfaf6e0bc5e76965e.setIcon(icon_064d3a154913a9d64d9186f2d06db66c);
var marker_35b24756d6fa3ec1d5059e22fab2e764 = L.marker(
[26.37835537, 50.14809472],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_a84f8ed8ed852644906eda1eb12ff2d0 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b865a54913a65b7c75c024d093158de9 = L.popup({
"maxWidth": 320,
});
var html_a4320d5c4e2ae01ce42d310882be9f1c = $(`<div id="html_a4320d5c4e2ae01ce42d310882be9f1c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الخلية المتحدة للخدمات البيئية</b><br> الرقم الموحد: 7011141004<br> السجل التجاري: 3550029553<br> المنطقة: الدمام<br> الحارة: النهضة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.37835537,50.14809472" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b865a54913a65b7c75c024d093158de9.setContent(html_a4320d5c4e2ae01ce42d310882be9f1c);
marker_35b24756d6fa3ec1d5059e22fab2e764.bindPopup(popup_b865a54913a65b7c75c024d093158de9)
;
marker_35b24756d6fa3ec1d5059e22fab2e764.setIcon(icon_a84f8ed8ed852644906eda1eb12ff2d0);
var marker_e426a12ad207f8da008fad58f47778c1 = L.marker(
[26.3799911069586, 50.1463876059036],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_80ba10678bdf839ae2503143e97ed37c = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4b784bbdc6ecdb86476b3bc286e3dcfc = L.popup({
"maxWidth": 320,
});
var html_5f4ea553b1ef2ef406e5df5e8e4f9bba = $(`<div id="html_5f4ea553b1ef2ef406e5df5e8e4f9bba" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة إمدادات المركبة للتجارة شركة شخص واحد</b><br> الرقم الموحد: 7017975470<br> السجل التجاري: 2050137637<br> المنطقة: الدمام<br> الحارة: النهضة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.3799911069586,50.1463876059036" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4b784bbdc6ecdb86476b3bc286e3dcfc.setContent(html_5f4ea553b1ef2ef406e5df5e8e4f9bba);
marker_e426a12ad207f8da008fad58f47778c1.bindPopup(popup_4b784bbdc6ecdb86476b3bc286e3dcfc)
;
marker_e426a12ad207f8da008fad58f47778c1.setIcon(icon_80ba10678bdf839ae2503143e97ed37c);
var marker_73550e316acd638d9ae50ab773019878 = L.marker(
[26.38294413550839, 50.14397133462909],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_41fd4a5e543458e5286dba0c2d3b80e6 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d7bc24b50aefa7dfce48fbc60e61ef00 = L.popup({
"maxWidth": 320,
});
var html_e9f4970551f530db7b2d01845e2ffca4 = $(`<div id="html_e9f4970551f530db7b2d01845e2ffca4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة حلتي الجديده للتزيين النسائي</b><br> الرقم الموحد: 7037879231<br> السجل التجاري: 2050181205<br> المنطقة: الدمام<br> الحارة: النهضة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.38294413550839,50.14397133462909" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d7bc24b50aefa7dfce48fbc60e61ef00.setContent(html_e9f4970551f530db7b2d01845e2ffca4);
marker_73550e316acd638d9ae50ab773019878.bindPopup(popup_d7bc24b50aefa7dfce48fbc60e61ef00)
;
marker_73550e316acd638d9ae50ab773019878.setIcon(icon_41fd4a5e543458e5286dba0c2d3b80e6);
var marker_d78b5f99b54d9e51968ed3624fbbe994 = L.marker(
[26.38427427, 50.14603781],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_906316a22ac506f6f45ed214bf9fb653 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_02683956abc8966c24e506f7aa0e815e = L.popup({
"maxWidth": 320,
});
var html_9bce0002d086c9be6b7cb96f59e93f66 = $(`<div id="html_9bce0002d086c9be6b7cb96f59e93f66" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>بنك الخليج الدولي السعودية</b><br> الرقم الموحد: 7001399042<br> السجل التجاري: 2052001920<br> المنطقة: الدمام<br> الحارة: النهضة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.38427427,50.14603781" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_02683956abc8966c24e506f7aa0e815e.setContent(html_9bce0002d086c9be6b7cb96f59e93f66);
marker_d78b5f99b54d9e51968ed3624fbbe994.bindPopup(popup_02683956abc8966c24e506f7aa0e815e)
;
marker_d78b5f99b54d9e51968ed3624fbbe994.setIcon(icon_906316a22ac506f6f45ed214bf9fb653);
var marker_4749ea0a8d43f38eb05ade2e0b807cb1 = L.marker(
[26.38660406, 50.13955803],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_3672fc508b251c4d556ab27a54630920 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8eca5a573acff39c2e594ced24801ba6 = L.popup({
"maxWidth": 320,
});
var html_efd0f6c117bcdfb9f11fb0f506a41f21 = $(`<div id="html_efd0f6c117bcdfb9f11fb0f506a41f21" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كونتيننتال واير كلوث العربية</b><br> الرقم الموحد: 7029764102<br> السجل التجاري: 2050159457<br> المنطقة: الدمام<br> الحارة: النهضة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.38660406,50.13955803" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8eca5a573acff39c2e594ced24801ba6.setContent(html_efd0f6c117bcdfb9f11fb0f506a41f21);
marker_4749ea0a8d43f38eb05ade2e0b807cb1.bindPopup(popup_8eca5a573acff39c2e594ced24801ba6)
;
marker_4749ea0a8d43f38eb05ade2e0b807cb1.setIcon(icon_3672fc508b251c4d556ab27a54630920);
var marker_f9273bbd4d0725510e54e949514b4620 = L.marker(
[26.38739458, 50.14320417],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_0ae3c808bab4bfec7f64c7d4dbcbd6e2 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1782d7f62591558e4162ea356701f32c = L.popup({
"maxWidth": 320,
});
var html_62ba44d279beac6380de0ea53e6f2b2e = $(`<div id="html_62ba44d279beac6380de0ea53e6f2b2e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة قمه الكهرباء للصناعات الكهربائيه</b><br> الرقم الموحد: 7001672257<br> السجل التجاري: 2050076810<br> المنطقة: الدمام<br> الحارة: النهضة<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.38739458,50.14320417" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1782d7f62591558e4162ea356701f32c.setContent(html_62ba44d279beac6380de0ea53e6f2b2e);
marker_f9273bbd4d0725510e54e949514b4620.bindPopup(popup_1782d7f62591558e4162ea356701f32c)
;
marker_f9273bbd4d0725510e54e949514b4620.setIcon(icon_0ae3c808bab4bfec7f64c7d4dbcbd6e2);
var marker_7318e923f24b10f81518ebbd20162094 = L.marker(
[26.40225348, 50.14347911],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_ce17247e0d0d85a02c23b48ff0fddb2e = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_56d6a306964e324bc903920aa1d0710c = L.popup({
"maxWidth": 320,
});
var html_b5dca88c64abdf63f13804abe1e1dbfe = $(`<div id="html_b5dca88c64abdf63f13804abe1e1dbfe" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة يوسف بن احمد كانو المحدودة</b><br> الرقم الموحد: 7000074570<br> السجل التجاري: 2050000443<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40225348,50.14347911" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_56d6a306964e324bc903920aa1d0710c.setContent(html_b5dca88c64abdf63f13804abe1e1dbfe);
marker_7318e923f24b10f81518ebbd20162094.bindPopup(popup_56d6a306964e324bc903920aa1d0710c)
;
marker_7318e923f24b10f81518ebbd20162094.setIcon(icon_ce17247e0d0d85a02c23b48ff0fddb2e);
var marker_5a7e31131690f38875da838b2bde49bb = L.marker(
[26.40400916, 50.15170915],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_ee1bd59147111845d07703697bcf5f77 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_28d4a6b3f1ce5983fb97b2a4c0e2f4fe = L.popup({
"maxWidth": 320,
});
var html_8e7d9819a81bd4fe2ce04a02f7f475a9 = $(`<div id="html_8e7d9819a81bd4fe2ce04a02f7f475a9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بابكوك بورسيج سيرفيس العربية</b><br> الرقم الموحد: 7001520464<br> السجل التجاري: 2050052162<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40400916,50.15170915" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_28d4a6b3f1ce5983fb97b2a4c0e2f4fe.setContent(html_8e7d9819a81bd4fe2ce04a02f7f475a9);
marker_5a7e31131690f38875da838b2bde49bb.bindPopup(popup_28d4a6b3f1ce5983fb97b2a4c0e2f4fe)
;
marker_5a7e31131690f38875da838b2bde49bb.setIcon(icon_ee1bd59147111845d07703697bcf5f77);
var marker_cb10d8aaedd4974880b6378694dcb603 = L.marker(
[26.40536724809915, 50.14554179500521],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_685ed12e67991035ebaeedd47711fad5 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_49e0cdb043791f00e77121e138fd2933 = L.popup({
"maxWidth": 320,
});
var html_93774466a5cc143fbc0fbe1b5f223841 = $(`<div id="html_93774466a5cc143fbc0fbe1b5f223841" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جلف انكون العالمية المحدودة</b><br> الرقم الموحد: 7028569791<br> السجل التجاري: 2050156751<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40536724809915,50.14554179500521" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_49e0cdb043791f00e77121e138fd2933.setContent(html_93774466a5cc143fbc0fbe1b5f223841);
marker_cb10d8aaedd4974880b6378694dcb603.bindPopup(popup_49e0cdb043791f00e77121e138fd2933)
;
marker_cb10d8aaedd4974880b6378694dcb603.setIcon(icon_685ed12e67991035ebaeedd47711fad5);
var marker_e1017b3bdba431e9f9d62cc122db10fb = L.marker(
[26.40544946, 50.1515534],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_fa249b7adf56275ac0aab7f7868326f0 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_159d8422405c2f0b7e8175346d8aea8c = L.popup({
"maxWidth": 320,
});
var html_12ccb0128fa25790b7b44e2f8ddecb75 = $(`<div id="html_12ccb0128fa25790b7b44e2f8ddecb75" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دليل الشبكة للتجارة</b><br> الرقم الموحد: 7010473986<br> السجل التجاري: 2051028663<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40544946,50.1515534" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_159d8422405c2f0b7e8175346d8aea8c.setContent(html_12ccb0128fa25790b7b44e2f8ddecb75);
marker_e1017b3bdba431e9f9d62cc122db10fb.bindPopup(popup_159d8422405c2f0b7e8175346d8aea8c)
;
marker_e1017b3bdba431e9f9d62cc122db10fb.setIcon(icon_fa249b7adf56275ac0aab7f7868326f0);
var marker_b2dca67f1be3f9239f843685f9f34dcf = L.marker(
[26.4067664685505, 50.1423136699862],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_a08bc53d03c812378602a9be91a262c6 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0cebf8df55fd28aea51f1b66d57f0e16 = L.popup({
"maxWidth": 320,
});
var html_39bdff8beeecc6ed303d58a7bb607590 = $(`<div id="html_39bdff8beeecc6ed303d58a7bb607590" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كولجيت بالموليف العربية المحدودة</b><br> الرقم الموحد: 7001344980<br> السجل التجاري: 2051014036<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4067664685505,50.1423136699862" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0cebf8df55fd28aea51f1b66d57f0e16.setContent(html_39bdff8beeecc6ed303d58a7bb607590);
marker_b2dca67f1be3f9239f843685f9f34dcf.bindPopup(popup_0cebf8df55fd28aea51f1b66d57f0e16)
;
marker_b2dca67f1be3f9239f843685f9f34dcf.setIcon(icon_a08bc53d03c812378602a9be91a262c6);
var marker_eeac784e1eec15e859f7927ab179a2a4 = L.marker(
[26.40714450395834, 50.13775261379351],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_18a9b4aa06f60ee9d9cf7f9b1cd19d87 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3bd0e0746c260eb340e58769d0b5c5f1 = L.popup({
"maxWidth": 320,
});
var html_db6efa61646b19260043996a6097ecac = $(`<div id="html_db6efa61646b19260043996a6097ecac" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الادوات العلاجية التجارية</b><br> الرقم الموحد: 7043189229<br> السجل التجاري: 2050203399<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40714450395834,50.13775261379351" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3bd0e0746c260eb340e58769d0b5c5f1.setContent(html_db6efa61646b19260043996a6097ecac);
marker_eeac784e1eec15e859f7927ab179a2a4.bindPopup(popup_3bd0e0746c260eb340e58769d0b5c5f1)
;
marker_eeac784e1eec15e859f7927ab179a2a4.setIcon(icon_18a9b4aa06f60ee9d9cf7f9b1cd19d87);
var marker_b2c10bf7f29377b358bcd94351de6c1c = L.marker(
[26.4073179, 50.14372746],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_76199a87cd6a4ca3b1a90d66732855e4 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ca51138fa6834b690791b7ffd77b4c11 = L.popup({
"maxWidth": 320,
});
var html_5149aabd54161de53f1f506c7dfbbfb9 = $(`<div id="html_5149aabd54161de53f1f506c7dfbbfb9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة السعودية التبادلية الدولية المحدودة شركة شخص واحد</b><br> الرقم الموحد: 7006378066<br> السجل التجاري: 2050098920<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4073179,50.14372746" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ca51138fa6834b690791b7ffd77b4c11.setContent(html_5149aabd54161de53f1f506c7dfbbfb9);
marker_b2c10bf7f29377b358bcd94351de6c1c.bindPopup(popup_ca51138fa6834b690791b7ffd77b4c11)
;
marker_b2c10bf7f29377b358bcd94351de6c1c.setIcon(icon_76199a87cd6a4ca3b1a90d66732855e4);
var marker_04a6b32bcd8669d8faa051dda0f8af25 = L.marker(
[26.40736702916376, 50.1385879013301],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_f6905fb44e97f506f95512ea3e579b40 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0383342e96c8c875b67fa45dfc4e8a49 = L.popup({
"maxWidth": 320,
});
var html_cb72c53a389ad4df94131b5830c6cbf9 = $(`<div id="html_cb72c53a389ad4df94131b5830c6cbf9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بايلوج انترناشونال السعودية</b><br> الرقم الموحد: 7001530299<br> السجل التجاري: 2055008795<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40736702916376,50.1385879013301" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0383342e96c8c875b67fa45dfc4e8a49.setContent(html_cb72c53a389ad4df94131b5830c6cbf9);
marker_04a6b32bcd8669d8faa051dda0f8af25.bindPopup(popup_0383342e96c8c875b67fa45dfc4e8a49)
;
marker_04a6b32bcd8669d8faa051dda0f8af25.setIcon(icon_f6905fb44e97f506f95512ea3e579b40);
var marker_97acea19f6e33690cbb7f4d3fab036db = L.marker(
[26.40743903, 50.13974104],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_eceeb4460011fc2ac82e1451a716040c = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_aebbe04f1e1b7575bc2bb6f0d6a997c2 = L.popup({
"maxWidth": 320,
});
var html_d81f0b25404480e3ebf24ed3b0f195fe = $(`<div id="html_d81f0b25404480e3ebf24ed3b0f195fe" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دايفرسي العربية السعودية المحدودة</b><br> الرقم الموحد: 7001793145<br> السجل التجاري: 4030255069<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40743903,50.13974104" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_aebbe04f1e1b7575bc2bb6f0d6a997c2.setContent(html_d81f0b25404480e3ebf24ed3b0f195fe);
marker_97acea19f6e33690cbb7f4d3fab036db.bindPopup(popup_aebbe04f1e1b7575bc2bb6f0d6a997c2)
;
marker_97acea19f6e33690cbb7f4d3fab036db.setIcon(icon_eceeb4460011fc2ac82e1451a716040c);
var marker_c924cbec130b05fe0745c84d7b03f843 = L.marker(
[26.40761409705221, 50.13764082730027],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_ca9ae87e1873acf84c65b6b3e9cec361 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_444cb2089a0f417282426c9b105e1f6a = L.popup({
"maxWidth": 320,
});
var html_d4b3e8c305d4502532b0f0ed145a2498 = $(`<div id="html_d4b3e8c305d4502532b0f0ed145a2498" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مارتريد السعودية</b><br> الرقم الموحد: 7004718669<br> السجل التجاري: 2050118123<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40761409705221,50.13764082730027" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_444cb2089a0f417282426c9b105e1f6a.setContent(html_d4b3e8c305d4502532b0f0ed145a2498);
marker_c924cbec130b05fe0745c84d7b03f843.bindPopup(popup_444cb2089a0f417282426c9b105e1f6a)
;
marker_c924cbec130b05fe0745c84d7b03f843.setIcon(icon_ca9ae87e1873acf84c65b6b3e9cec361);
var marker_3bc6d079ecc5d9bfeef5d904efd6002c = L.marker(
[26.40764368724014, 50.13805122630141],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_1126222dabb513fc913c2cecc2f63026 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3996b5745c9f5bbb499656c2d62eb597 = L.popup({
"maxWidth": 320,
});
var html_8e4cbc7c24f71c0011c13426726c5f26 = $(`<div id="html_8e4cbc7c24f71c0011c13426726c5f26" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فرع الشركة الخليجية للخدمات البترولية</b><br> الرقم الموحد: 7011632770<br> السجل التجاري: 2050060604<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40764368724014,50.13805122630141" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3996b5745c9f5bbb499656c2d62eb597.setContent(html_8e4cbc7c24f71c0011c13426726c5f26);
marker_3bc6d079ecc5d9bfeef5d904efd6002c.bindPopup(popup_3996b5745c9f5bbb499656c2d62eb597)
;
marker_3bc6d079ecc5d9bfeef5d904efd6002c.setIcon(icon_1126222dabb513fc913c2cecc2f63026);
var marker_c227c5f72c86e1c8d6d31d11dfaa753b = L.marker(
[26.40769229, 50.13772576],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_31e6f56f40e7b2c27a7e7331308af75d = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a1d5189f84153a87f2ecdae8ffa94d1b = L.popup({
"maxWidth": 320,
});
var html_aba000f2d456c7891c56d0ca67b005df = $(`<div id="html_aba000f2d456c7891c56d0ca67b005df" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة لوسي سويتش جير العربية المحدودة</b><br> الرقم الموحد: 7001679484<br> السجل التجاري: 2050097467<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40769229,50.13772576" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a1d5189f84153a87f2ecdae8ffa94d1b.setContent(html_aba000f2d456c7891c56d0ca67b005df);
marker_c227c5f72c86e1c8d6d31d11dfaa753b.bindPopup(popup_a1d5189f84153a87f2ecdae8ffa94d1b)
;
marker_c227c5f72c86e1c8d6d31d11dfaa753b.setIcon(icon_31e6f56f40e7b2c27a7e7331308af75d);
var marker_23cc01560c33cd565afbb3a856441b86 = L.marker(
[26.40775955, 50.13820856],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_95006b29dc2b481bf7bb8d14d03c1fea = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ac6e9be526a0e180dea530c764963cfd = L.popup({
"maxWidth": 320,
});
var html_64c3ff89178852f1c9289312c29e8e1c = $(`<div id="html_64c3ff89178852f1c9289312c29e8e1c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كوسل السعودية للحفر المحدودة</b><br> الرقم الموحد: 7009413522<br> السجل التجاري: 2050109135<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40775955,50.13820856" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ac6e9be526a0e180dea530c764963cfd.setContent(html_64c3ff89178852f1c9289312c29e8e1c);
marker_23cc01560c33cd565afbb3a856441b86.bindPopup(popup_ac6e9be526a0e180dea530c764963cfd)
;
marker_23cc01560c33cd565afbb3a856441b86.setIcon(icon_95006b29dc2b481bf7bb8d14d03c1fea);
var marker_5b67fc6d3a0c8e1a57ea126c4a0cafe5 = L.marker(
[26.4078547662909, 50.1381553320524],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_f241f2640b3a263b2e239372baf40e7c = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_af5ffc5dde34e9bf911645c88a95abca = L.popup({
"maxWidth": 320,
});
var html_f5cd2b2598a881b5cc0d256c0eb5c83e = $(`<div id="html_f5cd2b2598a881b5cc0d256c0eb5c83e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مصنع شركة الستوم السعوديه لمفاتيح الضغط</b><br> الرقم الموحد: 7009058491<br> السجل التجاري: 2050104610<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4077947662909,50.1381553320524" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_af5ffc5dde34e9bf911645c88a95abca.setContent(html_f5cd2b2598a881b5cc0d256c0eb5c83e);
marker_5b67fc6d3a0c8e1a57ea126c4a0cafe5.bindPopup(popup_af5ffc5dde34e9bf911645c88a95abca)
;
marker_5b67fc6d3a0c8e1a57ea126c4a0cafe5.setIcon(icon_f241f2640b3a263b2e239372baf40e7c);
var marker_8e19bc568b80543f11659881a8ebe684 = L.marker(
[26.407813307310562, 50.138212395443375],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_47012dea84a22f5e5493a523cfcd69a4 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a2f8d29f2add0efdcbd80893103c589a = L.popup({
"maxWidth": 320,
});
var html_55977d76f04670176434e32a82e7b84f = $(`<div id="html_55977d76f04670176434e32a82e7b84f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة باكرز بلس اينرجي سيرفيسز</b><br> الرقم الموحد: 7001617138<br> السجل التجاري: 2051042249<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4077947662909,50.1381553320524" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a2f8d29f2add0efdcbd80893103c589a.setContent(html_55977d76f04670176434e32a82e7b84f);
marker_8e19bc568b80543f11659881a8ebe684.bindPopup(popup_a2f8d29f2add0efdcbd80893103c589a)
;
marker_8e19bc568b80543f11659881a8ebe684.setIcon(icon_47012dea84a22f5e5493a523cfcd69a4);
var marker_f3d83b002c670147656d08001d41ebc3 = L.marker(
[26.407746225271236, 50.13819059916754],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_884e750ea857ace483179a12e0d53976 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5e321fbe11a402a6c951dca99491ec92 = L.popup({
"maxWidth": 320,
});
var html_7421b7c574614bacaf51f0d845fa122c = $(`<div id="html_7421b7c574614bacaf51f0d845fa122c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة إن إم دي سي إنيرجي السعودية</b><br> الرقم الموحد: 7000470315<br> السجل التجاري: 2051008056<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4077947662909,50.1381553320524" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5e321fbe11a402a6c951dca99491ec92.setContent(html_7421b7c574614bacaf51f0d845fa122c);
marker_f3d83b002c670147656d08001d41ebc3.bindPopup(popup_5e321fbe11a402a6c951dca99491ec92)
;
marker_f3d83b002c670147656d08001d41ebc3.setIcon(icon_884e750ea857ace483179a12e0d53976);
var marker_5f2bfb08759a868adbb99d476325ee93 = L.marker(
[26.407746225271236, 50.13812006493726],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_2f70e77392140d021a31b066431b95e3 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3be7c48863307f6b11daa79f7da01b80 = L.popup({
"maxWidth": 320,
});
var html_90320a7e31f6be85341191958d14e615 = $(`<div id="html_90320a7e31f6be85341191958d14e615" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الخطوط الجوية الملكية الهولندية</b><br> الرقم الموحد: 7000034244<br> السجل التجاري: 2052000144<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4077947662909,50.1381553320524" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3be7c48863307f6b11daa79f7da01b80.setContent(html_90320a7e31f6be85341191958d14e615);
marker_5f2bfb08759a868adbb99d476325ee93.bindPopup(popup_3be7c48863307f6b11daa79f7da01b80)
;
marker_5f2bfb08759a868adbb99d476325ee93.setIcon(icon_2f70e77392140d021a31b066431b95e3);
var marker_e1e0d77c475ccd48f9a3235970ca3bed = L.marker(
[26.407813307310562, 50.13809826866142],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_35e27aa80ec932df6d8978ae00af9f5c = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2f85940a7d2a4ba5fc01538de2176ef9 = L.popup({
"maxWidth": 320,
});
var html_6456339846065f51727d089b26cac231 = $(`<div id="html_6456339846065f51727d089b26cac231" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الجابر للرافعات الثقيلة والنقليات المحدودة</b><br> الرقم الموحد: 7001597967<br> السجل التجاري: 2050065212<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4077947662909,50.1381553320524" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2f85940a7d2a4ba5fc01538de2176ef9.setContent(html_6456339846065f51727d089b26cac231);
marker_e1e0d77c475ccd48f9a3235970ca3bed.bindPopup(popup_2f85940a7d2a4ba5fc01538de2176ef9)
;
marker_e1e0d77c475ccd48f9a3235970ca3bed.setIcon(icon_35e27aa80ec932df6d8978ae00af9f5c);
var marker_c566012146f013cee186dfb5bbe83bf6 = L.marker(
[26.40785477, 50.13815533],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_eb4bf3311012f953d8ae3d8cf2932de3 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_465c7cbd8cf1795010ac2cc904e8aae1 = L.popup({
"maxWidth": 320,
});
var html_d7c1cb6cc2902c639f926b4f82eedc4d = $(`<div id="html_d7c1cb6cc2902c639f926b4f82eedc4d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فويستك سولوشنز</b><br> الرقم الموحد: 7011458754<br> السجل التجاري: 2050069817<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40779477,50.13815533" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_465c7cbd8cf1795010ac2cc904e8aae1.setContent(html_d7c1cb6cc2902c639f926b4f82eedc4d);
marker_c566012146f013cee186dfb5bbe83bf6.bindPopup(popup_465c7cbd8cf1795010ac2cc904e8aae1)
;
marker_c566012146f013cee186dfb5bbe83bf6.setIcon(icon_eb4bf3311012f953d8ae3d8cf2932de3);
var marker_1121eab669aad68e065ca1bf3051465d = L.marker(
[26.407734769999998, 50.13815533],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_9189832f8da0b6c389e127330c496040 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a4194d96e8108989775b704d47d80ca2 = L.popup({
"maxWidth": 320,
});
var html_45c2ef40e6c88c968a892c89af1363d2 = $(`<div id="html_45c2ef40e6c88c968a892c89af1363d2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اويل سيرف العربية السعودية المحدودة</b><br> الرقم الموحد: 7004687922<br> السجل التجاري: 2050117992<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40779477,50.13815533" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a4194d96e8108989775b704d47d80ca2.setContent(html_45c2ef40e6c88c968a892c89af1363d2);
marker_1121eab669aad68e065ca1bf3051465d.bindPopup(popup_a4194d96e8108989775b704d47d80ca2)
;
marker_1121eab669aad68e065ca1bf3051465d.setIcon(icon_9189832f8da0b6c389e127330c496040);
var marker_f85090ac13be101ff08420940d9ae867 = L.marker(
[26.40818191, 50.1385233],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_bd8c90f8cf5c5efefb5a5e2ef2bb20ac = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f006bbc5792f85cc2848e67631fc53ab = L.popup({
"maxWidth": 320,
});
var html_7fd4ab19b012b9eb1d94a4644cb8042c = $(`<div id="html_7fd4ab19b012b9eb1d94a4644cb8042c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة هيونداي انجنيرنج كمباني ليمتد</b><br> الرقم الموحد: 7001600621<br> السجل التجاري: 2050107792<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40818191,50.1385233" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f006bbc5792f85cc2848e67631fc53ab.setContent(html_7fd4ab19b012b9eb1d94a4644cb8042c);
marker_f85090ac13be101ff08420940d9ae867.bindPopup(popup_f006bbc5792f85cc2848e67631fc53ab)
;
marker_f85090ac13be101ff08420940d9ae867.setIcon(icon_bd8c90f8cf5c5efefb5a5e2ef2bb20ac);
var marker_58ffebfb8c266bfb87c4928568bd128d = L.marker(
[26.40831610267727, 50.13821510598063],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_4b92a2d8da74f271f02490d5ff386a5c = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c377a6705dacac4c9b952e669e5112bb = L.popup({
"maxWidth": 320,
});
var html_28ce5d04b20bf428255d0332b961baa7 = $(`<div id="html_28ce5d04b20bf428255d0332b961baa7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عبد الهادي عبد الله القحطاني</b><br> الرقم الموحد: 7038507625<br> السجل التجاري: 2050183107<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40831610267727,50.13821510598063" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c377a6705dacac4c9b952e669e5112bb.setContent(html_28ce5d04b20bf428255d0332b961baa7);
marker_58ffebfb8c266bfb87c4928568bd128d.bindPopup(popup_c377a6705dacac4c9b952e669e5112bb)
;
marker_58ffebfb8c266bfb87c4928568bd128d.setIcon(icon_4b92a2d8da74f271f02490d5ff386a5c);
var marker_2d50dfb41c4b057817c8d7f45c6cbad5 = L.marker(
[26.40885884, 50.15443584],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_0fbd168ff51cbe9138841f3a6ca04a33 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_df5704c16b71d5dd28499f1f1ebc07c9 = L.popup({
"maxWidth": 320,
});
var html_d72cc59d9f7546c8d5c51a3876134cf4 = $(`<div id="html_d72cc59d9f7546c8d5c51a3876134cf4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نور الفجر للمقاولات</b><br> الرقم الموحد: 7013464024<br> السجل التجاري: 2050050986<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40885884,50.15443584" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_df5704c16b71d5dd28499f1f1ebc07c9.setContent(html_d72cc59d9f7546c8d5c51a3876134cf4);
marker_2d50dfb41c4b057817c8d7f45c6cbad5.bindPopup(popup_df5704c16b71d5dd28499f1f1ebc07c9)
;
marker_2d50dfb41c4b057817c8d7f45c6cbad5.setIcon(icon_0fbd168ff51cbe9138841f3a6ca04a33);
var marker_34b0b7d58b540b40078e5fc6fa700a6e = L.marker(
[26.4088912371196, 50.1370978433844],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_ac18ae421c6691aedf7be8ba44a30e7b = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6fa1a53d9a05ed2d5252793e4322f1eb = L.popup({
"maxWidth": 320,
});
var html_a5d07a37e804c2c282a8a99fd10bb955 = $(`<div id="html_a5d07a37e804c2c282a8a99fd10bb955" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة العربية لصناعة الحفارات</b><br> الرقم الموحد: 7005176826<br> السجل التجاري: 2055124227<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4088912371196,50.1370978433844" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6fa1a53d9a05ed2d5252793e4322f1eb.setContent(html_a5d07a37e804c2c282a8a99fd10bb955);
marker_34b0b7d58b540b40078e5fc6fa700a6e.bindPopup(popup_6fa1a53d9a05ed2d5252793e4322f1eb)
;
marker_34b0b7d58b540b40078e5fc6fa700a6e.setIcon(icon_ac18ae421c6691aedf7be8ba44a30e7b);
var marker_3ec330cd7fb0b1228b7af086c4ff7ffb = L.marker(
[26.4093474266301, 50.1557628109951],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_5028108bb6127dbc9d84f5b20248e28c = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1bf37768e9a81690b6bbd6857d87e179 = L.popup({
"maxWidth": 320,
});
var html_4406d162f2788d93ff6e53a85f1b14d0 = $(`<div id="html_4406d162f2788d93ff6e53a85f1b14d0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اريكي للخدمات البيئية</b><br> الرقم الموحد: 7015785517<br> السجل التجاري: 2050128396<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4093474266301,50.1557628109951" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1bf37768e9a81690b6bbd6857d87e179.setContent(html_4406d162f2788d93ff6e53a85f1b14d0);
marker_3ec330cd7fb0b1228b7af086c4ff7ffb.bindPopup(popup_1bf37768e9a81690b6bbd6857d87e179)
;
marker_3ec330cd7fb0b1228b7af086c4ff7ffb.setIcon(icon_5028108bb6127dbc9d84f5b20248e28c);
var marker_3fe89d188719bde493475fa83a5f8dc0 = L.marker(
[26.40942838, 50.14891187],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_df0603b585fe3ddcc808c225f02437a1 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0d55a99a444fea6512f4c09dd3cf3ae7 = L.popup({
"maxWidth": 320,
});
var html_2dc0309b3381e4b27d777062fad34802 = $(`<div id="html_2dc0309b3381e4b27d777062fad34802" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أخماد التجارية</b><br> الرقم الموحد: 7012401456<br> السجل التجاري: 2050071790<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40942838,50.14891187" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0d55a99a444fea6512f4c09dd3cf3ae7.setContent(html_2dc0309b3381e4b27d777062fad34802);
marker_3fe89d188719bde493475fa83a5f8dc0.bindPopup(popup_0d55a99a444fea6512f4c09dd3cf3ae7)
;
marker_3fe89d188719bde493475fa83a5f8dc0.setIcon(icon_df0603b585fe3ddcc808c225f02437a1);
var marker_81df61cfaef518f6952ef2f38b2d0cc7 = L.marker(
[26.40942977615603, 50.13737750068456],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_7ba4a4f0b811e282d6aadf30655b8a2c = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ce80386b702af89800e83967f301d845 = L.popup({
"maxWidth": 320,
});
var html_774d012301c3c232bdadb36d71862376 = $(`<div id="html_774d012301c3c232bdadb36d71862376" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كوغار دريلينغ سوليوشنز العربية</b><br> الرقم الموحد: 7011025140<br> السجل التجاري: 2050240540<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40942977615603,50.13737750068456" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ce80386b702af89800e83967f301d845.setContent(html_774d012301c3c232bdadb36d71862376);
marker_81df61cfaef518f6952ef2f38b2d0cc7.bindPopup(popup_ce80386b702af89800e83967f301d845)
;
marker_81df61cfaef518f6952ef2f38b2d0cc7.setIcon(icon_7ba4a4f0b811e282d6aadf30655b8a2c);
var marker_f602c05ce9f8a3340e699888ea78cc88 = L.marker(
[26.40960263, 50.15589348],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_33c9efd98bae1a20029054ce81e21fbe = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_890ffc57ed6202b0b42bea40eaf826ce = L.popup({
"maxWidth": 320,
});
var html_e2aeb2b68eebfde86846f2e15b33facc = $(`<div id="html_e2aeb2b68eebfde86846f2e15b33facc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة حلول المرافق التجارية</b><br> الرقم الموحد: 7011001588<br> السجل التجاري: 1010360283<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.40960263,50.15589348" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_890ffc57ed6202b0b42bea40eaf826ce.setContent(html_e2aeb2b68eebfde86846f2e15b33facc);
marker_f602c05ce9f8a3340e699888ea78cc88.bindPopup(popup_890ffc57ed6202b0b42bea40eaf826ce)
;
marker_f602c05ce9f8a3340e699888ea78cc88.setIcon(icon_33c9efd98bae1a20029054ce81e21fbe);
var marker_996dc16d530ce56a92ddfb85cb50bdfe = L.marker(
[26.411044572024, 50.1335697666493],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_57c732f4d73b79986e95256dc5d412c0 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7477b1c291bc6897af90a88b108cec43 = L.popup({
"maxWidth": 320,
});
var html_1fda29bb41052f6fefca974e7c5a55cd = $(`<div id="html_1fda29bb41052f6fefca974e7c5a55cd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أن أو في العربية السعودية للتجارة</b><br> الرقم الموحد: 7009319307<br> السجل التجاري: 2050103839<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.410984572024,50.1335697666493" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7477b1c291bc6897af90a88b108cec43.setContent(html_1fda29bb41052f6fefca974e7c5a55cd);
marker_996dc16d530ce56a92ddfb85cb50bdfe.bindPopup(popup_7477b1c291bc6897af90a88b108cec43)
;
marker_996dc16d530ce56a92ddfb85cb50bdfe.setIcon(icon_57c732f4d73b79986e95256dc5d412c0);
var marker_ebc04fbcb2947d8a1dbb8d02c9cc9cc5 = L.marker(
[26.410924572023998, 50.1335697666493],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_e0f4decfc5c15c71d0c096e2b6e34402 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_442335e5f51b2683e5e20829a85006c0 = L.popup({
"maxWidth": 320,
});
var html_92cf80e318ed5a0cf161361647e8b044 = $(`<div id="html_92cf80e318ed5a0cf161361647e8b044" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة السعودية ريسبونس بلس للخدمات</b><br> الرقم الموحد: 7005849166<br> السجل التجاري: 2050122048<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.410984572024,50.1335697666493" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_442335e5f51b2683e5e20829a85006c0.setContent(html_92cf80e318ed5a0cf161361647e8b044);
marker_ebc04fbcb2947d8a1dbb8d02c9cc9cc5.bindPopup(popup_442335e5f51b2683e5e20829a85006c0)
;
marker_ebc04fbcb2947d8a1dbb8d02c9cc9cc5.setIcon(icon_e0f4decfc5c15c71d0c096e2b6e34402);
var marker_d40c0ea3a4446b803a848f50caf9ff43 = L.marker(
[26.41131619, 50.13682372],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_73d7920629895cafdb8c8e2387bc3744 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b2af70a46e84b51590ae5de9c53a2563 = L.popup({
"maxWidth": 320,
});
var html_ac8f395243513d453c7db9cbacd15ca5 = $(`<div id="html_ac8f395243513d453c7db9cbacd15ca5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة علي بن قشاش العمري للمقاولات</b><br> الرقم الموحد: 7013701581<br> السجل التجاري: 2050055271<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.41131619,50.13682372" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b2af70a46e84b51590ae5de9c53a2563.setContent(html_ac8f395243513d453c7db9cbacd15ca5);
marker_d40c0ea3a4446b803a848f50caf9ff43.bindPopup(popup_b2af70a46e84b51590ae5de9c53a2563)
;
marker_d40c0ea3a4446b803a848f50caf9ff43.setIcon(icon_73d7920629895cafdb8c8e2387bc3744);
var marker_693ed746ce1ed51d9c9ea0224f6ea313 = L.marker(
[26.41149753, 50.13321272],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_e12ea727d5ebe50cf68adff01495541a = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2d67fd8f24197dfa597a77038a6de0a7 = L.popup({
"maxWidth": 320,
});
var html_553d713b89acb39c398bf85a4cb4c5da = $(`<div id="html_553d713b89acb39c398bf85a4cb4c5da" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة باطوق التجارية</b><br> الرقم الموحد: 7000706601<br> السجل التجاري: 2050013667<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.41149753,50.13321272" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2d67fd8f24197dfa597a77038a6de0a7.setContent(html_553d713b89acb39c398bf85a4cb4c5da);
marker_693ed746ce1ed51d9c9ea0224f6ea313.bindPopup(popup_2d67fd8f24197dfa597a77038a6de0a7)
;
marker_693ed746ce1ed51d9c9ea0224f6ea313.setIcon(icon_e12ea727d5ebe50cf68adff01495541a);
var marker_e32b77e0e0c1b68a46e3a13a0f6dc3d8 = L.marker(
[26.41149889832877, 50.1335649099201],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_fed20706f42db0913576899b05816e65 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b301820ae9e1de279259fddf98e9aec6 = L.popup({
"maxWidth": 320,
});
var html_74d8fc22d02e6dbfd30d220b1f9f7afd = $(`<div id="html_74d8fc22d02e6dbfd30d220b1f9f7afd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مقر مجموعة أمانة الإقليمي</b><br> الرقم الموحد: 7037932063<br> السجل التجاري: 2050181280<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.41149889832877,50.1335649099201" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b301820ae9e1de279259fddf98e9aec6.setContent(html_74d8fc22d02e6dbfd30d220b1f9f7afd);
marker_e32b77e0e0c1b68a46e3a13a0f6dc3d8.bindPopup(popup_b301820ae9e1de279259fddf98e9aec6)
;
marker_e32b77e0e0c1b68a46e3a13a0f6dc3d8.setIcon(icon_fed20706f42db0913576899b05816e65);
var marker_e77452d9c7fd374718fc3fcf03319c9d = L.marker(
[26.41159944, 50.13343103],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_7ed5654bb216bd98f30f016c034ccb8d = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_213f731da91a9b3ba32312a91df18b62 = L.popup({
"maxWidth": 320,
});
var html_3c8c04886fa16d691bc3f4e900c499b7 = $(`<div id="html_3c8c04886fa16d691bc3f4e900c499b7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة إل تي آي مايندتري المحدودة</b><br> الرقم الموحد: 7001666960<br> السجل التجاري: 2050076091<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.41159944,50.13343103" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_213f731da91a9b3ba32312a91df18b62.setContent(html_3c8c04886fa16d691bc3f4e900c499b7);
marker_e77452d9c7fd374718fc3fcf03319c9d.bindPopup(popup_213f731da91a9b3ba32312a91df18b62)
;
marker_e77452d9c7fd374718fc3fcf03319c9d.setIcon(icon_7ed5654bb216bd98f30f016c034ccb8d);
var marker_2a2bfbbf53a38ba939a44224f4a30f1e = L.marker(
[26.4116501, 50.14499787],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_1db3e0ac32878e8a03bb5b7b0e4f571b = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_535b6c3cf29d7b40bda9ae3333b0ffef = L.popup({
"maxWidth": 320,
});
var html_35295f97c88bbfe05408fcfe8f28f0c3 = $(`<div id="html_35295f97c88bbfe05408fcfe8f28f0c3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة لمار الماسية للتجارة شركة شخص واحد</b><br> الرقم الموحد: 7033580551<br> السجل التجاري: 2050166671<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.4116501,50.14499787" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_535b6c3cf29d7b40bda9ae3333b0ffef.setContent(html_35295f97c88bbfe05408fcfe8f28f0c3);
marker_2a2bfbbf53a38ba939a44224f4a30f1e.bindPopup(popup_535b6c3cf29d7b40bda9ae3333b0ffef)
;
marker_2a2bfbbf53a38ba939a44224f4a30f1e.setIcon(icon_1db3e0ac32878e8a03bb5b7b0e4f571b);
var marker_0570ac7e1f8e707a90a90cdf9acc8ba3 = L.marker(
[26.41168253, 50.1509846],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_fb4d64e119acc9f871a542cde58d2189 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fdbdc13e0eaae1c5c41fb961390ac9a0 = L.popup({
"maxWidth": 320,
});
var html_9ed1b9bd8e5129ce3f43d6f2d08d49b2 = $(`<div id="html_9ed1b9bd8e5129ce3f43d6f2d08d49b2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أساس الريادة للمقاولات العامة</b><br> الرقم الموحد: 7008358363<br> السجل التجاري: 1135101788<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.41168253,50.1509846" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fdbdc13e0eaae1c5c41fb961390ac9a0.setContent(html_9ed1b9bd8e5129ce3f43d6f2d08d49b2);
marker_0570ac7e1f8e707a90a90cdf9acc8ba3.bindPopup(popup_fdbdc13e0eaae1c5c41fb961390ac9a0)
;
marker_0570ac7e1f8e707a90a90cdf9acc8ba3.setIcon(icon_fb4d64e119acc9f871a542cde58d2189);
var marker_58255d003ce726dd8e9303eb7821b088 = L.marker(
[26.41227836, 50.13828666],
{
}
).addTo(map_a67e2c7e59e7b1683c41286e6543029e);
var icon_ff0df3690687ca7d0151d7a3f05705c9 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c429fcb9ad93f7d02176932ad8a67aad = L.popup({
"maxWidth": 320,
});
var html_d83b86b813fcd6435bc0d435b7f611e7 = $(`<div id="html_d83b86b813fcd6435bc0d435b7f611e7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الصخيرات للتجارة شركة شخص واحد</b><br> الرقم الموحد: 7006301191<br> السجل التجاري: 1010564994<br> المنطقة: الدمام<br> الحارة: الخالدية الشمالية<br> <b>اسم الباحث:</b> محمد يعقوب السبع<br> <a href="https://www.google.com/maps?q=26.41227836,50.13828666" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c429fcb9ad93f7d02176932ad8a67aad.setContent(html_d83b86b813fcd6435bc0d435b7f611e7);
marker_58255d003ce726dd8e9303eb7821b088.bindPopup(popup_c429fcb9ad93f7d02176932ad8a67aad)
;
marker_58255d003ce726dd8e9303eb7821b088.setIcon(icon_ff0df3690687ca7d0151d7a3f05705c9);
</script>
</html> |