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 | <!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_9204705532e377af5254808dc9078ad8 {
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_15" onclick="
var panel = document.getElementById('stats_15');
var btn = document.getElementById('btn_stats_15');
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_15" 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;
">اميرة احمد علي الرازحي - 15</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 65</div>
<div><b>عدد الحارات:</b> 10</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• التعاون: 21</div><div>• الخبر الجنوبية: 16</div><div>• الخزامى: 11</div><div>• الجسر: 5</div><div>• صناعية الفوازية: 5</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_15_اميرة_احمد_علي_الرازحي.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:pink;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>التعاون</span>
</div>
<span style="color:#555;">(21)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:lightgray;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الخبر الجنوبية</span>
</div>
<span style="color:#555;">(16)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الخزامى</span>
</div>
<span style="color:#555;">(11)</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:darkpurple;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الجسر</span>
</div>
<span style="color:#555;">(5)</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;">(5)</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;">(2)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:gray;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>التحلية</span>
</div>
<span style="color:#555;">(2)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:beige;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الامواج</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:gray;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الصواري</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:lightgray;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>البحيرة</span>
</div>
<span style="color:#555;">(1)</span>
</div>
</div>
</div>
</div>
<div style="
position: fixed;
bottom: 8px; left: 8px;
background: rgba(255,255,255,0.85);
padding: 6px 10px;
border-radius: 10px;
font-size: 13px;
direction: rtl;
z-index: 9999;
box-shadow: 0 1px 8px rgba(0,0,0,0.15);
">
تصميم وإعداد <b>نوف الناصر</b>
</div>
<div class="folium-map" id="map_9204705532e377af5254808dc9078ad8" ></div>
</body>
<script>
var map_9204705532e377af5254808dc9078ad8 = L.map(
"map_9204705532e377af5254808dc9078ad8",
{
center: [26.22924641222256, 50.19190373673416],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_79ced7ac4d420101d858aaca1a274d55 = 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_79ced7ac4d420101d858aaca1a274d55.addTo(map_9204705532e377af5254808dc9078ad8);
var tile_layer_a7c63d095d4d41954c491d48c1c25680 = 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_a7c63d095d4d41954c491d48c1c25680.addTo(map_9204705532e377af5254808dc9078ad8);
var tile_layer_38c9079e27e76f8df5e63a4d3e0cafed = 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_38c9079e27e76f8df5e63a4d3e0cafed.addTo(map_9204705532e377af5254808dc9078ad8);
var locate_control_c55572a6c1e748aa66f05b7792c24074 = L.control.locate(
{}
).addTo(map_9204705532e377af5254808dc9078ad8);
var marker_5dff7d515ab6acfb7e6493ce7ff6dd20 = L.marker(
[26.20149300386423, 50.20391628061888],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_e9b2a400f18d773c650f58daad9a3fa3 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4387cf80baef7ea73b842b8c670f8a72 = L.popup({
"maxWidth": 320,
});
var html_1db39e7c6fea7654a19f7efacecb68ef = $(`<div id="html_1db39e7c6fea7654a19f7efacecb68ef" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة محمود محمد جناحي الطبية شخص واحد</b><br> الرقم الموحد: 7034456397<br> السجل التجاري: 2051249585<br> المنطقة: الثقبه<br> الحارة: الجسر<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.20149300386423,50.20391628061888" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4387cf80baef7ea73b842b8c670f8a72.setContent(html_1db39e7c6fea7654a19f7efacecb68ef);
marker_5dff7d515ab6acfb7e6493ce7ff6dd20.bindPopup(popup_4387cf80baef7ea73b842b8c670f8a72)
;
marker_5dff7d515ab6acfb7e6493ce7ff6dd20.setIcon(icon_e9b2a400f18d773c650f58daad9a3fa3);
var marker_43ef4b66fb28599af7b680d27bc95c2a = L.marker(
[26.2099575786828, 50.2008625027398],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_ca63612974ad524fda67e98377b78c98 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_63d2d58d2562d27df72af287eff5e8be = L.popup({
"maxWidth": 320,
});
var html_f3d8e1e2b49918ca3aee2a9e782be525 = $(`<div id="html_f3d8e1e2b49918ca3aee2a9e782be525" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مجمع الرعاية الحديثة الطبي</b><br> الرقم الموحد: 7012252842<br> السجل التجاري: 2051241669<br> المنطقة: الثقبه<br> الحارة: الجسر<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.2099575786828,50.2008625027398" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_63d2d58d2562d27df72af287eff5e8be.setContent(html_f3d8e1e2b49918ca3aee2a9e782be525);
marker_43ef4b66fb28599af7b680d27bc95c2a.bindPopup(popup_63d2d58d2562d27df72af287eff5e8be)
;
marker_43ef4b66fb28599af7b680d27bc95c2a.setIcon(icon_ca63612974ad524fda67e98377b78c98);
var marker_80fdfab1b8ed200e90deb4c62f04d1bb = L.marker(
[26.21137656, 50.19816583],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_5be804b7c7a1081ac7ce82005d385500 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_25e0ece090cc202bee9ae953b6f43e61 = L.popup({
"maxWidth": 320,
});
var html_af7153a34aba6d3e3371fb99c45f1cb5 = $(`<div id="html_af7153a34aba6d3e3371fb99c45f1cb5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نجمة المملكة للمقاولات و الخدمات</b><br> الرقم الموحد: 7001387591<br> السجل التجاري: 2051021863<br> المنطقة: الثقبه<br> الحارة: الجسر<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21137656,50.19816583" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_25e0ece090cc202bee9ae953b6f43e61.setContent(html_af7153a34aba6d3e3371fb99c45f1cb5);
marker_80fdfab1b8ed200e90deb4c62f04d1bb.bindPopup(popup_25e0ece090cc202bee9ae953b6f43e61)
;
marker_80fdfab1b8ed200e90deb4c62f04d1bb.setIcon(icon_5be804b7c7a1081ac7ce82005d385500);
var marker_6f1e1e79a1e1520bc14e4480e434fdee = L.marker(
[26.21151015, 50.19805758],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_24b14aac616a04fe84a1ca6e6d168b8f = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1f31ed55a68a7430d411296095422963 = L.popup({
"maxWidth": 320,
});
var html_fb29867ab4243556dc860508b829c50d = $(`<div id="html_fb29867ab4243556dc860508b829c50d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تيرمنال سبسي سوليوشن السعودية</b><br> الرقم الموحد: 7016703543<br> السجل التجاري: 2051229325<br> المنطقة: الثقبه<br> الحارة: الجسر<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21151015,50.19805758" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1f31ed55a68a7430d411296095422963.setContent(html_fb29867ab4243556dc860508b829c50d);
marker_6f1e1e79a1e1520bc14e4480e434fdee.bindPopup(popup_1f31ed55a68a7430d411296095422963)
;
marker_6f1e1e79a1e1520bc14e4480e434fdee.setIcon(icon_24b14aac616a04fe84a1ca6e6d168b8f);
var marker_3ff5e67cd68c0b5c3fe7fb4fa08f6bad = L.marker(
[26.21159993, 50.19796982],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_b4e9239286b2bb842ff42acb57543051 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a5dfd2a2a89facfb7918d8d1862ce89a = L.popup({
"maxWidth": 320,
});
var html_41074ae5cc9b8ddf6642add2a2bd0544 = $(`<div id="html_41074ae5cc9b8ddf6642add2a2bd0544" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة الحصان العربي لخدمات الفروسية والبيطرية شركة شخص واحد</b><br> الرقم الموحد: 7016721479<br> السجل التجاري: 2051229368<br> المنطقة: الثقبه<br> الحارة: الجسر<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21159993,50.19796982" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a5dfd2a2a89facfb7918d8d1862ce89a.setContent(html_41074ae5cc9b8ddf6642add2a2bd0544);
marker_3ff5e67cd68c0b5c3fe7fb4fa08f6bad.bindPopup(popup_a5dfd2a2a89facfb7918d8d1862ce89a)
;
marker_3ff5e67cd68c0b5c3fe7fb4fa08f6bad.setIcon(icon_b4e9239286b2bb842ff42acb57543051);
var marker_1f2ee4cba75dc2a6c6a353f82cbabf1c = L.marker(
[26.27468127527273, 50.21173414786548],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_fb529499ccb7b7bd4555a55adaa6d0d8 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_96748c0c57010fe48d278f9cd85f4c3b = L.popup({
"maxWidth": 320,
});
var html_03fa50953ccfbebd113bfe1a8ef83c01 = $(`<div id="html_03fa50953ccfbebd113bfe1a8ef83c01" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سمير الدولية المحدودة</b><br> الرقم الموحد: 7040152261<br> السجل التجاري: 2050202886<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.27468127527273,50.21173414786548" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_96748c0c57010fe48d278f9cd85f4c3b.setContent(html_03fa50953ccfbebd113bfe1a8ef83c01);
marker_1f2ee4cba75dc2a6c6a353f82cbabf1c.bindPopup(popup_96748c0c57010fe48d278f9cd85f4c3b)
;
marker_1f2ee4cba75dc2a6c6a353f82cbabf1c.setIcon(icon_fb529499ccb7b7bd4555a55adaa6d0d8);
var marker_7d97031cc039091b652bba58dcdb9ec0 = L.marker(
[26.27493050291361, 50.21247875951111],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_70c557cd9cbea2fd91470568bf322865 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_69870bf293c9aa90cac7a5312bb8be64 = L.popup({
"maxWidth": 320,
});
var html_567b32d38916c52584eda85885117c18 = $(`<div id="html_567b32d38916c52584eda85885117c18" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ماكس كونتركتنج المحدودة</b><br> الرقم الموحد: 7048942994<br> السجل التجاري: 2051263453<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.27493050291361,50.21247875951111" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_69870bf293c9aa90cac7a5312bb8be64.setContent(html_567b32d38916c52584eda85885117c18);
marker_7d97031cc039091b652bba58dcdb9ec0.bindPopup(popup_69870bf293c9aa90cac7a5312bb8be64)
;
marker_7d97031cc039091b652bba58dcdb9ec0.setIcon(icon_70c557cd9cbea2fd91470568bf322865);
var marker_9f368e70db27e59f8b05d4e870ab9588 = L.marker(
[26.27702253, 50.2083415],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_30e8032b48cf4cd9f2e45657efe5caef = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a1ffc44d0b90b76fe8938bd4c35146ed = L.popup({
"maxWidth": 320,
});
var html_0eff006586a856d0ae1613c31689ed67 = $(`<div id="html_0eff006586a856d0ae1613c31689ed67" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ساره القابضة شخص واحد</b><br> الرقم الموحد: 7011653008<br> السجل التجاري: 2051041111<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.27702253,50.2083415" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a1ffc44d0b90b76fe8938bd4c35146ed.setContent(html_0eff006586a856d0ae1613c31689ed67);
marker_9f368e70db27e59f8b05d4e870ab9588.bindPopup(popup_a1ffc44d0b90b76fe8938bd4c35146ed)
;
marker_9f368e70db27e59f8b05d4e870ab9588.setIcon(icon_30e8032b48cf4cd9f2e45657efe5caef);
var marker_237c596b9f23ee145fe58a39932641dc = L.marker(
[26.27775084, 50.20224181],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_1901e783c01adb35a075aedb28e8a9e0 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cab2c35b1267d2221a8d2edcb23b6c46 = L.popup({
"maxWidth": 320,
});
var html_84aa2033784fbeb42a66ab5028eb2115 = $(`<div id="html_84aa2033784fbeb42a66ab5028eb2115" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المتجددة الحديثة للأعمال الكهربائية</b><br> الرقم الموحد: 7001767826<br> السجل التجاري: 4030205526<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.27775084,50.20224181" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cab2c35b1267d2221a8d2edcb23b6c46.setContent(html_84aa2033784fbeb42a66ab5028eb2115);
marker_237c596b9f23ee145fe58a39932641dc.bindPopup(popup_cab2c35b1267d2221a8d2edcb23b6c46)
;
marker_237c596b9f23ee145fe58a39932641dc.setIcon(icon_1901e783c01adb35a075aedb28e8a9e0);
var marker_b4c4d6206ce39f84ecbe1dbd95a38211 = L.marker(
[26.2780008389923, 50.2165905337699],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_113c8ab1b81cc6d3ef577112a2187504 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0b1e50ff5809f8ce93a009c846d098c5 = L.popup({
"maxWidth": 320,
});
var html_593bf780233405871ac99792327501ca = $(`<div id="html_593bf780233405871ac99792327501ca" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة رفاء الطبية</b><br> الرقم الموحد: 7009053658<br> السجل التجاري: 2051036867<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.2780008389923,50.2165905337699" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0b1e50ff5809f8ce93a009c846d098c5.setContent(html_593bf780233405871ac99792327501ca);
marker_b4c4d6206ce39f84ecbe1dbd95a38211.bindPopup(popup_0b1e50ff5809f8ce93a009c846d098c5)
;
marker_b4c4d6206ce39f84ecbe1dbd95a38211.setIcon(icon_113c8ab1b81cc6d3ef577112a2187504);
var marker_4b77c9feab8aa246964140e6c1740ba5 = L.marker(
[26.2782090701789, 50.2086753796979],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_1f3b582ded0b61015e0a9604dd47f9f1 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_63e8ad54472cfbf4182ca11e252ee2d0 = L.popup({
"maxWidth": 320,
});
var html_37dcafa7cbd8d1fdeca8c03709e13bd0 = $(`<div id="html_37dcafa7cbd8d1fdeca8c03709e13bd0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سام يونج العربية السعودية المحدودة</b><br> الرقم الموحد: 7001618409<br> السجل التجاري: 2051043932<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.2782090701789,50.2086753796979" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_63e8ad54472cfbf4182ca11e252ee2d0.setContent(html_37dcafa7cbd8d1fdeca8c03709e13bd0);
marker_4b77c9feab8aa246964140e6c1740ba5.bindPopup(popup_63e8ad54472cfbf4182ca11e252ee2d0)
;
marker_4b77c9feab8aa246964140e6c1740ba5.setIcon(icon_1f3b582ded0b61015e0a9604dd47f9f1);
var marker_932affd29d46dfe3313db86a080f4570 = L.marker(
[26.27841199, 50.20783742],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_4cf4ef58d6fc7811ddd9d2792878c73f = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7d0b195cf2fd94a9c4d79775357dc176 = L.popup({
"maxWidth": 320,
});
var html_b89144f2e33c5329cbfe15e3ffd98dae = $(`<div id="html_b89144f2e33c5329cbfe15e3ffd98dae" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اي بي ان للفحص الدولية</b><br> الرقم الموحد: 7001537484<br> السجل التجاري: 2051037019<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.27841199,50.20783742" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7d0b195cf2fd94a9c4d79775357dc176.setContent(html_b89144f2e33c5329cbfe15e3ffd98dae);
marker_932affd29d46dfe3313db86a080f4570.bindPopup(popup_7d0b195cf2fd94a9c4d79775357dc176)
;
marker_932affd29d46dfe3313db86a080f4570.setIcon(icon_4cf4ef58d6fc7811ddd9d2792878c73f);
var marker_650777268e7590a53b581ab6e7426bc3 = L.marker(
[26.27845129, 50.20783229],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_0232574826b470ae51f8fd3b202d8846 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a5355f989b7fadddf526ec118f965162 = L.popup({
"maxWidth": 320,
});
var html_3cf7ca8ed6baf1033f038d555d8131ea = $(`<div id="html_3cf7ca8ed6baf1033f038d555d8131ea" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تكينت السعودية المحدودة</b><br> الرقم الموحد: 7001353668<br> السجل التجاري: 2051015148<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.27845129,50.20783229" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a5355f989b7fadddf526ec118f965162.setContent(html_3cf7ca8ed6baf1033f038d555d8131ea);
marker_650777268e7590a53b581ab6e7426bc3.bindPopup(popup_a5355f989b7fadddf526ec118f965162)
;
marker_650777268e7590a53b581ab6e7426bc3.setIcon(icon_0232574826b470ae51f8fd3b202d8846);
var marker_3fab158acb0e17d9ae764eb2742faf63 = L.marker(
[26.27975516, 50.20303496],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_51e3c0ae67dece3ad11878919cf58a4c = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cfaa10d2c7897aee56abedfd6b48fef8 = L.popup({
"maxWidth": 320,
});
var html_85b9e5f549cab643bd690684515c9e30 = $(`<div id="html_85b9e5f549cab643bd690684515c9e30" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عبر الفرات للمقاولات</b><br> الرقم الموحد: 7027238919<br> السجل التجاري: 2051239298<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.27975516,50.20303496" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cfaa10d2c7897aee56abedfd6b48fef8.setContent(html_85b9e5f549cab643bd690684515c9e30);
marker_3fab158acb0e17d9ae764eb2742faf63.bindPopup(popup_cfaa10d2c7897aee56abedfd6b48fef8)
;
marker_3fab158acb0e17d9ae764eb2742faf63.setIcon(icon_51e3c0ae67dece3ad11878919cf58a4c);
var marker_3abfdb24557b9f6df3b5b3a1af202876 = L.marker(
[26.2801032360818, 50.2012172504131],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_edc11c027a6f46f4858107b1f2c053fe = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8689b9312b7167479ce24f8cf58d198f = L.popup({
"maxWidth": 320,
});
var html_214b031fa6ba51f4fd4bfb00f265cd90 = $(`<div id="html_214b031fa6ba51f4fd4bfb00f265cd90" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مصنع شركة الحديد الوطني السعودي</b><br> الرقم الموحد: 7001804165<br> السجل التجاري: 2050074490<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.2801032360818,50.2012172504131" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8689b9312b7167479ce24f8cf58d198f.setContent(html_214b031fa6ba51f4fd4bfb00f265cd90);
marker_3abfdb24557b9f6df3b5b3a1af202876.bindPopup(popup_8689b9312b7167479ce24f8cf58d198f)
;
marker_3abfdb24557b9f6df3b5b3a1af202876.setIcon(icon_edc11c027a6f46f4858107b1f2c053fe);
var marker_bd1df791eada14666797b09c7d8d8bd8 = L.marker(
[26.2802390474152, 50.2070738331342],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_ce40baaa7f990c8c8756745d3db7c32b = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_da4fdd096a39cb062fc5e9e6f027a767 = L.popup({
"maxWidth": 320,
});
var html_f33bf27e3e9634e5a6f8f503d76da615 = $(`<div id="html_f33bf27e3e9634e5a6f8f503d76da615" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الطود للمقاولات العامة</b><br> الرقم الموحد: 7017055240<br> السجل التجاري: 2050133920<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.2802390474152,50.2070738331342" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_da4fdd096a39cb062fc5e9e6f027a767.setContent(html_f33bf27e3e9634e5a6f8f503d76da615);
marker_bd1df791eada14666797b09c7d8d8bd8.bindPopup(popup_da4fdd096a39cb062fc5e9e6f027a767)
;
marker_bd1df791eada14666797b09c7d8d8bd8.setIcon(icon_ce40baaa7f990c8c8756745d3db7c32b);
var marker_0bdafaf5e27d1a62065257c7cd3580b2 = L.marker(
[26.28123473, 50.2045062],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_4acb120c2d348665fde981e8dbf893ac = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_eaecd4edf1273254ce572557c5edbee9 = L.popup({
"maxWidth": 320,
});
var html_e284bafb1ac317e0aabb2381385e541d = $(`<div id="html_e284bafb1ac317e0aabb2381385e541d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أحمد العامري التجارية</b><br> الرقم الموحد: 7014338771<br> السجل التجاري: 2051161269<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.28123473,50.2045062" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_eaecd4edf1273254ce572557c5edbee9.setContent(html_e284bafb1ac317e0aabb2381385e541d);
marker_0bdafaf5e27d1a62065257c7cd3580b2.bindPopup(popup_eaecd4edf1273254ce572557c5edbee9)
;
marker_0bdafaf5e27d1a62065257c7cd3580b2.setIcon(icon_4acb120c2d348665fde981e8dbf893ac);
var marker_03d126a5ed9868b814c8c8cdcfb1b9ad = L.marker(
[26.28220044, 50.19865417],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_f4308f2d0fa6ae0322b6c1165b6f6ff8 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_34ce7e37b4cfc9fecb9ed1e2bb858045 = L.popup({
"maxWidth": 320,
});
var html_147cdbd7552997139e0bab6ff430f54c = $(`<div id="html_147cdbd7552997139e0bab6ff430f54c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة العربية لانشاء التمديدات</b><br> الرقم الموحد: 7001391791<br> السجل التجاري: 2050034036<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.28220044,50.19865417" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_34ce7e37b4cfc9fecb9ed1e2bb858045.setContent(html_147cdbd7552997139e0bab6ff430f54c);
marker_03d126a5ed9868b814c8c8cdcfb1b9ad.bindPopup(popup_34ce7e37b4cfc9fecb9ed1e2bb858045)
;
marker_03d126a5ed9868b814c8c8cdcfb1b9ad.setIcon(icon_f4308f2d0fa6ae0322b6c1165b6f6ff8);
var marker_84ea7bcd40e72c9d977c910a0c083dcf = L.marker(
[26.28259881, 50.2000368],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_e890ebfe8988f2115bd0e7d291b428c6 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b0ee3763fca0800368d2445758421f88 = L.popup({
"maxWidth": 320,
});
var html_7be933c7f91538d5587761f301c761a7 = $(`<div id="html_7be933c7f91538d5587761f301c761a7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الخليج العالمية المتحدة للتجارة</b><br> الرقم الموحد: 7007302438<br> السجل التجاري: 2051173755<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.28259881,50.2000368" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b0ee3763fca0800368d2445758421f88.setContent(html_7be933c7f91538d5587761f301c761a7);
marker_84ea7bcd40e72c9d977c910a0c083dcf.bindPopup(popup_b0ee3763fca0800368d2445758421f88)
;
marker_84ea7bcd40e72c9d977c910a0c083dcf.setIcon(icon_e890ebfe8988f2115bd0e7d291b428c6);
var marker_116e3837c498ed9ba7ee850153c0be42 = L.marker(
[26.2825988134996, 50.2000367962072],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_d249ea46999a3009eebd68a839cd3046 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bec49c065ca830262e0fbc4cef918658 = L.popup({
"maxWidth": 320,
});
var html_f6692408de3fbdd10479180e619e7024 = $(`<div id="html_f6692408de3fbdd10479180e619e7024" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مباديء التطوير العقارية شركة الشخص الواحد</b><br> الرقم الموحد: 7002509250<br> السجل التجاري: 2060622414<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.2825988134996,50.2000367962072" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bec49c065ca830262e0fbc4cef918658.setContent(html_f6692408de3fbdd10479180e619e7024);
marker_116e3837c498ed9ba7ee850153c0be42.bindPopup(popup_bec49c065ca830262e0fbc4cef918658)
;
marker_116e3837c498ed9ba7ee850153c0be42.setIcon(icon_d249ea46999a3009eebd68a839cd3046);
var marker_39f8b2193d60ead4989937efb1975ac3 = L.marker(
[26.28276683, 50.20012315],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_b5f720b83c3d47b9c19b59f78027c0d2 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_64cfc87f44df1d5ac3540f159bfa538d = L.popup({
"maxWidth": 320,
});
var html_8c0f6283e88a5be6243559cef08ea1f5 = $(`<div id="html_8c0f6283e88a5be6243559cef08ea1f5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جي جي سي الخليج العالمية المحدودة</b><br> الرقم الموحد: 7001542856<br> السجل التجاري: 2051036368<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.28276683,50.20012315" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_64cfc87f44df1d5ac3540f159bfa538d.setContent(html_8c0f6283e88a5be6243559cef08ea1f5);
marker_39f8b2193d60ead4989937efb1975ac3.bindPopup(popup_64cfc87f44df1d5ac3540f159bfa538d)
;
marker_39f8b2193d60ead4989937efb1975ac3.setIcon(icon_b5f720b83c3d47b9c19b59f78027c0d2);
var marker_1466c0b8290403416920fd05efed50d5 = L.marker(
[26.1246983051124, 50.1425370190695],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_67663c9a642eb80feab93f53c832bb52 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_57db70a039f1457c17d297f547a82e85 = L.popup({
"maxWidth": 320,
});
var html_7e20725ae801936e1dd531752845e3f0 = $(`<div id="html_7e20725ae801936e1dd531752845e3f0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الخرسانة الخلوية السعودية للمقاولات</b><br> الرقم الموحد: 7001697619<br> السجل التجاري: 2051045943<br> المنطقة: الخبر<br> الحارة: اللؤلؤ<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.1246983051124,50.1425370190695" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_57db70a039f1457c17d297f547a82e85.setContent(html_7e20725ae801936e1dd531752845e3f0);
marker_1466c0b8290403416920fd05efed50d5.bindPopup(popup_57db70a039f1457c17d297f547a82e85)
;
marker_1466c0b8290403416920fd05efed50d5.setIcon(icon_67663c9a642eb80feab93f53c832bb52);
var marker_f6aa75846cbab09ceda52c51059c347f = L.marker(
[26.125659806, 50.150995291],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_f8ea18e01ea19c657f9d0ce5a518ecfc = L.AwesomeMarkers.icon(
{
"markerColor": "lightgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d9fbd2b891c42e908f4863270c3bd2fd = L.popup({
"maxWidth": 320,
});
var html_bb334efb25230cc727aa961ef7e7607a = $(`<div id="html_bb334efb25230cc727aa961ef7e7607a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة شباب خليجى لتقديم الوجبات</b><br> الرقم الموحد: 7015683274<br> السجل التجاري: 2050127943<br> المنطقة: الخبر<br> الحارة: اللؤلؤ<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.125659806,50.150995291" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d9fbd2b891c42e908f4863270c3bd2fd.setContent(html_bb334efb25230cc727aa961ef7e7607a);
marker_f6aa75846cbab09ceda52c51059c347f.bindPopup(popup_d9fbd2b891c42e908f4863270c3bd2fd)
;
marker_f6aa75846cbab09ceda52c51059c347f.setIcon(icon_f8ea18e01ea19c657f9d0ce5a518ecfc);
var marker_eb5af3d68f064f4c7edf9991afe0ba79 = L.marker(
[26.23899995733144, 50.21399413235486],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_bf63be02734d089abb71378e8329190c = L.AwesomeMarkers.icon(
{
"markerColor": "beige",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_73c8685cc38c8ad72233d7c938a6cc96 = L.popup({
"maxWidth": 320,
});
var html_4ceb804f07b8d086181f070ca120ad0e = $(`<div id="html_4ceb804f07b8d086181f070ca120ad0e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مقبض المحرك التجارية</b><br> الرقم الموحد: 7040520475<br> السجل التجاري: 2051256476<br> المنطقة: الثقبه<br> الحارة: صناعية الفوازية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.23899995733144,50.21399413235486" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_73c8685cc38c8ad72233d7c938a6cc96.setContent(html_4ceb804f07b8d086181f070ca120ad0e);
marker_eb5af3d68f064f4c7edf9991afe0ba79.bindPopup(popup_73c8685cc38c8ad72233d7c938a6cc96)
;
marker_eb5af3d68f064f4c7edf9991afe0ba79.setIcon(icon_bf63be02734d089abb71378e8329190c);
var marker_18d9b27aef8627f7ecbd9366461b564f = L.marker(
[26.24671627, 50.21338485],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_16dd52b763fa3b924ae469e63b9da3f0 = L.AwesomeMarkers.icon(
{
"markerColor": "beige",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_917094e7f352b232d916950761e7d6cb = L.popup({
"maxWidth": 320,
});
var html_603ecc7b02703bff8e314df743dceb25 = $(`<div id="html_603ecc7b02703bff8e314df743dceb25" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة إمداد ستور الصناعية</b><br> الرقم الموحد: 7017526182<br> السجل التجاري: 2050135875<br> المنطقة: الثقبه<br> الحارة: صناعية الفوازية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.24671627,50.21338485" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_917094e7f352b232d916950761e7d6cb.setContent(html_603ecc7b02703bff8e314df743dceb25);
marker_18d9b27aef8627f7ecbd9366461b564f.bindPopup(popup_917094e7f352b232d916950761e7d6cb)
;
marker_18d9b27aef8627f7ecbd9366461b564f.setIcon(icon_16dd52b763fa3b924ae469e63b9da3f0);
var marker_0c1f38d0f754abba87e23c329b20fc42 = L.marker(
[26.2474405178555, 50.2149168913287],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_3004186d9075eccf7b7488330221458b = L.AwesomeMarkers.icon(
{
"markerColor": "beige",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2307c6591665b02a856c68c6c0ebd793 = L.popup({
"maxWidth": 320,
});
var html_d8e6bc68c9139e0ce312fe56f39bfdf7 = $(`<div id="html_d8e6bc68c9139e0ce312fe56f39bfdf7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة محمد حمد الجري وشريكه</b><br> الرقم الموحد: 7001583884<br> السجل التجاري: 2051023734<br> المنطقة: الثقبه<br> الحارة: صناعية الفوازية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.2474405178555,50.2149168913287" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2307c6591665b02a856c68c6c0ebd793.setContent(html_d8e6bc68c9139e0ce312fe56f39bfdf7);
marker_0c1f38d0f754abba87e23c329b20fc42.bindPopup(popup_2307c6591665b02a856c68c6c0ebd793)
;
marker_0c1f38d0f754abba87e23c329b20fc42.setIcon(icon_3004186d9075eccf7b7488330221458b);
var marker_fe9073a236eab611587140443e7a136f = L.marker(
[26.25040847, 50.21347855],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_dd805475f36e776598cc400ea32ca87e = L.AwesomeMarkers.icon(
{
"markerColor": "beige",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a62b505783fab1d2d5d846e0ae048858 = L.popup({
"maxWidth": 320,
});
var html_910efca7884341369c9f234c68dfc72d = $(`<div id="html_910efca7884341369c9f234c68dfc72d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كونيكسوس للمقاولات</b><br> الرقم الموحد: 7029119497<br> السجل التجاري: 2050158351<br> المنطقة: الثقبه<br> الحارة: صناعية الفوازية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.25040847,50.21347855" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a62b505783fab1d2d5d846e0ae048858.setContent(html_910efca7884341369c9f234c68dfc72d);
marker_fe9073a236eab611587140443e7a136f.bindPopup(popup_a62b505783fab1d2d5d846e0ae048858)
;
marker_fe9073a236eab611587140443e7a136f.setIcon(icon_dd805475f36e776598cc400ea32ca87e);
var marker_135dc8cedb6d955ac35b0d103b129c2f = L.marker(
[26.25091376, 50.21493982],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_1dce6f40a3c4c89775eba53324f4bd28 = L.AwesomeMarkers.icon(
{
"markerColor": "beige",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_53d79c5fc075e271f3338b8b897f0df8 = L.popup({
"maxWidth": 320,
});
var html_1e17c10c4a300e636cbbdebb2f5ff6eb = $(`<div id="html_1e17c10c4a300e636cbbdebb2f5ff6eb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ساكو العربية للخدمات اللوجستية</b><br> الرقم الموحد: 7032020062<br> السجل التجاري: 2051244918<br> المنطقة: الثقبه<br> الحارة: صناعية الفوازية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.25091376,50.21493982" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_53d79c5fc075e271f3338b8b897f0df8.setContent(html_1e17c10c4a300e636cbbdebb2f5ff6eb);
marker_135dc8cedb6d955ac35b0d103b129c2f.bindPopup(popup_53d79c5fc075e271f3338b8b897f0df8)
;
marker_135dc8cedb6d955ac35b0d103b129c2f.setIcon(icon_1dce6f40a3c4c89775eba53324f4bd28);
var marker_94f5c3d91a11ab8c58ed57923048ff5c = L.marker(
[26.13393574698532, 50.15349563176149],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_e9b52bfbf3a3d10e248eb06fd12f09db = L.AwesomeMarkers.icon(
{
"markerColor": "beige",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c2cb76c510d42d7368a8e5a1133b4dd6 = L.popup({
"maxWidth": 320,
});
var html_278b985387086217c17179c276b47591 = $(`<div id="html_278b985387086217c17179c276b47591" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ينابويا العالمية للتعليم</b><br> الرقم الموحد: 7048911528<br> السجل التجاري: 2051263406<br> المنطقة: الخبر<br> الحارة: الامواج<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.13393574698532,50.15349563176149" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c2cb76c510d42d7368a8e5a1133b4dd6.setContent(html_278b985387086217c17179c276b47591);
marker_94f5c3d91a11ab8c58ed57923048ff5c.bindPopup(popup_c2cb76c510d42d7368a8e5a1133b4dd6)
;
marker_94f5c3d91a11ab8c58ed57923048ff5c.setIcon(icon_e9b52bfbf3a3d10e248eb06fd12f09db);
var marker_9f717129164dc6c4a2cc07c2eb693a5e = L.marker(
[26.21504386, 50.15868457],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_88ca3ade5a8099816d8409521997850c = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5d651eb3ae5a7547fdfae5ab43c4e9d7 = L.popup({
"maxWidth": 320,
});
var html_af1a65179730f5ba19c7501c40650683 = $(`<div id="html_af1a65179730f5ba19c7501c40650683" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مجمع الدوحة الطبي</b><br> الرقم الموحد: 7001383202<br> السجل التجاري: 2052000549<br> المنطقة: الخبر<br> الحارة: الصواري<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21504386,50.15868457" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5d651eb3ae5a7547fdfae5ab43c4e9d7.setContent(html_af1a65179730f5ba19c7501c40650683);
marker_9f717129164dc6c4a2cc07c2eb693a5e.bindPopup(popup_5d651eb3ae5a7547fdfae5ab43c4e9d7)
;
marker_9f717129164dc6c4a2cc07c2eb693a5e.setIcon(icon_88ca3ade5a8099816d8409521997850c);
var marker_4b73b7aaf767ac366c141e60fad8e94c = L.marker(
[26.1855554966443, 50.1845206840298],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_7de80fc97ef276676dbd2753500c20a2 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_46fc8f9d6cc62e5c4880a3289c354fc4 = L.popup({
"maxWidth": 320,
});
var html_3a70694a843f284677513c763688fbb8 = $(`<div id="html_3a70694a843f284677513c763688fbb8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مسلم الصيعري وشركاه التجارية</b><br> الرقم الموحد: 7012121237<br> السجل التجاري: 2051052634<br> المنطقة: الخبر<br> الحارة: البحيرة<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.1855554966443,50.1845206840298" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_46fc8f9d6cc62e5c4880a3289c354fc4.setContent(html_3a70694a843f284677513c763688fbb8);
marker_4b73b7aaf767ac366c141e60fad8e94c.bindPopup(popup_46fc8f9d6cc62e5c4880a3289c354fc4)
;
marker_4b73b7aaf767ac366c141e60fad8e94c.setIcon(icon_7de80fc97ef276676dbd2753500c20a2);
var marker_e1047ed5e54b7fb8fbc796ee98c0ab02 = L.marker(
[26.20118772, 50.19443017],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_f0321cc064a0e1bae5ac7aaa45668b86 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e1d55b366f76675bf7a0a6ceead28ba7 = L.popup({
"maxWidth": 320,
});
var html_9001671b0ce2df475fbd363a7f24990b = $(`<div id="html_9001671b0ce2df475fbd363a7f24990b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة قنوات للنظم</b><br> الرقم الموحد: 7001558787<br> السجل التجاري: 1010214886<br> المنطقة: الخبر<br> الحارة: الخزامى<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.20118772,50.19443017" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e1d55b366f76675bf7a0a6ceead28ba7.setContent(html_9001671b0ce2df475fbd363a7f24990b);
marker_e1047ed5e54b7fb8fbc796ee98c0ab02.bindPopup(popup_e1d55b366f76675bf7a0a6ceead28ba7)
;
marker_e1047ed5e54b7fb8fbc796ee98c0ab02.setIcon(icon_f0321cc064a0e1bae5ac7aaa45668b86);
var marker_7a9951d31de602cb74011951c2755f96 = L.marker(
[26.20251364503467, 50.18905889977597],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_556540d4a9d0f8e977e534685062d074 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0f36ffb450c85cdc48c04d4cf9a45c04 = L.popup({
"maxWidth": 320,
});
var html_96c2e44d7dce78d5d15d102a278102e6 = $(`<div id="html_96c2e44d7dce78d5d15d102a278102e6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كاتيس للفحص</b><br> الرقم الموحد: 7038180928<br> السجل التجاري: 2051253581<br> المنطقة: الخبر<br> الحارة: الخزامى<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.20251364503467,50.18905889977597" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0f36ffb450c85cdc48c04d4cf9a45c04.setContent(html_96c2e44d7dce78d5d15d102a278102e6);
marker_7a9951d31de602cb74011951c2755f96.bindPopup(popup_0f36ffb450c85cdc48c04d4cf9a45c04)
;
marker_7a9951d31de602cb74011951c2755f96.setIcon(icon_556540d4a9d0f8e977e534685062d074);
var marker_88f52683dfadc8161da2e8bb96372aac = L.marker(
[26.20899549, 50.19300136],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_473d5955e939d87d75c59dec43bb71c0 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b4f3716638d5cbbe17791c04237d2b43 = L.popup({
"maxWidth": 320,
});
var html_62f126d8cc454c917fe0d74ad68c96ce = $(`<div id="html_62f126d8cc454c917fe0d74ad68c96ce" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة التوفير العائلي للتجارة شركة شخص</b><br> الرقم الموحد: 7004926536<br> السجل التجاري: 2051222917<br> المنطقة: الخبر<br> الحارة: الخزامى<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.20899549,50.19300136" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b4f3716638d5cbbe17791c04237d2b43.setContent(html_62f126d8cc454c917fe0d74ad68c96ce);
marker_88f52683dfadc8161da2e8bb96372aac.bindPopup(popup_b4f3716638d5cbbe17791c04237d2b43)
;
marker_88f52683dfadc8161da2e8bb96372aac.setIcon(icon_473d5955e939d87d75c59dec43bb71c0);
var marker_ec0afb121e786c41f8ad36bd6ef8cd27 = L.marker(
[26.21569468, 50.19399856],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_894a50d626371562685020d9736486f6 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3e0aeadc11d6f19a7c277f4811a9f50a = L.popup({
"maxWidth": 320,
});
var html_237165311b97f674cfcd41adc2690662 = $(`<div id="html_237165311b97f674cfcd41adc2690662" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة قيمة الانشاء للمقاولات عامة شركة شخص واحد</b><br> الرقم الموحد: 7027298731<br> السجل التجاري: 1010770803<br> المنطقة: الخبر<br> الحارة: الخزامى<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21569468,50.19399856" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3e0aeadc11d6f19a7c277f4811a9f50a.setContent(html_237165311b97f674cfcd41adc2690662);
marker_ec0afb121e786c41f8ad36bd6ef8cd27.bindPopup(popup_3e0aeadc11d6f19a7c277f4811a9f50a)
;
marker_ec0afb121e786c41f8ad36bd6ef8cd27.setIcon(icon_894a50d626371562685020d9736486f6);
var marker_9d9b027b0bf1460ee4a6070c62d6e8e5 = L.marker(
[26.21597114, 50.1958219],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_58f61a9d7fbe876439c7f74b77a5eeb9 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_eb9059e0eaea5cdd28a1ed25f54c4d75 = L.popup({
"maxWidth": 320,
});
var html_3381fc2d56282a32a7c9b9f7b7611baa = $(`<div id="html_3381fc2d56282a32a7c9b9f7b7611baa" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مساندة المباني للصيانة والتشغيل</b><br> الرقم الموحد: 7001635932<br> السجل التجاري: 2051043649<br> المنطقة: الخبر<br> الحارة: الخزامى<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21597114,50.1958219" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_eb9059e0eaea5cdd28a1ed25f54c4d75.setContent(html_3381fc2d56282a32a7c9b9f7b7611baa);
marker_9d9b027b0bf1460ee4a6070c62d6e8e5.bindPopup(popup_eb9059e0eaea5cdd28a1ed25f54c4d75)
;
marker_9d9b027b0bf1460ee4a6070c62d6e8e5.setIcon(icon_58f61a9d7fbe876439c7f74b77a5eeb9);
var marker_6248613ff56ceddee6699b3ba1c1f36b = L.marker(
[26.21599751683726, 50.1942125055939],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_8cbedb5e4da3e2b34e144cca8f5da26c = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5103d9b4fb2ea2d5730708005b47647b = L.popup({
"maxWidth": 320,
});
var html_26650d23b92ad81aa7dcf066332a4cf8 = $(`<div id="html_26650d23b92ad81aa7dcf066332a4cf8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تنويل العربية المحدودة</b><br> الرقم الموحد: 7040551371<br> السجل التجاري: 2051256564<br> المنطقة: الخبر<br> الحارة: الخزامى<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21599751683726,50.1942125055939" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5103d9b4fb2ea2d5730708005b47647b.setContent(html_26650d23b92ad81aa7dcf066332a4cf8);
marker_6248613ff56ceddee6699b3ba1c1f36b.bindPopup(popup_5103d9b4fb2ea2d5730708005b47647b)
;
marker_6248613ff56ceddee6699b3ba1c1f36b.setIcon(icon_8cbedb5e4da3e2b34e144cca8f5da26c);
var marker_590c95372053e29e3c4d08665dfe984b = L.marker(
[26.21630342, 50.19320737],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_4facae0fef0a27b09d37e7844128bcfd = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c57bbb006059f61e8a655cff6875d0a1 = L.popup({
"maxWidth": 320,
});
var html_4c0257394535cea477613a53a10aec79 = $(`<div id="html_4c0257394535cea477613a53a10aec79" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة رواق الموارد للتعدين</b><br> الرقم الموحد: 7017919429<br> السجل التجاري: 2051231810<br> المنطقة: الخبر<br> الحارة: الخزامى<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21630342,50.19320737" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c57bbb006059f61e8a655cff6875d0a1.setContent(html_4c0257394535cea477613a53a10aec79);
marker_590c95372053e29e3c4d08665dfe984b.bindPopup(popup_c57bbb006059f61e8a655cff6875d0a1)
;
marker_590c95372053e29e3c4d08665dfe984b.setIcon(icon_4facae0fef0a27b09d37e7844128bcfd);
var marker_21bd087ba598844781e3770203e96d7b = L.marker(
[26.21631462212138, 50.19359811209142],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_16df79f58a2a28e1218d202078aba633 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8c00e6774dcadd25b7b4f12b2a89389e = L.popup({
"maxWidth": 320,
});
var html_99c8664f2369d079a9f5a05d6aab833a = $(`<div id="html_99c8664f2369d079a9f5a05d6aab833a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اباكس العالمية للخدمات اللوجستية</b><br> الرقم الموحد: 7035332811<br> السجل التجاري: 2051248154<br> المنطقة: الخبر<br> الحارة: الخزامى<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21631462212138,50.19359811209142" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8c00e6774dcadd25b7b4f12b2a89389e.setContent(html_99c8664f2369d079a9f5a05d6aab833a);
marker_21bd087ba598844781e3770203e96d7b.bindPopup(popup_8c00e6774dcadd25b7b4f12b2a89389e)
;
marker_21bd087ba598844781e3770203e96d7b.setIcon(icon_16df79f58a2a28e1218d202078aba633);
var marker_f497b07788bd52797615496adea5b888 = L.marker(
[26.2164180292512, 50.1927651039071],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_c2cb29132f8472f46e599084909eaa02 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1b1dedde2bce5c645078772e50a180e1 = L.popup({
"maxWidth": 320,
});
var html_c2b7fb07dd367a716d2a7632871405a7 = $(`<div id="html_c2b7fb07dd367a716d2a7632871405a7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عبدالله فهد صالح الشملاني العنزي</b><br> الرقم الموحد: 7009398293<br> السجل التجاري: 1131056590<br> المنطقة: الخبر<br> الحارة: الخزامى<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.2164180292512,50.1927651039071" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1b1dedde2bce5c645078772e50a180e1.setContent(html_c2b7fb07dd367a716d2a7632871405a7);
marker_f497b07788bd52797615496adea5b888.bindPopup(popup_1b1dedde2bce5c645078772e50a180e1)
;
marker_f497b07788bd52797615496adea5b888.setIcon(icon_c2cb29132f8472f46e599084909eaa02);
var marker_d8aafbec41e4d3b5a8457f43ea907d03 = L.marker(
[26.21644667, 50.19367827],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_f1cb902d672330b346e78372a610e1b0 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_96927ad3fc7b1ae8b4151043c8b3aabd = L.popup({
"maxWidth": 320,
});
var html_c937b40869b3f459ea2d84681a3bfbaa = $(`<div id="html_c937b40869b3f459ea2d84681a3bfbaa" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة القدرة للمعدات الرياضية شركة شخص واحد</b><br> الرقم الموحد: 7008608569<br> السجل التجاري: 2051232589<br> المنطقة: الخبر<br> الحارة: الخزامى<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21644667,50.19367827" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_96927ad3fc7b1ae8b4151043c8b3aabd.setContent(html_c937b40869b3f459ea2d84681a3bfbaa);
marker_d8aafbec41e4d3b5a8457f43ea907d03.bindPopup(popup_96927ad3fc7b1ae8b4151043c8b3aabd)
;
marker_d8aafbec41e4d3b5a8457f43ea907d03.setIcon(icon_f1cb902d672330b346e78372a610e1b0);
var marker_aa0b5a2257bba90ca291ac208371f7c3 = L.marker(
[26.21649947, 50.19265514],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_c83116e986419f81c09c500f53db43fe = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_46a7ca02f4cd5dd304473d1fd72f53a4 = L.popup({
"maxWidth": 320,
});
var html_49f0da509f8b9dc09da25d6c80014311 = $(`<div id="html_49f0da509f8b9dc09da25d6c80014311" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فرع شركة المباركية المتحدة للتجارة العامة والمقاولات</b><br> الرقم الموحد: 7027287627<br> السجل التجاري: 2050153133<br> المنطقة: الخبر<br> الحارة: الخزامى<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21649947,50.19265514" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_46a7ca02f4cd5dd304473d1fd72f53a4.setContent(html_49f0da509f8b9dc09da25d6c80014311);
marker_aa0b5a2257bba90ca291ac208371f7c3.bindPopup(popup_46a7ca02f4cd5dd304473d1fd72f53a4)
;
marker_aa0b5a2257bba90ca291ac208371f7c3.setIcon(icon_c83116e986419f81c09c500f53db43fe);
var marker_bbe40f5d00110946b029d673844b6daf = L.marker(
[26.21623125, 50.17582579],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_e6bc20cccc2e5194b830b47557d6959b = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_53bc87754d942b7da5b9327d9b831fb1 = L.popup({
"maxWidth": 320,
});
var html_d8c9c90261e7732b1446565e0a6b8196 = $(`<div id="html_d8c9c90261e7732b1446565e0a6b8196" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تیك المتعددة العربیة للمقاولات</b><br> الرقم الموحد: 7012929563<br> السجل التجاري: 2051032750<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21623125,50.17582579" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_53bc87754d942b7da5b9327d9b831fb1.setContent(html_d8c9c90261e7732b1446565e0a6b8196);
marker_bbe40f5d00110946b029d673844b6daf.bindPopup(popup_53bc87754d942b7da5b9327d9b831fb1)
;
marker_bbe40f5d00110946b029d673844b6daf.setIcon(icon_e6bc20cccc2e5194b830b47557d6959b);
var marker_a187931c738464519e59dd6d6395f928 = L.marker(
[26.21633981, 50.17712103],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_06bf2be19bc9301c305cc26b9e66e1cf = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_63d6354ac2a07c3a9f823b8c05d4782e = L.popup({
"maxWidth": 320,
});
var html_1165ad1ab60717d4f20cafe595e98c6f = $(`<div id="html_1165ad1ab60717d4f20cafe595e98c6f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مصنع سبأ للتصنيع</b><br> الرقم الموحد: 7001487185<br> السجل التجاري: 2051031124<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21633981,50.17712103" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_63d6354ac2a07c3a9f823b8c05d4782e.setContent(html_1165ad1ab60717d4f20cafe595e98c6f);
marker_a187931c738464519e59dd6d6395f928.bindPopup(popup_63d6354ac2a07c3a9f823b8c05d4782e)
;
marker_a187931c738464519e59dd6d6395f928.setIcon(icon_06bf2be19bc9301c305cc26b9e66e1cf);
var marker_5a9a4dfb3389e15463eddcf710634bb1 = L.marker(
[26.21650017, 50.17354746],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_0293e068d4b65392b327e28a7b1cdc32 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1f8b5171227746e6f8a703b19877e724 = L.popup({
"maxWidth": 320,
});
var html_95472c5756110d875440066b16086b92 = $(`<div id="html_95472c5756110d875440066b16086b92" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بكس العربية للقياس</b><br> الرقم الموحد: 7009206645<br> السجل التجاري: 2051060349<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21650017,50.17354746" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1f8b5171227746e6f8a703b19877e724.setContent(html_95472c5756110d875440066b16086b92);
marker_5a9a4dfb3389e15463eddcf710634bb1.bindPopup(popup_1f8b5171227746e6f8a703b19877e724)
;
marker_5a9a4dfb3389e15463eddcf710634bb1.setIcon(icon_0293e068d4b65392b327e28a7b1cdc32);
var marker_fe175b6428e5872db3027af05b776532 = L.marker(
[26.21767396, 50.17530337],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_8360fcf5a6274372daebb979b7fae612 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_be955c944dee858dbce46c328c075eed = L.popup({
"maxWidth": 320,
});
var html_55324aac4ddc23464b8ae5daa45f87ab = $(`<div id="html_55324aac4ddc23464b8ae5daa45f87ab" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة هوت هيد المحدودة</b><br> الرقم الموحد: 7001484679<br> السجل التجاري: 2051031872<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21767396,50.17530337" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_be955c944dee858dbce46c328c075eed.setContent(html_55324aac4ddc23464b8ae5daa45f87ab);
marker_fe175b6428e5872db3027af05b776532.bindPopup(popup_be955c944dee858dbce46c328c075eed)
;
marker_fe175b6428e5872db3027af05b776532.setIcon(icon_8360fcf5a6274372daebb979b7fae612);
var marker_361c78589ba56549b0c24fef2c558101 = L.marker(
[26.21814396, 50.18213166],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_f7c04abcf7a7f86c81a7a327d5d6fe4f = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3c1c9b93451483aa19a6b77c64e52cc5 = L.popup({
"maxWidth": 320,
});
var html_1f8eaa8545448a0c5745e5c43906737f = $(`<div id="html_1f8eaa8545448a0c5745e5c43906737f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصنع غرف الحماية لأنظمة الكمبيوتر والاتصالات المتكامله المحدودة</b><br> الرقم الموحد: 7001481303<br> السجل التجاري: 2051027324<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21814396,50.18213166" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3c1c9b93451483aa19a6b77c64e52cc5.setContent(html_1f8eaa8545448a0c5745e5c43906737f);
marker_361c78589ba56549b0c24fef2c558101.bindPopup(popup_3c1c9b93451483aa19a6b77c64e52cc5)
;
marker_361c78589ba56549b0c24fef2c558101.setIcon(icon_f7c04abcf7a7f86c81a7a327d5d6fe4f);
var marker_f3efd7931bba1565acf9cecdd8ed425d = L.marker(
[26.21843613211999, 50.18373997130058],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_c2114bced0afd891c2705c00345ea9bc = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_88440d6c6dfecd1dbb4818a014a1d8b6 = L.popup({
"maxWidth": 320,
});
var html_88f7648b1ddfdb874f80e79729a2b8b6 = $(`<div id="html_88f7648b1ddfdb874f80e79729a2b8b6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سهيل المتكاملة لصناعة الورق</b><br> الرقم الموحد: 7038295346<br> السجل التجاري: 2051253822<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21843613211999,50.18373997130058" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_88440d6c6dfecd1dbb4818a014a1d8b6.setContent(html_88f7648b1ddfdb874f80e79729a2b8b6);
marker_f3efd7931bba1565acf9cecdd8ed425d.bindPopup(popup_88440d6c6dfecd1dbb4818a014a1d8b6)
;
marker_f3efd7931bba1565acf9cecdd8ed425d.setIcon(icon_c2114bced0afd891c2705c00345ea9bc);
var marker_a4010ad31e1913b896b1880eb0b88940 = L.marker(
[26.2186339, 50.1750436],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_08bf23c6c73e0c7375637d172146337c = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dd654aeeb069678748323df3f5c7556d = L.popup({
"maxWidth": 320,
});
var html_74238fdcfe9b2a574aecac7c723b2a8d = $(`<div id="html_74238fdcfe9b2a574aecac7c723b2a8d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سمات ميد للصناعة</b><br> الرقم الموحد: 7031759553<br> السجل التجاري: 2050164226<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.2186339,50.1750436" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dd654aeeb069678748323df3f5c7556d.setContent(html_74238fdcfe9b2a574aecac7c723b2a8d);
marker_a4010ad31e1913b896b1880eb0b88940.bindPopup(popup_dd654aeeb069678748323df3f5c7556d)
;
marker_a4010ad31e1913b896b1880eb0b88940.setIcon(icon_08bf23c6c73e0c7375637d172146337c);
var marker_25cbbd52ef82b203af61a858be4ece38 = L.marker(
[26.21894021, 50.18451944],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_0e119e43f0c7599aa50c7fc7953ba463 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d60416d8bc0654d0fa1f4b5099eba94b = L.popup({
"maxWidth": 320,
});
var html_ddaa96b5d88d908f0ba7261f3ec3bcdc = $(`<div id="html_ddaa96b5d88d908f0ba7261f3ec3bcdc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ميراج العربية للأدوات الدعائية</b><br> الرقم الموحد: 7001602353<br> السجل التجاري: 2051041779<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.21894021,50.18451944" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d60416d8bc0654d0fa1f4b5099eba94b.setContent(html_ddaa96b5d88d908f0ba7261f3ec3bcdc);
marker_25cbbd52ef82b203af61a858be4ece38.bindPopup(popup_d60416d8bc0654d0fa1f4b5099eba94b)
;
marker_25cbbd52ef82b203af61a858be4ece38.setIcon(icon_0e119e43f0c7599aa50c7fc7953ba463);
var marker_e7f6760fdaf22fe4659e140097b390e9 = L.marker(
[26.2189933108145, 50.1836059077041],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_070953d0975df2eab80d9f10240b1c21 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_01f8b16ed008876a2ca8ee46786c7e1f = L.popup({
"maxWidth": 320,
});
var html_13a9894654fdf2a230f7c828dae6a551 = $(`<div id="html_13a9894654fdf2a230f7c828dae6a551" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اصول البناء للصناعة</b><br> الرقم الموحد: 7028329709<br> السجل التجاري: 4030495019<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.2189933108145,50.1836059077041" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_01f8b16ed008876a2ca8ee46786c7e1f.setContent(html_13a9894654fdf2a230f7c828dae6a551);
marker_e7f6760fdaf22fe4659e140097b390e9.bindPopup(popup_01f8b16ed008876a2ca8ee46786c7e1f)
;
marker_e7f6760fdaf22fe4659e140097b390e9.setIcon(icon_070953d0975df2eab80d9f10240b1c21);
var marker_d744057583d1b655492f1394722b8757 = L.marker(
[26.22014293, 50.18565619],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_809bb0a4963a3cb360960bc07bcd62f4 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8f344b9a77de683db99380b6dea64aad = L.popup({
"maxWidth": 320,
});
var html_e71d46cb4f4d661cd6fa6d7e76d85029 = $(`<div id="html_e71d46cb4f4d661cd6fa6d7e76d85029" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة استانكون المحدودة</b><br> الرقم الموحد: 7001630784<br> السجل التجاري: 2051025521<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.22014293,50.18565619" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8f344b9a77de683db99380b6dea64aad.setContent(html_e71d46cb4f4d661cd6fa6d7e76d85029);
marker_d744057583d1b655492f1394722b8757.bindPopup(popup_8f344b9a77de683db99380b6dea64aad)
;
marker_d744057583d1b655492f1394722b8757.setIcon(icon_809bb0a4963a3cb360960bc07bcd62f4);
var marker_1725f43358e2ea268ec02e7659f4f361 = L.marker(
[26.220399083669, 50.1857949431661],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_529cb7d77de5346535d1d9ba8b9bc426 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_67860135c61939bd63ebad24df04e720 = L.popup({
"maxWidth": 320,
});
var html_ec4cf48ac7e5aa6aee155f7f51b352f6 = $(`<div id="html_ec4cf48ac7e5aa6aee155f7f51b352f6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة روابي يونايتد سيفتي سرفيسز المحدوده</b><br> الرقم الموحد: 7001456909<br> السجل التجاري: 2051028724<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.220399083669,50.1857949431661" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_67860135c61939bd63ebad24df04e720.setContent(html_ec4cf48ac7e5aa6aee155f7f51b352f6);
marker_1725f43358e2ea268ec02e7659f4f361.bindPopup(popup_67860135c61939bd63ebad24df04e720)
;
marker_1725f43358e2ea268ec02e7659f4f361.setIcon(icon_529cb7d77de5346535d1d9ba8b9bc426);
var marker_d8b0c5240c83c80d1195c08a3901e47c = L.marker(
[26.22195970608333, 50.18725073615523],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_9e04ce79b06685f9eb03e644a70608c9 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1c3f1083d7cb347ff818e08cfa7a4005 = L.popup({
"maxWidth": 320,
});
var html_8ea34b2cefb8dfaade83615eda3f4b8b = $(`<div id="html_8ea34b2cefb8dfaade83615eda3f4b8b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة خدمات الاختبار المحدودة شركة شخص واحد</b><br> الرقم الموحد: 7032480944<br> السجل التجاري: 2051245472<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.22195970608333,50.18725073615523" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1c3f1083d7cb347ff818e08cfa7a4005.setContent(html_8ea34b2cefb8dfaade83615eda3f4b8b);
marker_d8b0c5240c83c80d1195c08a3901e47c.bindPopup(popup_1c3f1083d7cb347ff818e08cfa7a4005)
;
marker_d8b0c5240c83c80d1195c08a3901e47c.setIcon(icon_9e04ce79b06685f9eb03e644a70608c9);
var marker_313f82a841048b672e440d0f0a2bdbcc = L.marker(
[26.22281532, 50.18463571],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_6a997b2bfacff6400438ba6d77749268 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_25e932bb4203b273317fd45354a1aac1 = L.popup({
"maxWidth": 320,
});
var html_d86c34621feed0458991c5fcdda994fb = $(`<div id="html_d86c34621feed0458991c5fcdda994fb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جودة اوس لتقديم الوجبات</b><br> الرقم الموحد: 7025477998<br> السجل التجاري: 2050147910<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.22281532,50.18463571" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_25e932bb4203b273317fd45354a1aac1.setContent(html_d86c34621feed0458991c5fcdda994fb);
marker_313f82a841048b672e440d0f0a2bdbcc.bindPopup(popup_25e932bb4203b273317fd45354a1aac1)
;
marker_313f82a841048b672e440d0f0a2bdbcc.setIcon(icon_6a997b2bfacff6400438ba6d77749268);
var marker_4930c6398864182d603689a8b4ec46df = L.marker(
[26.22360906, 50.18598191],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_59fcee8bc440628ca4a0d4fce3d4337b = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_753f1fa3ec927639b76dd1f43fab2631 = L.popup({
"maxWidth": 320,
});
var html_f354f3f5e0385b894b74a758e818338b = $(`<div id="html_f354f3f5e0385b894b74a758e818338b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دورماكابا آكسس سولوشونز ليميتد</b><br> الرقم الموحد: 7001445696<br> السجل التجاري: 2051059870<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.22360906,50.18598191" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_753f1fa3ec927639b76dd1f43fab2631.setContent(html_f354f3f5e0385b894b74a758e818338b);
marker_4930c6398864182d603689a8b4ec46df.bindPopup(popup_753f1fa3ec927639b76dd1f43fab2631)
;
marker_4930c6398864182d603689a8b4ec46df.setIcon(icon_59fcee8bc440628ca4a0d4fce3d4337b);
var marker_8651df109b2042e8cae584d0bf76cb24 = L.marker(
[26.2237128717051, 50.1821769745247],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_e9a4474582c427e7a6e61bdaafc166e7 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6c9679d5fe1feeeead335ed745bd9cc8 = L.popup({
"maxWidth": 320,
});
var html_96a4dac9d15012499b5cc39c2981ccdd = $(`<div id="html_96a4dac9d15012499b5cc39c2981ccdd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مصنع جواهر المعادن للتصنيع والطلاء</b><br> الرقم الموحد: 7001459572<br> السجل التجاري: 2051029074<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.2237128717051,50.1821769745247" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6c9679d5fe1feeeead335ed745bd9cc8.setContent(html_96a4dac9d15012499b5cc39c2981ccdd);
marker_8651df109b2042e8cae584d0bf76cb24.bindPopup(popup_6c9679d5fe1feeeead335ed745bd9cc8)
;
marker_8651df109b2042e8cae584d0bf76cb24.setIcon(icon_e9a4474582c427e7a6e61bdaafc166e7);
var marker_004b0469984af1bcc282f569ce9c1d7c = L.marker(
[26.22377284, 50.18467557],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_8d1adbc583f4f97db4fea30263f02e6a = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d933ed617045fcf86bb51af6ef1e6039 = L.popup({
"maxWidth": 320,
});
var html_fb9c62645532c6883b11b2d9cde4be7d = $(`<div id="html_fb9c62645532c6883b11b2d9cde4be7d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تقنية الفحوصات شركة شخص واحد</b><br> الرقم الموحد: 7001583223<br> السجل التجاري: 2051038368<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.22377284,50.18467557" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d933ed617045fcf86bb51af6ef1e6039.setContent(html_fb9c62645532c6883b11b2d9cde4be7d);
marker_004b0469984af1bcc282f569ce9c1d7c.bindPopup(popup_d933ed617045fcf86bb51af6ef1e6039)
;
marker_004b0469984af1bcc282f569ce9c1d7c.setIcon(icon_8d1adbc583f4f97db4fea30263f02e6a);
var marker_c72d454ae6ce0904ad32c2342f71cb2c = L.marker(
[26.2249476, 50.18205775],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_af481dc5e7b6527b936b9037160c0d37 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a5f0230d771f3db694eabae2bbdcb37e = L.popup({
"maxWidth": 320,
});
var html_c43c8f1e40b0c7a5ddcc78099a67326d = $(`<div id="html_c43c8f1e40b0c7a5ddcc78099a67326d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المطوع سام يونج لاختبار المواد</b><br> الرقم الموحد: 7000317870<br> السجل التجاري: 2051010096<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.2249476,50.18205775" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a5f0230d771f3db694eabae2bbdcb37e.setContent(html_c43c8f1e40b0c7a5ddcc78099a67326d);
marker_c72d454ae6ce0904ad32c2342f71cb2c.bindPopup(popup_a5f0230d771f3db694eabae2bbdcb37e)
;
marker_c72d454ae6ce0904ad32c2342f71cb2c.setIcon(icon_af481dc5e7b6527b936b9037160c0d37);
var marker_fa54cccb3d9d1cfe8c43fabd8ad9de54 = L.marker(
[26.22622959, 50.18279287],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_7c1bf85548aafe0119f1b862f06c4e29 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_375709489587f71aa6a616186876e469 = L.popup({
"maxWidth": 320,
});
var html_8be6c656bbf7484e1f1928b377b587d5 = $(`<div id="html_8be6c656bbf7484e1f1928b377b587d5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مؤسسة القوة التقنية لصيانة المعدات</b><br> الرقم الموحد: 7001541346<br> السجل التجاري: 2051036202<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.22622959,50.18279287" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_375709489587f71aa6a616186876e469.setContent(html_8be6c656bbf7484e1f1928b377b587d5);
marker_fa54cccb3d9d1cfe8c43fabd8ad9de54.bindPopup(popup_375709489587f71aa6a616186876e469)
;
marker_fa54cccb3d9d1cfe8c43fabd8ad9de54.setIcon(icon_7c1bf85548aafe0119f1b862f06c4e29);
var marker_06f2ecae8ef15cfc995bb15137aceb38 = L.marker(
[26.22653419, 50.18383274],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_9be6be143a955edc7e4927f176908e6c = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3d935d12df844750e1aebd7614524e9e = L.popup({
"maxWidth": 320,
});
var html_8f4d5ced67979c15fa4274979797af24 = $(`<div id="html_8f4d5ced67979c15fa4274979797af24" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة التوريدات والخدمات البترولية</b><br> الرقم الموحد: 7001454904<br> السجل التجاري: 2051039026<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.22653419,50.18383274" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3d935d12df844750e1aebd7614524e9e.setContent(html_8f4d5ced67979c15fa4274979797af24);
marker_06f2ecae8ef15cfc995bb15137aceb38.bindPopup(popup_3d935d12df844750e1aebd7614524e9e)
;
marker_06f2ecae8ef15cfc995bb15137aceb38.setIcon(icon_9be6be143a955edc7e4927f176908e6c);
var marker_da76b0ac286a17a1a156c87c2dd38f4f = L.marker(
[26.22685122, 50.18277224],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_43fe69a2910d044585d0cc326b58efba = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_73a58302595b584d81c6edc531b0da63 = L.popup({
"maxWidth": 320,
});
var html_12acbd502912086a77a69fa96386aea1 = $(`<div id="html_12acbd502912086a77a69fa96386aea1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركه بريزما للصناعات المعدنيه المحدوده</b><br> الرقم الموحد: 7001530166<br> السجل التجاري: 2051042510<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.22685122,50.18277224" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_73a58302595b584d81c6edc531b0da63.setContent(html_12acbd502912086a77a69fa96386aea1);
marker_da76b0ac286a17a1a156c87c2dd38f4f.bindPopup(popup_73a58302595b584d81c6edc531b0da63)
;
marker_da76b0ac286a17a1a156c87c2dd38f4f.setIcon(icon_43fe69a2910d044585d0cc326b58efba);
var marker_8811faccddf9342f4eef81f909e367cf = L.marker(
[26.22762894, 50.18309183],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_36dee0767f0f21824b6491264776de94 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_253853e790f2d6f56278efaeb38f85f3 = L.popup({
"maxWidth": 320,
});
var html_520b49efdcb4a88ce4e4f2df4a987a3d = $(`<div id="html_520b49efdcb4a88ce4e4f2df4a987a3d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصنع الاتحاد للمكثفات</b><br> الرقم الموحد: 7001497515<br> السجل التجاري: 2051032482<br> المنطقة: الخبر<br> الحارة: التعاون<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.22762894,50.18309183" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_253853e790f2d6f56278efaeb38f85f3.setContent(html_520b49efdcb4a88ce4e4f2df4a987a3d);
marker_8811faccddf9342f4eef81f909e367cf.bindPopup(popup_253853e790f2d6f56278efaeb38f85f3)
;
marker_8811faccddf9342f4eef81f909e367cf.setIcon(icon_36dee0767f0f21824b6491264776de94);
var marker_673b6d3ca9a68d659b9aed75f393f413 = L.marker(
[26.18780317, 50.18774024],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_f514a444d0482665ea151a433b680e94 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_38f0ab0e00b919dd690dd8fa91758236 = L.popup({
"maxWidth": 320,
});
var html_86794641883373ca5dabc7882ee00bc4 = $(`<div id="html_86794641883373ca5dabc7882ee00bc4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فهد عبدالله علي رضا وشركاؤه للاستشارات الهندسية</b><br> الرقم الموحد: 7001658173<br> السجل التجاري: 2051047662<br> المنطقة: الخبر<br> الحارة: التحلية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.18780317,50.18774024" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_38f0ab0e00b919dd690dd8fa91758236.setContent(html_86794641883373ca5dabc7882ee00bc4);
marker_673b6d3ca9a68d659b9aed75f393f413.bindPopup(popup_38f0ab0e00b919dd690dd8fa91758236)
;
marker_673b6d3ca9a68d659b9aed75f393f413.setIcon(icon_f514a444d0482665ea151a433b680e94);
var marker_b7710c19aacadb21e88610f633f63026 = L.marker(
[26.18811035, 50.18768311],
{
}
).addTo(map_9204705532e377af5254808dc9078ad8);
var icon_28d0cdb98355a8f937da50abf1c67daf = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a2a8f4fb284a94ff80f7c8f663c7491d = L.popup({
"maxWidth": 320,
});
var html_f7537013c876ff4967ee2d647017aed7 = $(`<div id="html_f7537013c876ff4967ee2d647017aed7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فهد عبدالله علي رضا للتطوير العقاري</b><br> الرقم الموحد: 7001573539<br> السجل التجاري: 2051036571<br> المنطقة: الخبر<br> الحارة: التحلية<br> <b>اسم الباحث:</b> اميرة احمد علي الرازحي<br> <a href="https://www.google.com/maps?q=26.18811035,50.18768311" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a2a8f4fb284a94ff80f7c8f663c7491d.setContent(html_f7537013c876ff4967ee2d647017aed7);
marker_b7710c19aacadb21e88610f633f63026.bindPopup(popup_a2a8f4fb284a94ff80f7c8f663c7491d)
;
marker_b7710c19aacadb21e88610f633f63026.setIcon(icon_28d0cdb98355a8f937da50abf1c67daf);
</script>
</html> |