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 | <!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_cc9f11c9568377e1b58f97c710508779 {
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_16" onclick="
var panel = document.getElementById('stats_16');
var btn = document.getElementById('btn_stats_16');
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_16" 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;
">عبدالله سالم الهاجري - 16</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 64</div>
<div><b>عدد الحارات:</b> 5</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• العليا: 30</div><div>• قرطبة: 14</div><div>• الخبر الجنوبية: 11</div><div>• الأندلس: 7</div><div>• الهدا: 2</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_16_عبدالله_سالم_الهاجري.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:lightblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>العليا</span>
</div>
<span style="color:#555;">(30)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>قرطبة</span>
</div>
<span style="color:#555;">(14)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:lightgray;
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:gray;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الأندلس</span>
</div>
<span style="color:#555;">(7)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:green;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الهدا</span>
</div>
<span style="color:#555;">(2)</span>
</div>
</div>
</div>
</div>
<div style="
position: fixed;
bottom: 8px; left: 8px;
background: rgba(255,255,255,0.85);
padding: 6px 10px;
border-radius: 10px;
font-size: 13px;
direction: rtl;
z-index: 9999;
box-shadow: 0 1px 8px rgba(0,0,0,0.15);
">
تصميم وإعداد <b>نوف الناصر</b>
</div>
<div class="folium-map" id="map_cc9f11c9568377e1b58f97c710508779" ></div>
</body>
<script>
var map_cc9f11c9568377e1b58f97c710508779 = L.map(
"map_cc9f11c9568377e1b58f97c710508779",
{
center: [26.305597780676724, 50.18777802923712],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_37c2dbbd634fcb8869916a20d50ae668 = 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_37c2dbbd634fcb8869916a20d50ae668.addTo(map_cc9f11c9568377e1b58f97c710508779);
var tile_layer_cf4d105b5a6bac0e4da81e5784fbe5a6 = 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_cf4d105b5a6bac0e4da81e5784fbe5a6.addTo(map_cc9f11c9568377e1b58f97c710508779);
var tile_layer_4e5f06050fb9e088c25fac0049c678d8 = 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_4e5f06050fb9e088c25fac0049c678d8.addTo(map_cc9f11c9568377e1b58f97c710508779);
var locate_control_d51a8002d0dd86560ff3224da57c9a7c = L.control.locate(
{}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var marker_4292c1d7f19e045a85baea4d1e064f8c = L.marker(
[26.27351470083129, 50.20587282255292],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_c0ed785bed3e72ba6b5cd8123234a9fd = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0d0f2f1cd49abfcbc1aa5ee0a5910ede = L.popup({
"maxWidth": 320,
});
var html_8bea7ce411f8ea47aed61f9ad6b850d1 = $(`<div id="html_8bea7ce411f8ea47aed61f9ad6b850d1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة لمسات الفرح للمطابخ</b><br> الرقم الموحد: 7041205050<br> السجل التجاري: 2051258027<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.27351470083129,50.20587282255292" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0d0f2f1cd49abfcbc1aa5ee0a5910ede.setContent(html_8bea7ce411f8ea47aed61f9ad6b850d1);
marker_4292c1d7f19e045a85baea4d1e064f8c.bindPopup(popup_0d0f2f1cd49abfcbc1aa5ee0a5910ede)
;
marker_4292c1d7f19e045a85baea4d1e064f8c.setIcon(icon_c0ed785bed3e72ba6b5cd8123234a9fd);
var marker_b8274c5a21f8b3fbbd17777b25e04ce1 = L.marker(
[26.2735263068118, 50.2112335358829],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_87ebe6241bbb59319056c93330d85b7a = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c547d5e7fcb94ce0f40de142796afc16 = L.popup({
"maxWidth": 320,
});
var html_2d2dc4e3a11bc494516142e63c74db24 = $(`<div id="html_2d2dc4e3a11bc494516142e63c74db24" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة القلم المختار التجارية</b><br> الرقم الموحد: 7014144856<br> السجل التجاري: 2051054371<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.2735263068118,50.2112335358829" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c547d5e7fcb94ce0f40de142796afc16.setContent(html_2d2dc4e3a11bc494516142e63c74db24);
marker_b8274c5a21f8b3fbbd17777b25e04ce1.bindPopup(popup_c547d5e7fcb94ce0f40de142796afc16)
;
marker_b8274c5a21f8b3fbbd17777b25e04ce1.setIcon(icon_87ebe6241bbb59319056c93330d85b7a);
var marker_d9332bea53c80dcbdfe43edc78d51025 = L.marker(
[26.27352682, 50.21226615],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_1008be9667c77938a4fa83d4b3fcecb6 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_16136b3d60201532a09c729b74cff83c = L.popup({
"maxWidth": 320,
});
var html_c71cf8af96ef7aa3fc8656265563fc8b = $(`<div id="html_c71cf8af96ef7aa3fc8656265563fc8b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة إثراء العمار للمقاولات</b><br> الرقم الموحد: 7013281709<br> السجل التجاري: 2060038609<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.27352682,50.21226615" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_16136b3d60201532a09c729b74cff83c.setContent(html_c71cf8af96ef7aa3fc8656265563fc8b);
marker_d9332bea53c80dcbdfe43edc78d51025.bindPopup(popup_16136b3d60201532a09c729b74cff83c)
;
marker_d9332bea53c80dcbdfe43edc78d51025.setIcon(icon_1008be9667c77938a4fa83d4b3fcecb6);
var marker_6cea13025c9e4c990091694652bdcac2 = L.marker(
[26.27456373, 50.21427767],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_cdfa27a8258300cbdc6b1d7aafdf2b40 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_11bb37d8b9ca5a61946392a1851ed42e = L.popup({
"maxWidth": 320,
});
var html_c553354cf5aeed578a37380b9698a177 = $(`<div id="html_c553354cf5aeed578a37380b9698a177" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركه عبدالرحمن محمد المدنى للمقاولات</b><br> الرقم الموحد: 7012795113<br> السجل التجاري: 2051024544<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.27456373,50.21427767" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_11bb37d8b9ca5a61946392a1851ed42e.setContent(html_c553354cf5aeed578a37380b9698a177);
marker_6cea13025c9e4c990091694652bdcac2.bindPopup(popup_11bb37d8b9ca5a61946392a1851ed42e)
;
marker_6cea13025c9e4c990091694652bdcac2.setIcon(icon_cdfa27a8258300cbdc6b1d7aafdf2b40);
var marker_699203b131f9975df3cf93e472385f09 = L.marker(
[26.2707097, 50.21364301],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_b6cb105d70c4b3f1a0612d42fb970934 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_582c86d562b16c669c8ea901d2f62cbc = L.popup({
"maxWidth": 320,
});
var html_bb935edb2d0bed50adc7d2532110d62c = $(`<div id="html_bb935edb2d0bed50adc7d2532110d62c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مجموعة سارة القابضة</b><br> الرقم الموحد: 7012748344<br> السجل التجاري: 2051015300<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.2707097,50.21364301" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_582c86d562b16c669c8ea901d2f62cbc.setContent(html_bb935edb2d0bed50adc7d2532110d62c);
marker_699203b131f9975df3cf93e472385f09.bindPopup(popup_582c86d562b16c669c8ea901d2f62cbc)
;
marker_699203b131f9975df3cf93e472385f09.setIcon(icon_b6cb105d70c4b3f1a0612d42fb970934);
var marker_81f3f005965503c36d02fc3e45f5afd4 = L.marker(
[26.2728937597971, 50.2124450950677],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_6365d5a3f08fa5d3dedbee4edbe35e35 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7adc3dfcf6f3b63120d14b32b7e58aeb = L.popup({
"maxWidth": 320,
});
var html_435b51fe3a0f59e5386e87fd810bcdba = $(`<div id="html_435b51fe3a0f59e5386e87fd810bcdba" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة التوكيلات الإنشائية</b><br> الرقم الموحد: 7001480081<br> السجل التجاري: 2050049700<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.2728937597971,50.2124450950677" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7adc3dfcf6f3b63120d14b32b7e58aeb.setContent(html_435b51fe3a0f59e5386e87fd810bcdba);
marker_81f3f005965503c36d02fc3e45f5afd4.bindPopup(popup_7adc3dfcf6f3b63120d14b32b7e58aeb)
;
marker_81f3f005965503c36d02fc3e45f5afd4.setIcon(icon_6365d5a3f08fa5d3dedbee4edbe35e35);
var marker_10709aaf6c990fe76c29082b94039371 = L.marker(
[26.268714680000002, 50.20262297],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_65598b10aff9d26791fe5b6e8223ed88 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_90cdff6cb274727af3a2d366d8714de3 = L.popup({
"maxWidth": 320,
});
var html_2b16a3045ac5e4b882f934aaf3258dba = $(`<div id="html_2b16a3045ac5e4b882f934aaf3258dba" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نظم الاتصالات والطاقة المحدودة</b><br> الرقم الموحد: 7001605604<br> السجل التجاري: 2051041035<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.26865468,50.20262297" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_90cdff6cb274727af3a2d366d8714de3.setContent(html_2b16a3045ac5e4b882f934aaf3258dba);
marker_10709aaf6c990fe76c29082b94039371.bindPopup(popup_90cdff6cb274727af3a2d366d8714de3)
;
marker_10709aaf6c990fe76c29082b94039371.setIcon(icon_65598b10aff9d26791fe5b6e8223ed88);
var marker_ccebef05ef31c4d38955711f6d1a0886 = L.marker(
[26.27052997, 50.20888549],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_9c7c3e28443ee7399fa0ed473908d09d = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c5d0db639ed842a9a303c7580108063f = L.popup({
"maxWidth": 320,
});
var html_eb74d93f7302b57323dcb83d1b9a4435 = $(`<div id="html_eb74d93f7302b57323dcb83d1b9a4435" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة وجه للمقاولات</b><br> الرقم الموحد: 7006829274<br> السجل التجاري: 2051025728<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.27052997,50.20888549" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c5d0db639ed842a9a303c7580108063f.setContent(html_eb74d93f7302b57323dcb83d1b9a4435);
marker_ccebef05ef31c4d38955711f6d1a0886.bindPopup(popup_c5d0db639ed842a9a303c7580108063f)
;
marker_ccebef05ef31c4d38955711f6d1a0886.setIcon(icon_9c7c3e28443ee7399fa0ed473908d09d);
var marker_07285f755b8ddb9145df9ab19c50a381 = L.marker(
[26.2662342, 50.20360234],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_e41193e810bf0e657c7034289f2754d9 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d3f4f475bf1236e1d7a5c6e3b3e645e7 = L.popup({
"maxWidth": 320,
});
var html_f96c124d36a48533579bc60d444514e5 = $(`<div id="html_f96c124d36a48533579bc60d444514e5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة هيلونج جيوفيزيكال ليميتد</b><br> الرقم الموحد: 7017499679<br> السجل التجاري: 2052102385<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.2662342,50.20360234" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d3f4f475bf1236e1d7a5c6e3b3e645e7.setContent(html_f96c124d36a48533579bc60d444514e5);
marker_07285f755b8ddb9145df9ab19c50a381.bindPopup(popup_d3f4f475bf1236e1d7a5c6e3b3e645e7)
;
marker_07285f755b8ddb9145df9ab19c50a381.setIcon(icon_e41193e810bf0e657c7034289f2754d9);
var marker_431caee3db21abcf2ed16407a3376a75 = L.marker(
[26.2683378, 50.21218783],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_25d6b52c16ca13977bfde698ec2a6233 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ee7cdec5407c6b04c2c7334911f262bb = L.popup({
"maxWidth": 320,
});
var html_747842f47216b3bd842958597b360d7a = $(`<div id="html_747842f47216b3bd842958597b360d7a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كنتنيوس نيتروجين سيرفيسز العربية</b><br> الرقم الموحد: 7001671614<br> السجل التجاري: 2051045872<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.2683378,50.21218783" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ee7cdec5407c6b04c2c7334911f262bb.setContent(html_747842f47216b3bd842958597b360d7a);
marker_431caee3db21abcf2ed16407a3376a75.bindPopup(popup_ee7cdec5407c6b04c2c7334911f262bb)
;
marker_431caee3db21abcf2ed16407a3376a75.setIcon(icon_25d6b52c16ca13977bfde698ec2a6233);
var marker_4f51f6a78c19ea2175a39ac98eee6152 = L.marker(
[26.26859468, 50.20262297],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_03db83c696d09e550224d30fd1713371 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cd1d6534469688845ef8d92f230b5992 = L.popup({
"maxWidth": 320,
});
var html_fca3d7d76a9bb0242807921597984135 = $(`<div id="html_fca3d7d76a9bb0242807921597984135" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نظم العمل للصيانة</b><br> الرقم الموحد: 7015831311<br> السجل التجاري: 2051041035<br> المنطقة: الثقبه<br> الحارة: الخبر الجنوبية<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.26865468,50.20262297" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cd1d6534469688845ef8d92f230b5992.setContent(html_fca3d7d76a9bb0242807921597984135);
marker_4f51f6a78c19ea2175a39ac98eee6152.bindPopup(popup_cd1d6534469688845ef8d92f230b5992)
;
marker_4f51f6a78c19ea2175a39ac98eee6152.setIcon(icon_03db83c696d09e550224d30fd1713371);
var marker_5f7d00138af3a344f330fe6abe4dd07d = L.marker(
[26.28827434, 50.18818179],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_7decae1058c3805b1b64f263aa73a013 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_aa78a461c7317c7ffc9f51ad5705ea1e = L.popup({
"maxWidth": 320,
});
var html_4cfea28f5b1c5dc9a66a40a2a951cab2 = $(`<div id="html_4cfea28f5b1c5dc9a66a40a2a951cab2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كتانه للإنشاء العربية السعودية</b><br> الرقم الموحد: 7000045836<br> السجل التجاري: 2051002461<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.28827434,50.18818179" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_aa78a461c7317c7ffc9f51ad5705ea1e.setContent(html_4cfea28f5b1c5dc9a66a40a2a951cab2);
marker_5f7d00138af3a344f330fe6abe4dd07d.bindPopup(popup_aa78a461c7317c7ffc9f51ad5705ea1e)
;
marker_5f7d00138af3a344f330fe6abe4dd07d.setIcon(icon_7decae1058c3805b1b64f263aa73a013);
var marker_875658483ed29166242ebb28b878556c = L.marker(
[26.28872651, 50.18305051],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_e97768491947c1a765a2d1be8c693b9c = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_58f718cce3624dab8bf2995b1d67a770 = L.popup({
"maxWidth": 320,
});
var html_035b26856b336e7a8c262793311043f9 = $(`<div id="html_035b26856b336e7a8c262793311043f9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كامبكو للمضخات ونزع المياه المحدودة</b><br> الرقم الموحد: 7001566558<br> السجل التجاري: 2051037842<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.28872651,50.18305051" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_58f718cce3624dab8bf2995b1d67a770.setContent(html_035b26856b336e7a8c262793311043f9);
marker_875658483ed29166242ebb28b878556c.bindPopup(popup_58f718cce3624dab8bf2995b1d67a770)
;
marker_875658483ed29166242ebb28b878556c.setIcon(icon_e97768491947c1a765a2d1be8c693b9c);
var marker_bf03c4a3643f68ed708279a5cb70541a = L.marker(
[26.28875863, 50.18720396],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_ef2bc924fddc473b26e80438db8a4913 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_52606675db4e3dad3e46a07ef51987ac = L.popup({
"maxWidth": 320,
});
var html_a70a6f35b9a499420d4e98ab557c4fc9 = $(`<div id="html_a70a6f35b9a499420d4e98ab557c4fc9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مزايا المتميزون للمقاولات</b><br> الرقم الموحد: 7006663160<br> السجل التجاري: 2050204047<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.28875863,50.18720396" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_52606675db4e3dad3e46a07ef51987ac.setContent(html_a70a6f35b9a499420d4e98ab557c4fc9);
marker_bf03c4a3643f68ed708279a5cb70541a.bindPopup(popup_52606675db4e3dad3e46a07ef51987ac)
;
marker_bf03c4a3643f68ed708279a5cb70541a.setIcon(icon_ef2bc924fddc473b26e80438db8a4913);
var marker_8d27e83a148d33c8ce60526c654bb153 = L.marker(
[26.288803187788, 50.1832966016792],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_123ec6c7edd82ee5b99e465f35b473f4 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ae8b84c1033d34dbee29216a2b1fe82a = L.popup({
"maxWidth": 320,
});
var html_3f856701342b0f83f1a0bccc115915b2 = $(`<div id="html_3f856701342b0f83f1a0bccc115915b2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة سانج يونج للهندسة والانشاءات</b><br> الرقم الموحد: 7001530505<br> السجل التجاري: 2051036014<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.288803187788,50.1832966016792" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ae8b84c1033d34dbee29216a2b1fe82a.setContent(html_3f856701342b0f83f1a0bccc115915b2);
marker_8d27e83a148d33c8ce60526c654bb153.bindPopup(popup_ae8b84c1033d34dbee29216a2b1fe82a)
;
marker_8d27e83a148d33c8ce60526c654bb153.setIcon(icon_123ec6c7edd82ee5b99e465f35b473f4);
var marker_1153601da13f36b95d87255f57976c09 = L.marker(
[26.2926993, 50.18621615],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_d87e9c063b6a9e920eb14bd16e5a1ac9 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_72ba600085eb8ceda2e77df2ccfb86f4 = L.popup({
"maxWidth": 320,
});
var html_ed1f3d1256762101ec75065eee58dc43 = $(`<div id="html_ed1f3d1256762101ec75065eee58dc43" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بايتور السعودية العربية للانشات</b><br> الرقم الموحد: 7001560080<br> السجل التجاري: 2051037631<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.2926993,50.18621615" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_72ba600085eb8ceda2e77df2ccfb86f4.setContent(html_ed1f3d1256762101ec75065eee58dc43);
marker_1153601da13f36b95d87255f57976c09.bindPopup(popup_72ba600085eb8ceda2e77df2ccfb86f4)
;
marker_1153601da13f36b95d87255f57976c09.setIcon(icon_d87e9c063b6a9e920eb14bd16e5a1ac9);
var marker_2da4874d7d4a5a51bce38fac3711b54a = L.marker(
[26.29305294, 50.18331511],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_fb766bce749b686d4b2be2ea8c64b01f = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f91b3f43ff60f02847146760eab56a89 = L.popup({
"maxWidth": 320,
});
var html_f2808b72bc64d3bd35024b185557058b = $(`<div id="html_f2808b72bc64d3bd35024b185557058b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المثابرون للإنشاء و التعمير</b><br> الرقم الموحد: 7001406417<br> السجل التجاري: 2051024339<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.29305294,50.18331511" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f91b3f43ff60f02847146760eab56a89.setContent(html_f2808b72bc64d3bd35024b185557058b);
marker_2da4874d7d4a5a51bce38fac3711b54a.bindPopup(popup_f91b3f43ff60f02847146760eab56a89)
;
marker_2da4874d7d4a5a51bce38fac3711b54a.setIcon(icon_fb766bce749b686d4b2be2ea8c64b01f);
var marker_fa49a9fb2d4d35eef91604abf16a1446 = L.marker(
[26.29313696, 50.18228135],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_40585335a2bb288e5dbc89ecae2b226a = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6150fa1f9da9923a058c2e3458558870 = L.popup({
"maxWidth": 320,
});
var html_ff38aa1fde716583e282a2eaf6ac17e1 = $(`<div id="html_ff38aa1fde716583e282a2eaf6ac17e1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اسيستم وعلي الحربي للاستشارات</b><br> الرقم الموحد: 7001367924<br> السجل التجاري: 2051060090<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.29313696,50.18228135" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6150fa1f9da9923a058c2e3458558870.setContent(html_ff38aa1fde716583e282a2eaf6ac17e1);
marker_fa49a9fb2d4d35eef91604abf16a1446.bindPopup(popup_6150fa1f9da9923a058c2e3458558870)
;
marker_fa49a9fb2d4d35eef91604abf16a1446.setIcon(icon_40585335a2bb288e5dbc89ecae2b226a);
var marker_4bb9cbfc358eaa23373bc8a69a51c20c = L.marker(
[26.29409053, 50.18575657],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_de17d6d876390c63585d9f68eb5ea237 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a88c405b087b088314dba6b3ae122aba = L.popup({
"maxWidth": 320,
});
var html_26c7ce6635493a5783c6918813c72cb7 = $(`<div id="html_26c7ce6635493a5783c6918813c72cb7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الاضاءه المحترفة التجارية</b><br> الرقم الموحد: 7016824026<br> السجل التجاري: 2051229594<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.29409053,50.18575657" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a88c405b087b088314dba6b3ae122aba.setContent(html_26c7ce6635493a5783c6918813c72cb7);
marker_4bb9cbfc358eaa23373bc8a69a51c20c.bindPopup(popup_a88c405b087b088314dba6b3ae122aba)
;
marker_4bb9cbfc358eaa23373bc8a69a51c20c.setIcon(icon_de17d6d876390c63585d9f68eb5ea237);
var marker_e06c7ed8117779d27d7c34584887cec1 = L.marker(
[26.29483786, 50.18526995],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_60c57b96c5c098ff27040ef26b8b11db = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9af63f70c72e4d342ca573b6c392e91d = L.popup({
"maxWidth": 320,
});
var html_d6b46568a495126d0efbb27f2dbb5a2d = $(`<div id="html_d6b46568a495126d0efbb27f2dbb5a2d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دلتا الوديان للمقاولات</b><br> الرقم الموحد: 7001560247<br> السجل التجاري: 2051036547<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.29483786,50.18526995" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9af63f70c72e4d342ca573b6c392e91d.setContent(html_d6b46568a495126d0efbb27f2dbb5a2d);
marker_e06c7ed8117779d27d7c34584887cec1.bindPopup(popup_9af63f70c72e4d342ca573b6c392e91d)
;
marker_e06c7ed8117779d27d7c34584887cec1.setIcon(icon_60c57b96c5c098ff27040ef26b8b11db);
var marker_b0a0a8b5c87f096e23047fdd20016a91 = L.marker(
[26.2948378620006, 50.1852699494949],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_3e326147d7f32d95daf97e1d05f3f6e3 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_16a64a72320da675de01aae37d15e8c6 = L.popup({
"maxWidth": 320,
});
var html_ed2221f61515ad72307db50538d93436 = $(`<div id="html_ed2221f61515ad72307db50538d93436" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سولفاي السعودية للخدمات</b><br> الرقم الموحد: 7001816136<br> السجل التجاري: 2051056257<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.2948378620006,50.1852699494949" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_16a64a72320da675de01aae37d15e8c6.setContent(html_ed2221f61515ad72307db50538d93436);
marker_b0a0a8b5c87f096e23047fdd20016a91.bindPopup(popup_16a64a72320da675de01aae37d15e8c6)
;
marker_b0a0a8b5c87f096e23047fdd20016a91.setIcon(icon_3e326147d7f32d95daf97e1d05f3f6e3);
var marker_916b18f5f956d369b6ef4785182a5c73 = L.marker(
[26.294897862000703, 50.1852699494949],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_fefaef352bdc36315fa27bc2cc13a9bd = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6076a322a22ac663ee0ce2586e26bc7c = L.popup({
"maxWidth": 320,
});
var html_ca0adaaab8bea17526a020a62087ec49 = $(`<div id="html_ca0adaaab8bea17526a020a62087ec49" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة انترتك العربية السعودية المحدودة</b><br> الرقم الموحد: 7001396808<br> السجل التجاري: 2051023459<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.2948378620007,50.1852699494949" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6076a322a22ac663ee0ce2586e26bc7c.setContent(html_ca0adaaab8bea17526a020a62087ec49);
marker_916b18f5f956d369b6ef4785182a5c73.bindPopup(popup_6076a322a22ac663ee0ce2586e26bc7c)
;
marker_916b18f5f956d369b6ef4785182a5c73.setIcon(icon_fefaef352bdc36315fa27bc2cc13a9bd);
var marker_ead5b0e0d3011a2594faaba207e44386 = L.marker(
[26.2947778620007, 50.1852699494949],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_0f1315e5dd78eb9cb63d1cfdee538c0a = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5dc45512ed2da2485a45ae7b68dff6f6 = L.popup({
"maxWidth": 320,
});
var html_4949c28a07acbcb24f86e14819bc2f63 = $(`<div id="html_4949c28a07acbcb24f86e14819bc2f63" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>سياه الخليج سبيشال ستيل للصناعة</b><br> الرقم الموحد: 7030013226<br> السجل التجاري: 2050160078<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.2948378620007,50.1852699494949" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5dc45512ed2da2485a45ae7b68dff6f6.setContent(html_4949c28a07acbcb24f86e14819bc2f63);
marker_ead5b0e0d3011a2594faaba207e44386.bindPopup(popup_5dc45512ed2da2485a45ae7b68dff6f6)
;
marker_ead5b0e0d3011a2594faaba207e44386.setIcon(icon_0f1315e5dd78eb9cb63d1cfdee538c0a);
var marker_bcb064bfc2176a9d2a80c02bb525a2a9 = L.marker(
[26.2957422215696, 50.1693483480021],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_d41444dfbf1ca28bd0b1edcf19dae7fd = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5bf66db4a007b3d8d4beed163e017777 = L.popup({
"maxWidth": 320,
});
var html_4d26286eb955cc39d594d39c9e28c359 = $(`<div id="html_4d26286eb955cc39d594d39c9e28c359" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الخليج للإطارات والمطاط القابضة</b><br> الرقم الموحد: 7012339490<br> السجل التجاري: 2051061896<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.2957422215696,50.1693483480021" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5bf66db4a007b3d8d4beed163e017777.setContent(html_4d26286eb955cc39d594d39c9e28c359);
marker_bcb064bfc2176a9d2a80c02bb525a2a9.bindPopup(popup_5bf66db4a007b3d8d4beed163e017777)
;
marker_bcb064bfc2176a9d2a80c02bb525a2a9.setIcon(icon_d41444dfbf1ca28bd0b1edcf19dae7fd);
var marker_d81b8bb2308e1c4569e5fdfae0106059 = L.marker(
[26.29968479085691, 50.17517284490168],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_6c5a0f2c003a54b5e30fc7ea975fbc29 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_98634f6063932dc04de55b7b62cb9de4 = L.popup({
"maxWidth": 320,
});
var html_bd87deea344b2e7d5cadefba437da1a9 = $(`<div id="html_bd87deea344b2e7d5cadefba437da1a9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة زدني علما للتدريب</b><br> الرقم الموحد: 7039090001<br> السجل التجاري: 2051255639<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.29968479085691,50.17517284490168" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_98634f6063932dc04de55b7b62cb9de4.setContent(html_bd87deea344b2e7d5cadefba437da1a9);
marker_d81b8bb2308e1c4569e5fdfae0106059.bindPopup(popup_98634f6063932dc04de55b7b62cb9de4)
;
marker_d81b8bb2308e1c4569e5fdfae0106059.setIcon(icon_6c5a0f2c003a54b5e30fc7ea975fbc29);
var marker_2542837d5a30677f65ce9c97a117fe22 = L.marker(
[26.30006871, 50.17421045],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_c69a7d045e72196cb77ea1242706a28c = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d6f22b6b72205065fb389f502492f13d = L.popup({
"maxWidth": 320,
});
var html_55ed2e64be7ceaea8ead02c3b7dfac44 = $(`<div id="html_55ed2e64be7ceaea8ead02c3b7dfac44" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الخدمات الفنية الخاصة المتحدة</b><br> الرقم الموحد: 7008269677<br> السجل التجاري: 2051232375<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.30006871,50.17421045" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d6f22b6b72205065fb389f502492f13d.setContent(html_55ed2e64be7ceaea8ead02c3b7dfac44);
marker_2542837d5a30677f65ce9c97a117fe22.bindPopup(popup_d6f22b6b72205065fb389f502492f13d)
;
marker_2542837d5a30677f65ce9c97a117fe22.setIcon(icon_c69a7d045e72196cb77ea1242706a28c);
var marker_bcb4dbf915c419b11a8f5ccd301124e2 = L.marker(
[26.30010339, 50.17405069],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_1e040c5d7cf211d9fe7012c821ab8d90 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_aa936d5a2d34088d1345f3b011707e4d = L.popup({
"maxWidth": 320,
});
var html_29a0a138a42662c44df161cdecc1d1b5 = $(`<div id="html_29a0a138a42662c44df161cdecc1d1b5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>ألتوس إنترفنشن السعودية</b><br> الرقم الموحد: 7016440971<br> السجل التجاري: 2051228796<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.30010339,50.17405069" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_aa936d5a2d34088d1345f3b011707e4d.setContent(html_29a0a138a42662c44df161cdecc1d1b5);
marker_bcb4dbf915c419b11a8f5ccd301124e2.bindPopup(popup_aa936d5a2d34088d1345f3b011707e4d)
;
marker_bcb4dbf915c419b11a8f5ccd301124e2.setIcon(icon_1e040c5d7cf211d9fe7012c821ab8d90);
var marker_3eddf993da8bcbe0d1597648688e47fa = L.marker(
[26.30017384, 50.1743709],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_5623f0e53feca648995446e48ffbf119 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7c29c6e2906c478e1714d7bb5a85c88a = L.popup({
"maxWidth": 320,
});
var html_c052509d65c612d5d6bd0e9e30192e56 = $(`<div id="html_c052509d65c612d5d6bd0e9e30192e56" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فيوليا ميدل ايست للخدمات البيئية</b><br> الرقم الموحد: 7007686954<br> السجل التجاري: 2050112735<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.30017384,50.1743709" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7c29c6e2906c478e1714d7bb5a85c88a.setContent(html_c052509d65c612d5d6bd0e9e30192e56);
marker_3eddf993da8bcbe0d1597648688e47fa.bindPopup(popup_7c29c6e2906c478e1714d7bb5a85c88a)
;
marker_3eddf993da8bcbe0d1597648688e47fa.setIcon(icon_5623f0e53feca648995446e48ffbf119);
var marker_9cdd1051318cb3e7d08101f7faa1c6e6 = L.marker(
[26.30032658, 50.17201454],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_b8673653d85325ffdbfb3a3111166a50 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fa0d248ab8a56b82529af84f90382d32 = L.popup({
"maxWidth": 320,
});
var html_038a19fe2e644304a1eb2919767732fe = $(`<div id="html_038a19fe2e644304a1eb2919767732fe" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اسباير برو المتحدة الرياضية</b><br> الرقم الموحد: 7028434285<br> السجل التجاري: 2051240810<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.30032658,50.17201454" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fa0d248ab8a56b82529af84f90382d32.setContent(html_038a19fe2e644304a1eb2919767732fe);
marker_9cdd1051318cb3e7d08101f7faa1c6e6.bindPopup(popup_fa0d248ab8a56b82529af84f90382d32)
;
marker_9cdd1051318cb3e7d08101f7faa1c6e6.setIcon(icon_b8673653d85325ffdbfb3a3111166a50);
var marker_f1c7559b69b449d39c768321594bd34f = L.marker(
[26.3003572019116, 50.1814933575265],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_2e508eea490f268ac92fca61b6236390 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_12b8e3496e214a17a55adb061bfee06b = L.popup({
"maxWidth": 320,
});
var html_fcb52ea0c615960d9fe3bbeec485bc62 = $(`<div id="html_fcb52ea0c615960d9fe3bbeec485bc62" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سايديم السعودية المحدودة</b><br> الرقم الموحد: 7001520001<br> السجل التجاري: 2051035275<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3003572019116,50.1814933575265" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_12b8e3496e214a17a55adb061bfee06b.setContent(html_fcb52ea0c615960d9fe3bbeec485bc62);
marker_f1c7559b69b449d39c768321594bd34f.bindPopup(popup_12b8e3496e214a17a55adb061bfee06b)
;
marker_f1c7559b69b449d39c768321594bd34f.setIcon(icon_2e508eea490f268ac92fca61b6236390);
var marker_423d1028748d7fd42fa364c7623448fc = L.marker(
[26.30047483986738, 50.17189686186612],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_f9a20adaf52443d7c942029bba490966 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ed744a98a5fd7f487f2fbc1679c78d2b = L.popup({
"maxWidth": 320,
});
var html_6a010ee785c93e84f275a1082ab38fad = $(`<div id="html_6a010ee785c93e84f275a1082ab38fad" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تكر للطاقة</b><br> الرقم الموحد: 7021766220<br> السجل التجاري: 2050143231<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.30047483986738,50.17189686186612" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ed744a98a5fd7f487f2fbc1679c78d2b.setContent(html_6a010ee785c93e84f275a1082ab38fad);
marker_423d1028748d7fd42fa364c7623448fc.bindPopup(popup_ed744a98a5fd7f487f2fbc1679c78d2b)
;
marker_423d1028748d7fd42fa364c7623448fc.setIcon(icon_f9a20adaf52443d7c942029bba490966);
var marker_0f9b364335b15d25d3944c501b3c5de9 = L.marker(
[26.3021262, 50.17703625],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_944e193ebdda8e1a9ef31151434fac6b = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5d288684924bb6121c12245a224c1b54 = L.popup({
"maxWidth": 320,
});
var html_9dc470fc229bf49a38401c29325c95fc = $(`<div id="html_9dc470fc229bf49a38401c29325c95fc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الرموز الذكية للتجارة شركة ذات المسؤولية محدودة شخص واحد</b><br> الرقم الموحد: 7002631211<br> السجل التجاري: 2051220489<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3021262,50.17703625" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5d288684924bb6121c12245a224c1b54.setContent(html_9dc470fc229bf49a38401c29325c95fc);
marker_0f9b364335b15d25d3944c501b3c5de9.bindPopup(popup_5d288684924bb6121c12245a224c1b54)
;
marker_0f9b364335b15d25d3944c501b3c5de9.setIcon(icon_944e193ebdda8e1a9ef31151434fac6b);
var marker_1f6ffd88ca955339a8666c564651d0bb = L.marker(
[26.30246797900227, 50.17790458863982],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_c97ed5d875529595bd5e7d8833e6c8a6 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d5d80b41f15a51204d81fa8590d1ad66 = L.popup({
"maxWidth": 320,
});
var html_39c4ef2c6f070fc000d02494fda1f16e = $(`<div id="html_39c4ef2c6f070fc000d02494fda1f16e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جلفار العالمية للمقاولات</b><br> الرقم الموحد: 7040342169<br> السجل التجاري: 1009037910<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.30246797900227,50.17790458863982" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d5d80b41f15a51204d81fa8590d1ad66.setContent(html_39c4ef2c6f070fc000d02494fda1f16e);
marker_1f6ffd88ca955339a8666c564651d0bb.bindPopup(popup_d5d80b41f15a51204d81fa8590d1ad66)
;
marker_1f6ffd88ca955339a8666c564651d0bb.setIcon(icon_c97ed5d875529595bd5e7d8833e6c8a6);
var marker_5bdc5e4bcf430535b7f263b6cc53c703 = L.marker(
[26.302583729016, 50.1778584702172],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_c732cec603533178f30a490d086c51fe = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_940976e16a937affa65bc5fc96e628a7 = L.popup({
"maxWidth": 320,
});
var html_81635305d9d60ca5e9cba91a15eea5fa = $(`<div id="html_81635305d9d60ca5e9cba91a15eea5fa" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سما للتقنيات المحدودة</b><br> الرقم الموحد: 7009436291<br> السجل التجاري: 2051061060<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.302583729016,50.1778584702172" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_940976e16a937affa65bc5fc96e628a7.setContent(html_81635305d9d60ca5e9cba91a15eea5fa);
marker_5bdc5e4bcf430535b7f263b6cc53c703.bindPopup(popup_940976e16a937affa65bc5fc96e628a7)
;
marker_5bdc5e4bcf430535b7f263b6cc53c703.setIcon(icon_c732cec603533178f30a490d086c51fe);
var marker_09a6d5c7918ed3550028229294874db2 = L.marker(
[26.3026733400001, 50.178100586],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_0a3434edafd5809007bee4c4abb4dd1c = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5b09056b8cd25ee9de2bef9726a18afb = L.popup({
"maxWidth": 320,
});
var html_c6696130f95a36ed3d1b005dc9c65121 = $(`<div id="html_c6696130f95a36ed3d1b005dc9c65121" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مركز المعرفي للأسمنت للتدريب</b><br> الرقم الموحد: 7016230919<br> السجل التجاري: 2051228320<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3026733400001,50.178100586" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5b09056b8cd25ee9de2bef9726a18afb.setContent(html_c6696130f95a36ed3d1b005dc9c65121);
marker_09a6d5c7918ed3550028229294874db2.bindPopup(popup_5b09056b8cd25ee9de2bef9726a18afb)
;
marker_09a6d5c7918ed3550028229294874db2.setIcon(icon_0a3434edafd5809007bee4c4abb4dd1c);
var marker_7d3634243eedba874e2d07f8ac8aa7a9 = L.marker(
[26.30274041, 50.17813747],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_479b19520ee8a322d9374406e54735a3 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5b99d34c97dcd59530ee9d2e79d71e41 = L.popup({
"maxWidth": 320,
});
var html_370c25d277d13b955871708b52eb6b2b = $(`<div id="html_370c25d277d13b955871708b52eb6b2b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة زي بي العربية للحفر المحدودة</b><br> الرقم الموحد: 7001405807<br> السجل التجاري: 2051024681<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.30274041,50.17813747" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5b99d34c97dcd59530ee9d2e79d71e41.setContent(html_370c25d277d13b955871708b52eb6b2b);
marker_7d3634243eedba874e2d07f8ac8aa7a9.bindPopup(popup_5b99d34c97dcd59530ee9d2e79d71e41)
;
marker_7d3634243eedba874e2d07f8ac8aa7a9.setIcon(icon_479b19520ee8a322d9374406e54735a3);
var marker_6aabe2a1249b546c0b95f26330293ef6 = L.marker(
[26.304665853538, 50.18000571853356],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_c11cf66fb6e01dc1738893f363cb930b = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_be70e8a7d184369470eef9ff4ac6e65d = L.popup({
"maxWidth": 320,
});
var html_6352fb9fb440c88ccac93a44d98611ca = $(`<div id="html_6352fb9fb440c88ccac93a44d98611ca" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة خدمة الخليج الدولية</b><br> الرقم الموحد: 7040865805<br> السجل التجاري: 2050191235<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.304665853538,50.18000571853356" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_be70e8a7d184369470eef9ff4ac6e65d.setContent(html_6352fb9fb440c88ccac93a44d98611ca);
marker_6aabe2a1249b546c0b95f26330293ef6.bindPopup(popup_be70e8a7d184369470eef9ff4ac6e65d)
;
marker_6aabe2a1249b546c0b95f26330293ef6.setIcon(icon_c11cf66fb6e01dc1738893f363cb930b);
var marker_0b5390229a952a3e03fdfe0d25e4cc0f = L.marker(
[26.3055176950909, 50.1799633807071],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_c47360628e85b0bcce550cc5ff1f9b2a = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cdcead095a87147dead855134ea833e1 = L.popup({
"maxWidth": 320,
});
var html_0a3277e9c09ca2f798eb61f4fd0e3754 = $(`<div id="html_0a3277e9c09ca2f798eb61f4fd0e3754" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة رونق الطبي شركة شخص واحد</b><br> الرقم الموحد: 7013784645<br> السجل التجاري: 2051040464<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3055176950909,50.1799633807071" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cdcead095a87147dead855134ea833e1.setContent(html_0a3277e9c09ca2f798eb61f4fd0e3754);
marker_0b5390229a952a3e03fdfe0d25e4cc0f.bindPopup(popup_cdcead095a87147dead855134ea833e1)
;
marker_0b5390229a952a3e03fdfe0d25e4cc0f.setIcon(icon_c47360628e85b0bcce550cc5ff1f9b2a);
var marker_625997854ec6461b62509ec3a6b7a1d9 = L.marker(
[26.30588153, 50.17512339],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_5c6ee28413a93a93794056aa8eb1088e = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2f63da2d02563f2106b44177fedb9cd9 = L.popup({
"maxWidth": 320,
});
var html_2705fbed4f2d4d8a58deed7a4cd08f32 = $(`<div id="html_2705fbed4f2d4d8a58deed7a4cd08f32" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة حلول الحفر المتطورة للمقاولات</b><br> الرقم الموحد: 7011053076<br> السجل التجاري: 2051222334<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.30588153,50.17512339" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2f63da2d02563f2106b44177fedb9cd9.setContent(html_2705fbed4f2d4d8a58deed7a4cd08f32);
marker_625997854ec6461b62509ec3a6b7a1d9.bindPopup(popup_2f63da2d02563f2106b44177fedb9cd9)
;
marker_625997854ec6461b62509ec3a6b7a1d9.setIcon(icon_5c6ee28413a93a93794056aa8eb1088e);
var marker_d90329a402531d64dcc1e5b6b41fe826 = L.marker(
[26.3062119783938, 50.179861600112],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_a621c139548b255bcf3217cf62b8f6ad = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cc213d227471df5ea95f3b2eaf675c41 = L.popup({
"maxWidth": 320,
});
var html_d734015a02ff64fda84e93b510e38334 = $(`<div id="html_d734015a02ff64fda84e93b510e38334" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ايكرسوليوشنز العربية السعودية</b><br> الرقم الموحد: 7009380051<br> السجل التجاري: 2051061270<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3062119783938,50.179861600112" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cc213d227471df5ea95f3b2eaf675c41.setContent(html_d734015a02ff64fda84e93b510e38334);
marker_d90329a402531d64dcc1e5b6b41fe826.bindPopup(popup_cc213d227471df5ea95f3b2eaf675c41)
;
marker_d90329a402531d64dcc1e5b6b41fe826.setIcon(icon_a621c139548b255bcf3217cf62b8f6ad);
var marker_3889d96c03730920a0bcadebc438542e = L.marker(
[26.3073415431839, 50.1786541804051],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_a214699c1089cf8959619a800ccbc03e = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cf08ea88a667feba03a00750a80b6bf6 = L.popup({
"maxWidth": 320,
});
var html_64f5a2c3aaab9cbf43d54d7dc45ede0d = $(`<div id="html_64f5a2c3aaab9cbf43d54d7dc45ede0d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سمة الابداع الدوليه</b><br> الرقم الموحد: 7013293019<br> السجل التجاري: 2051023817<br> المنطقة: الخبر<br> الحارة: العليا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3073415431839,50.1786541804051" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cf08ea88a667feba03a00750a80b6bf6.setContent(html_64f5a2c3aaab9cbf43d54d7dc45ede0d);
marker_3889d96c03730920a0bcadebc438542e.bindPopup(popup_cf08ea88a667feba03a00750a80b6bf6)
;
marker_3889d96c03730920a0bcadebc438542e.setIcon(icon_a214699c1089cf8959619a800ccbc03e);
var marker_003a0255b6db3e74f948847f4eb7c061 = L.marker(
[26.3112052696168, 50.1785654255333],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_3f813b58c71777fddf805160ced992b6 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a54fafb30c88746235846a40330905c9 = L.popup({
"maxWidth": 320,
});
var html_69b4ffe1baccabf41fb703c6a9a53932 = $(`<div id="html_69b4ffe1baccabf41fb703c6a9a53932" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة شمول القابضة</b><br> الرقم الموحد: 7009383212<br> السجل التجاري: 2051057723<br> المنطقة: الخبر<br> الحارة: الهدا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3112052696168,50.1785654255333" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a54fafb30c88746235846a40330905c9.setContent(html_69b4ffe1baccabf41fb703c6a9a53932);
marker_003a0255b6db3e74f948847f4eb7c061.bindPopup(popup_a54fafb30c88746235846a40330905c9)
;
marker_003a0255b6db3e74f948847f4eb7c061.setIcon(icon_3f813b58c71777fddf805160ced992b6);
var marker_94bafa46432087a431546f28500ce348 = L.marker(
[26.31163298969639, 50.17889873949265],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_6bc3603bfd3f5adde4a6aa5195043591 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f75749c77aa6c35902bed09be5efb588 = L.popup({
"maxWidth": 320,
});
var html_099903f38a9233eab12478fcb2406984 = $(`<div id="html_099903f38a9233eab12478fcb2406984" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الغزال العربي للتعدين</b><br> الرقم الموحد: 7036041049<br> السجل التجاري: 4030533105<br> المنطقة: الخبر<br> الحارة: الهدا<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.31163298969639,50.17889873949265" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f75749c77aa6c35902bed09be5efb588.setContent(html_099903f38a9233eab12478fcb2406984);
marker_94bafa46432087a431546f28500ce348.bindPopup(popup_f75749c77aa6c35902bed09be5efb588)
;
marker_94bafa46432087a431546f28500ce348.setIcon(icon_6bc3603bfd3f5adde4a6aa5195043591);
var marker_e14c13f894691534b53a5dad1f50711f = L.marker(
[26.32331217183478, 50.17979362048209],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_0f9a5168b92613c8f65a8da75ffca4d8 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ecbd6e608438f4a21b4fd9d094668210 = L.popup({
"maxWidth": 320,
});
var html_fda2c249da3cd24c57487e25199dee58 = $(`<div id="html_fda2c249da3cd24c57487e25199dee58" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بوسطن ميديكال كير الطبية</b><br> الرقم الموحد: 7035542377<br> السجل التجاري: 2051250562<br> المنطقة: الخبر<br> الحارة: الأندلس<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.32331217183478,50.17979362048209" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ecbd6e608438f4a21b4fd9d094668210.setContent(html_fda2c249da3cd24c57487e25199dee58);
marker_e14c13f894691534b53a5dad1f50711f.bindPopup(popup_ecbd6e608438f4a21b4fd9d094668210)
;
marker_e14c13f894691534b53a5dad1f50711f.setIcon(icon_0f9a5168b92613c8f65a8da75ffca4d8);
var marker_9a5931960af16688270fda41b36fdfa7 = L.marker(
[26.32857047076635, 50.18202153952348],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_0f85eb1f10a33d6db428992bca9415e6 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3099e510ecfd8ae2e8321b49b48c4669 = L.popup({
"maxWidth": 320,
});
var html_5260a8acf2217875d1efa7c5fb5f8b37 = $(`<div id="html_5260a8acf2217875d1efa7c5fb5f8b37" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الأعشاب المتحدة التجارية</b><br> الرقم الموحد: 7042516935<br> السجل التجاري: 2050199511<br> المنطقة: الخبر<br> الحارة: الأندلس<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.32857047076635,50.18202153952348" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3099e510ecfd8ae2e8321b49b48c4669.setContent(html_5260a8acf2217875d1efa7c5fb5f8b37);
marker_9a5931960af16688270fda41b36fdfa7.bindPopup(popup_3099e510ecfd8ae2e8321b49b48c4669)
;
marker_9a5931960af16688270fda41b36fdfa7.setIcon(icon_0f85eb1f10a33d6db428992bca9415e6);
var marker_5574fad15eabd2114b35af12a84fcd83 = L.marker(
[26.32883774333791, 50.18205665051937],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_c4911523d77a0fa1ef80534e4edf5951 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1fc8fc82cc8d6f444b9a66b5b47ccb8a = L.popup({
"maxWidth": 320,
});
var html_7ddc7b91c1ce883939c8d86c4624ce86 = $(`<div id="html_7ddc7b91c1ce883939c8d86c4624ce86" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المجرة البعيدة للترفيه</b><br> الرقم الموحد: 7037099079<br> السجل التجاري: 2051251398<br> المنطقة: الخبر<br> الحارة: الأندلس<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.32883774333791,50.18205665051937" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1fc8fc82cc8d6f444b9a66b5b47ccb8a.setContent(html_7ddc7b91c1ce883939c8d86c4624ce86);
marker_5574fad15eabd2114b35af12a84fcd83.bindPopup(popup_1fc8fc82cc8d6f444b9a66b5b47ccb8a)
;
marker_5574fad15eabd2114b35af12a84fcd83.setIcon(icon_c4911523d77a0fa1ef80534e4edf5951);
var marker_8623775b1583f06385e489746b158c01 = L.marker(
[26.3326450873478, 50.184334968611],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_6dc6c0a41ecfadc7184ae3175a5c2dc3 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9383b8ea38bc3993bb72dcc1ae0c8280 = L.popup({
"maxWidth": 320,
});
var html_c40815b6f1b226585470096bf5ea4837 = $(`<div id="html_c40815b6f1b226585470096bf5ea4837" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>قربى للاستثمار العقاري</b><br> الرقم الموحد: 7001724827<br> السجل التجاري: 2051043703<br> المنطقة: الخبر<br> الحارة: الأندلس<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3326450873478,50.184334968611" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9383b8ea38bc3993bb72dcc1ae0c8280.setContent(html_c40815b6f1b226585470096bf5ea4837);
marker_8623775b1583f06385e489746b158c01.bindPopup(popup_9383b8ea38bc3993bb72dcc1ae0c8280)
;
marker_8623775b1583f06385e489746b158c01.setIcon(icon_6dc6c0a41ecfadc7184ae3175a5c2dc3);
var marker_d9fc26471e38772b0dbda0263a718c0c = L.marker(
[26.33367239, 50.18687722],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_8b9d29bb0d4f2c06f3da3db8b0b665fa = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_102fdb0dd88b8da47d9358a5aa19ad15 = L.popup({
"maxWidth": 320,
});
var html_2130f5a962c6c1cdbbf58d17eedcc13e = $(`<div id="html_2130f5a962c6c1cdbbf58d17eedcc13e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة باسل ابوالرب وشريكه</b><br> الرقم الموحد: 7001670723<br> السجل التجاري: 2051046158<br> المنطقة: الخبر<br> الحارة: الأندلس<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.33367239,50.18687722" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_102fdb0dd88b8da47d9358a5aa19ad15.setContent(html_2130f5a962c6c1cdbbf58d17eedcc13e);
marker_d9fc26471e38772b0dbda0263a718c0c.bindPopup(popup_102fdb0dd88b8da47d9358a5aa19ad15)
;
marker_d9fc26471e38772b0dbda0263a718c0c.setIcon(icon_8b9d29bb0d4f2c06f3da3db8b0b665fa);
var marker_4405c5ef6578878c4bcf6c7be300373e = L.marker(
[26.3337323911106, 50.1868772198732],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_20484a50cb6d442db90072353664b57a = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_03131f791052028368064896f6667f5d = L.popup({
"maxWidth": 320,
});
var html_04c018973c40701f337527e19916f039 = $(`<div id="html_04c018973c40701f337527e19916f039" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فرع شركة الخليج للحفر والصيانه</b><br> الرقم الموحد: 7001907299<br> السجل التجاري: 2051027774<br> المنطقة: الخبر<br> الحارة: الأندلس<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3336723911106,50.1868772198732" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_03131f791052028368064896f6667f5d.setContent(html_04c018973c40701f337527e19916f039);
marker_4405c5ef6578878c4bcf6c7be300373e.bindPopup(popup_03131f791052028368064896f6667f5d)
;
marker_4405c5ef6578878c4bcf6c7be300373e.setIcon(icon_20484a50cb6d442db90072353664b57a);
var marker_b9ef2e3dbb8e7bc686ea8e835e8442b8 = L.marker(
[26.3336123911106, 50.1868772198732],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_660bb3a09bdff5a5e78da668ad0bd1e7 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dfcd03e51036c73674c697b0f6d57bed = L.popup({
"maxWidth": 320,
});
var html_ef7492122c5c53857738ed603f8971ab = $(`<div id="html_ef7492122c5c53857738ed603f8971ab" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة طابا الدولية للتجارة</b><br> الرقم الموحد: 7011341877<br> السجل التجاري: 2051027902<br> المنطقة: الخبر<br> الحارة: الأندلس<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3336723911106,50.1868772198732" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dfcd03e51036c73674c697b0f6d57bed.setContent(html_ef7492122c5c53857738ed603f8971ab);
marker_b9ef2e3dbb8e7bc686ea8e835e8442b8.bindPopup(popup_dfcd03e51036c73674c697b0f6d57bed)
;
marker_b9ef2e3dbb8e7bc686ea8e835e8442b8.setIcon(icon_660bb3a09bdff5a5e78da668ad0bd1e7);
var marker_8a846a3ba93e0c7dc65b353963070f5b = L.marker(
[26.33489595360162, 50.18937069922686],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_4a16698f25b23080900ae8a3e337e2cc = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_14027478e76679f092d7f892334cf666 = L.popup({
"maxWidth": 320,
});
var html_115e1ad46f74b882c5ee3d9c00c7de08 = $(`<div id="html_115e1ad46f74b882c5ee3d9c00c7de08" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المقاولون العرب السعوية المحدودة</b><br> الرقم الموحد: 7001362347<br> السجل التجاري: 2051015691<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.33489595360162,50.18937069922686" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_14027478e76679f092d7f892334cf666.setContent(html_115e1ad46f74b882c5ee3d9c00c7de08);
marker_8a846a3ba93e0c7dc65b353963070f5b.bindPopup(popup_14027478e76679f092d7f892334cf666)
;
marker_8a846a3ba93e0c7dc65b353963070f5b.setIcon(icon_4a16698f25b23080900ae8a3e337e2cc);
var marker_e55a6cb6e95694675ca1d7cd04d1b905 = L.marker(
[26.33489677992153, 50.18934639170766],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_11ae36da4ce93a012294f93aaf7f8af3 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_476e1790e37bc7766713653386b653b0 = L.popup({
"maxWidth": 320,
});
var html_45291a6e227345f7c734d4baf5fae4c6 = $(`<div id="html_45291a6e227345f7c734d4baf5fae4c6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كاز بترو لحفر الآبار</b><br> الرقم الموحد: 7040874864<br> السجل التجاري: 2051257247<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.33489677992153,50.18934639170766" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_476e1790e37bc7766713653386b653b0.setContent(html_45291a6e227345f7c734d4baf5fae4c6);
marker_e55a6cb6e95694675ca1d7cd04d1b905.bindPopup(popup_476e1790e37bc7766713653386b653b0)
;
marker_e55a6cb6e95694675ca1d7cd04d1b905.setIcon(icon_11ae36da4ce93a012294f93aaf7f8af3);
var marker_1da275c0e4590b4f56b57b2898bcf3cc = L.marker(
[26.33489865792129, 50.18932267092168],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_240d488ef8e854f65ff16dc24fdf74da = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6681418912266dad05ecd5683ea2339e = L.popup({
"maxWidth": 320,
});
var html_6cec6dfd4b3d0c05f99bade56f6b4d40 = $(`<div id="html_6cec6dfd4b3d0c05f99bade56f6b4d40" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ادفانس السعودية المحدودة</b><br> الرقم الموحد: 7041335725<br> السجل التجاري: 2051258326<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.33489865792129,50.18932267092168" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6681418912266dad05ecd5683ea2339e.setContent(html_6cec6dfd4b3d0c05f99bade56f6b4d40);
marker_1da275c0e4590b4f56b57b2898bcf3cc.bindPopup(popup_6681418912266dad05ecd5683ea2339e)
;
marker_1da275c0e4590b4f56b57b2898bcf3cc.setIcon(icon_240d488ef8e854f65ff16dc24fdf74da);
var marker_171ec190768720dd25bdd427a8ef4fa7 = L.marker(
[26.33495597445955, 50.1892215013504],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_d06d59568c711fb38f7100792a284a32 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cfb0c980170a581b03a227372210cac0 = L.popup({
"maxWidth": 320,
});
var html_9dbbd3434966f6680fad4c5a2652742c = $(`<div id="html_9dbbd3434966f6680fad4c5a2652742c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ون اي تي هوب للاتصالات و تقنية</b><br> الرقم الموحد: 7040103785<br> السجل التجاري: 2051256630<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.33495597445955,50.1892215013504" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cfb0c980170a581b03a227372210cac0.setContent(html_9dbbd3434966f6680fad4c5a2652742c);
marker_171ec190768720dd25bdd427a8ef4fa7.bindPopup(popup_cfb0c980170a581b03a227372210cac0)
;
marker_171ec190768720dd25bdd427a8ef4fa7.setIcon(icon_d06d59568c711fb38f7100792a284a32);
var marker_48b8dabe7c0403e0dd1fb3a3ab1dfed8 = L.marker(
[26.3349835110001, 50.1893630220001],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_ab503cef10b22cdc9516974f1e8e94eb = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6bbd0461f52e3caa6fdd7fa71cdbaba3 = L.popup({
"maxWidth": 320,
});
var html_23a2dbdf864eaf6f9693d2fc8f65a9b3 = $(`<div id="html_23a2dbdf864eaf6f9693d2fc8f65a9b3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركه دبليو دبليو تي انترناشونال</b><br> الرقم الموحد: 7001667588<br> السجل التجاري: 2051045711<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3349835110001,50.1893630220001" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6bbd0461f52e3caa6fdd7fa71cdbaba3.setContent(html_23a2dbdf864eaf6f9693d2fc8f65a9b3);
marker_48b8dabe7c0403e0dd1fb3a3ab1dfed8.bindPopup(popup_6bbd0461f52e3caa6fdd7fa71cdbaba3)
;
marker_48b8dabe7c0403e0dd1fb3a3ab1dfed8.setIcon(icon_ab503cef10b22cdc9516974f1e8e94eb);
var marker_8454e2874291219b1c66982e200bd174 = L.marker(
[26.33500329, 50.18944229],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_3400fc460d228da9d236ac506ba4a49f = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a0209675c8ad10bb6cb47f40dd2caafd = L.popup({
"maxWidth": 320,
});
var html_db76b90f6ac1568fe4727d18b2640c85 = $(`<div id="html_db76b90f6ac1568fe4727d18b2640c85" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نوفينتك القابضة</b><br> الرقم الموحد: 7034991914<br> السجل التجاري: 2051246955<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.33500329,50.18944229" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a0209675c8ad10bb6cb47f40dd2caafd.setContent(html_db76b90f6ac1568fe4727d18b2640c85);
marker_8454e2874291219b1c66982e200bd174.bindPopup(popup_a0209675c8ad10bb6cb47f40dd2caafd)
;
marker_8454e2874291219b1c66982e200bd174.setIcon(icon_3400fc460d228da9d236ac506ba4a49f);
var marker_1fb70f5a6dafde27b300724ca286dcf2 = L.marker(
[26.33500853901264, 50.18937395488766],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_14428c18ec00b65447c3f10514868b3c = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f4d6414a3784dc6e61409532617cb20e = L.popup({
"maxWidth": 320,
});
var html_393201506bcb950fb215e705a17b7ce7 = $(`<div id="html_393201506bcb950fb215e705a17b7ce7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة أجهزة الألياف الفريدة الأنظمة</b><br> الرقم الموحد: 7038272592<br> السجل التجاري: 2051253791<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.33500853901264,50.18937395488766" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f4d6414a3784dc6e61409532617cb20e.setContent(html_393201506bcb950fb215e705a17b7ce7);
marker_1fb70f5a6dafde27b300724ca286dcf2.bindPopup(popup_f4d6414a3784dc6e61409532617cb20e)
;
marker_1fb70f5a6dafde27b300724ca286dcf2.setIcon(icon_14428c18ec00b65447c3f10514868b3c);
var marker_b2141d87a358dee3ea396d0754e77904 = L.marker(
[26.33503167, 50.19072911],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_24035946aa3e8c4ab6de29df601e4d4f = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cf93a4b5e467d96097bbec931c07ba15 = L.popup({
"maxWidth": 320,
});
var html_946cca15dfcda841e285dd2ff0bcaedc = $(`<div id="html_946cca15dfcda841e285dd2ff0bcaedc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع سي إن بي سي شيبو درلينغ انجنيرنغ</b><br> الرقم الموحد: 7009401477<br> السجل التجاري: 2051061933<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.33503167,50.19072911" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cf93a4b5e467d96097bbec931c07ba15.setContent(html_946cca15dfcda841e285dd2ff0bcaedc);
marker_b2141d87a358dee3ea396d0754e77904.bindPopup(popup_cf93a4b5e467d96097bbec931c07ba15)
;
marker_b2141d87a358dee3ea396d0754e77904.setIcon(icon_24035946aa3e8c4ab6de29df601e4d4f);
var marker_72b607a99c19250381ffc3a588f74396 = L.marker(
[26.33513158125453, 50.19046159764923],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_d6acc91ba4b68e51e0d1b1515d9164e6 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_582b9ecc108ab2888541c2bb98292096 = L.popup({
"maxWidth": 320,
});
var html_ec7662bf90fe8964f468f5c4378f549a = $(`<div id="html_ec7662bf90fe8964f468f5c4378f549a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عزام السعودية لخدمات النفط والغاز</b><br> الرقم الموحد: 7039704270<br> السجل التجاري: 2051262809<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.33513158125453,50.19046159764923" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_582b9ecc108ab2888541c2bb98292096.setContent(html_ec7662bf90fe8964f468f5c4378f549a);
marker_72b607a99c19250381ffc3a588f74396.bindPopup(popup_582b9ecc108ab2888541c2bb98292096)
;
marker_72b607a99c19250381ffc3a588f74396.setIcon(icon_d6acc91ba4b68e51e0d1b1515d9164e6);
var marker_a7e250ae03db00a6e3ef4c86d16226c7 = L.marker(
[26.33544994, 50.19324248],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_6a283b31ccd2bdcbe9fbe207c91690b7 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_edb641fada46bac9145e9ada774b7b1c = L.popup({
"maxWidth": 320,
});
var html_6070ba0ce4f348b45d4bc6fa1e37e0b2 = $(`<div id="html_6070ba0ce4f348b45d4bc6fa1e37e0b2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جيه ايه إس فور واردينغ العربية</b><br> الرقم الموحد: 7001629844<br> السجل التجاري: 2051044828<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.33544994,50.19324248" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_edb641fada46bac9145e9ada774b7b1c.setContent(html_6070ba0ce4f348b45d4bc6fa1e37e0b2);
marker_a7e250ae03db00a6e3ef4c86d16226c7.bindPopup(popup_edb641fada46bac9145e9ada774b7b1c)
;
marker_a7e250ae03db00a6e3ef4c86d16226c7.setIcon(icon_6a283b31ccd2bdcbe9fbe207c91690b7);
var marker_761fb6ab84e31408a8c697c6d809428b = L.marker(
[26.33571118, 50.19383831],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_9d0eef449d1a29ba1336ba13a05aff2f = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_917bc2025a573f15bf35c35a712e1fd6 = L.popup({
"maxWidth": 320,
});
var html_f91134888f0628991f095c8bdeb7f7d4 = $(`<div id="html_f91134888f0628991f095c8bdeb7f7d4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الريادة الاولى لتوريدات المواد الصناعية شركة شخص واحد</b><br> الرقم الموحد: 7012079385<br> السجل التجاري: 2051047123<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.33571118,50.19383831" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_917bc2025a573f15bf35c35a712e1fd6.setContent(html_f91134888f0628991f095c8bdeb7f7d4);
marker_761fb6ab84e31408a8c697c6d809428b.bindPopup(popup_917bc2025a573f15bf35c35a712e1fd6)
;
marker_761fb6ab84e31408a8c697c6d809428b.setIcon(icon_9d0eef449d1a29ba1336ba13a05aff2f);
var marker_3f0b19a869e79ae07b6083e84acf105e = L.marker(
[26.33578448, 50.19311177],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_d427ec23966440dd0fa13dffbe91e162 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9b69122bb9b4218327016f12916e346d = L.popup({
"maxWidth": 320,
});
var html_ac606dba4d0616c981f237fc6b33f03c = $(`<div id="html_ac606dba4d0616c981f237fc6b33f03c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة امنيات المستقبل العقارية شركة شخص واحد</b><br> الرقم الموحد: 7009408092<br> السجل التجاري: 2051039937<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.33578448,50.19311177" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9b69122bb9b4218327016f12916e346d.setContent(html_ac606dba4d0616c981f237fc6b33f03c);
marker_3f0b19a869e79ae07b6083e84acf105e.bindPopup(popup_9b69122bb9b4218327016f12916e346d)
;
marker_3f0b19a869e79ae07b6083e84acf105e.setIcon(icon_d427ec23966440dd0fa13dffbe91e162);
var marker_ec8966af238e29f184358d8438eacb8e = L.marker(
[26.3358038143814, 50.1930922711457],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_a7666acbf4cb1e32d8697ffde43298ae = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_40a54775039211d8051d62ce7fa74c16 = L.popup({
"maxWidth": 320,
});
var html_419713883f595b6585c72a8cd1478c80 = $(`<div id="html_419713883f595b6585c72a8cd1478c80" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>سكيم السعودية العربية</b><br> الرقم الموحد: 7003921264<br> السجل التجاري: 2051221238<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3358038143814,50.1930922711457" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_40a54775039211d8051d62ce7fa74c16.setContent(html_419713883f595b6585c72a8cd1478c80);
marker_ec8966af238e29f184358d8438eacb8e.bindPopup(popup_40a54775039211d8051d62ce7fa74c16)
;
marker_ec8966af238e29f184358d8438eacb8e.setIcon(icon_a7666acbf4cb1e32d8697ffde43298ae);
var marker_0acca972a9327bfb84403b61634ccf5a = L.marker(
[26.3362996632756, 50.1963298477997],
{
}
).addTo(map_cc9f11c9568377e1b58f97c710508779);
var icon_8555c70a85a8a231fd7c5dcdca8fe1f1 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a61ed7995e9aaca5ebf11fa145addf22 = L.popup({
"maxWidth": 320,
});
var html_0d51ae9c07ce2c96ef3fba617a21f355 = $(`<div id="html_0d51ae9c07ce2c96ef3fba617a21f355" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة التقنية المترابطة</b><br> الرقم الموحد: 7001621874<br> السجل التجاري: 2051042895<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> عبدالله سالم الهاجري<br> <a href="https://www.google.com/maps?q=26.3362996632756,50.1963298477997" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a61ed7995e9aaca5ebf11fa145addf22.setContent(html_0d51ae9c07ce2c96ef3fba617a21f355);
marker_0acca972a9327bfb84403b61634ccf5a.bindPopup(popup_a61ed7995e9aaca5ebf11fa145addf22)
;
marker_0acca972a9327bfb84403b61634ccf5a.setIcon(icon_8555c70a85a8a231fd7c5dcdca8fe1f1);
</script>
</html> |