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 | <!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_a4f88f48bf23087b8f9e22902cc97786 {
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_17" onclick="
var panel = document.getElementById('stats_17');
var btn = document.getElementById('btn_stats_17');
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_17" 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;
">ابرار تركي النجار - 17</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 64</div>
<div><b>عدد الحارات:</b> 4</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• العقربية: 35</div><div>• الجوهرة: 16</div><div>• قرطبة: 9</div><div>• الحزام الأخضر: 4</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_17_ابرار_تركي_النجار.pdf" target="_blank" style="
display:block;
text-align:center;
background:#16a34a;
color:#fff;
text-decoration:none;
padding:10px 12px;
border-radius:12px;
font-weight:700;
margin-bottom:14px;
">تصدير بيانات هذه الخريطة PDF</a>
<div style="font-weight:bold; margin-bottom:6px;">تلوين حسب الحارة</div>
<div style="font-size:13px;">
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkpurple;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>العقربية</span>
</div>
<span style="color:#555;">(35)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الجوهرة</span>
</div>
<span style="color:#555;">(16)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>قرطبة</span>
</div>
<span style="color:#555;">(9)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:orange;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الحزام الأخضر</span>
</div>
<span style="color:#555;">(4)</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_a4f88f48bf23087b8f9e22902cc97786" ></div>
</body>
<script>
var map_a4f88f48bf23087b8f9e22902cc97786 = L.map(
"map_a4f88f48bf23087b8f9e22902cc97786",
{
center: [26.30808824616996, 50.194906995926566],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_5cc76b8b76494f42d5ec4dade75523af = 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_5cc76b8b76494f42d5ec4dade75523af.addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var tile_layer_74179d5a10e3dc7f4549d2e8efaa9c13 = 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_74179d5a10e3dc7f4549d2e8efaa9c13.addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var tile_layer_3a454d8b5ffa6f2dd8e0eacf642ffebb = 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_3a454d8b5ffa6f2dd8e0eacf642ffebb.addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var locate_control_35c396f4f022a9be2b4ef27b092bb17e = L.control.locate(
{}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var marker_2eae3608a484fd35d47e12df690a104a = L.marker(
[26.33637573286214, 50.19646824337542],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_cf4e1cd4abe2d8d0a15a304d9d34db36 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5fa8397097f6b9b6796dcf6d41153a2e = L.popup({
"maxWidth": 320,
});
var html_4003f7370395cb9f3cb861b71d5169ed = $(`<div id="html_4003f7370395cb9f3cb861b71d5169ed" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تترا الشرق الأوسط لخدمات النفط</b><br> الرقم الموحد: 7001464481<br> السجل التجاري: 2050045096<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.33637573286214,50.19646824337542" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5fa8397097f6b9b6796dcf6d41153a2e.setContent(html_4003f7370395cb9f3cb861b71d5169ed);
marker_2eae3608a484fd35d47e12df690a104a.bindPopup(popup_5fa8397097f6b9b6796dcf6d41153a2e)
;
marker_2eae3608a484fd35d47e12df690a104a.setIcon(icon_cf4e1cd4abe2d8d0a15a304d9d34db36);
var marker_378f2ec123d9e13732041f3357657b8b = L.marker(
[26.33907466, 50.18495369],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_ac5bd028ef99a83a712b64e53e832a23 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e4a3b0ed47ea20a912812189aa5a8a86 = L.popup({
"maxWidth": 320,
});
var html_e3525150c90173b010434944ee34217d = $(`<div id="html_e3525150c90173b010434944ee34217d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اس ان سي لافالان العربية</b><br> الرقم الموحد: 7001575575<br> السجل التجاري: 2051038898<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.33907466,50.18495369" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e4a3b0ed47ea20a912812189aa5a8a86.setContent(html_e3525150c90173b010434944ee34217d);
marker_378f2ec123d9e13732041f3357657b8b.bindPopup(popup_e4a3b0ed47ea20a912812189aa5a8a86)
;
marker_378f2ec123d9e13732041f3357657b8b.setIcon(icon_ac5bd028ef99a83a712b64e53e832a23);
var marker_8d26a5b398568c1d4d59452b07a7c08d = L.marker(
[26.3391346619802, 50.1849536860399],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_1b90a8fca26eb90cde54319fc1b1d4e0 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_eca61fe7d350abdc90c209b4e7b7101a = L.popup({
"maxWidth": 320,
});
var html_02a9a5768cd5f82d15b959a60e4c2e28 = $(`<div id="html_02a9a5768cd5f82d15b959a60e4c2e28" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كنتز العربيه السعوديه</b><br> الرقم الموحد: 7001354351<br> السجل التجاري: 1010088369<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.3390746619802,50.1849536860399" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_eca61fe7d350abdc90c209b4e7b7101a.setContent(html_02a9a5768cd5f82d15b959a60e4c2e28);
marker_8d26a5b398568c1d4d59452b07a7c08d.bindPopup(popup_eca61fe7d350abdc90c209b4e7b7101a)
;
marker_8d26a5b398568c1d4d59452b07a7c08d.setIcon(icon_1b90a8fca26eb90cde54319fc1b1d4e0);
var marker_adace74e8396cfb5dd1165437c24d108 = L.marker(
[26.339014661980197, 50.1849536860399],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_596d3f0018c19eaba26d48ef9dd01643 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e5198c079269195ccb55d098dfcc0e7e = L.popup({
"maxWidth": 320,
});
var html_fa3e2cd64eba0b4b3eb34911a6b54296 = $(`<div id="html_fa3e2cd64eba0b4b3eb34911a6b54296" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>اس ان سي لافالان العربية وكينتز انجينير</b><br> الرقم الموحد: 7001582936<br> السجل التجاري: 2051045049<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.3390746619802,50.1849536860399" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e5198c079269195ccb55d098dfcc0e7e.setContent(html_fa3e2cd64eba0b4b3eb34911a6b54296);
marker_adace74e8396cfb5dd1165437c24d108.bindPopup(popup_e5198c079269195ccb55d098dfcc0e7e)
;
marker_adace74e8396cfb5dd1165437c24d108.setIcon(icon_596d3f0018c19eaba26d48ef9dd01643);
var marker_23aee39f0c0ed5c6127ff311ff9d93b1 = L.marker(
[26.34101034, 50.19474309],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_21f2df83b3d17a0dc5dd68150f6fb7d2 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4bd4c1d7dc605fa23d0766e228d9b2a8 = L.popup({
"maxWidth": 320,
});
var html_be4f1e3c165c80bff9008d28751166b8 = $(`<div id="html_be4f1e3c165c80bff9008d28751166b8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة القمة الخضراء للمقاولات</b><br> الرقم الموحد: 7001396915<br> السجل التجاري: 2051003261<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.34101034,50.19474309" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4bd4c1d7dc605fa23d0766e228d9b2a8.setContent(html_be4f1e3c165c80bff9008d28751166b8);
marker_23aee39f0c0ed5c6127ff311ff9d93b1.bindPopup(popup_4bd4c1d7dc605fa23d0766e228d9b2a8)
;
marker_23aee39f0c0ed5c6127ff311ff9d93b1.setIcon(icon_21f2df83b3d17a0dc5dd68150f6fb7d2);
var marker_c65ebaf1e67dc123f9dacbb78b367a2d = L.marker(
[26.34304267, 50.18452446],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_c08821f9075704c67f19ef525dbd91c6 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_093ac19c3f114f24fa0a471c84297724 = L.popup({
"maxWidth": 320,
});
var html_b8ed1481149a860ea9e36de06b40556b = $(`<div id="html_b8ed1481149a860ea9e36de06b40556b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>إيرام الدوليه</b><br> الرقم الموحد: 7001565717<br> السجل التجاري: 2051037655<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.34304267,50.18452446" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_093ac19c3f114f24fa0a471c84297724.setContent(html_b8ed1481149a860ea9e36de06b40556b);
marker_c65ebaf1e67dc123f9dacbb78b367a2d.bindPopup(popup_093ac19c3f114f24fa0a471c84297724)
;
marker_c65ebaf1e67dc123f9dacbb78b367a2d.setIcon(icon_c08821f9075704c67f19ef525dbd91c6);
var marker_a166caacd8f1bba9f79f851957eb6af8 = L.marker(
[26.34401919, 50.17943784],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_529e6e5e81337d5c7681a66280b0f67b = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f44a240dacb5e86396cc1da7d4a560c2 = L.popup({
"maxWidth": 320,
});
var html_3af61095836f3714b5cbeaf3e34025cd = $(`<div id="html_3af61095836f3714b5cbeaf3e34025cd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نجوم هلا التجارية</b><br> الرقم الموحد: 7007429785<br> السجل التجاري: 2051173916<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.34401919,50.17943784" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f44a240dacb5e86396cc1da7d4a560c2.setContent(html_3af61095836f3714b5cbeaf3e34025cd);
marker_a166caacd8f1bba9f79f851957eb6af8.bindPopup(popup_f44a240dacb5e86396cc1da7d4a560c2)
;
marker_a166caacd8f1bba9f79f851957eb6af8.setIcon(icon_529e6e5e81337d5c7681a66280b0f67b);
var marker_47e66b4d184255b5cae8f0d8f04ce8dc = L.marker(
[26.34551566, 50.17942506],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_98be97a8ecd56f6c22bda6161a41116f = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_69b287430e48f1d85d667590d1f39658 = L.popup({
"maxWidth": 320,
});
var html_3cec5a912ece42017001a1219438b5e2 = $(`<div id="html_3cec5a912ece42017001a1219438b5e2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أتش بيه الشرق الأوسط هولدينج</b><br> الرقم الموحد: 7030275676<br> السجل التجاري: 2050160750<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.34551566,50.17942506" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_69b287430e48f1d85d667590d1f39658.setContent(html_3cec5a912ece42017001a1219438b5e2);
marker_47e66b4d184255b5cae8f0d8f04ce8dc.bindPopup(popup_69b287430e48f1d85d667590d1f39658)
;
marker_47e66b4d184255b5cae8f0d8f04ce8dc.setIcon(icon_98be97a8ecd56f6c22bda6161a41116f);
var marker_c773b4614858641a75a37f6b9fae2fce = L.marker(
[26.34590028, 50.19106844],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_ca7e39a146401f1925d838aab3363a4e = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d326be410c2f3923dd59e8852527a45d = L.popup({
"maxWidth": 320,
});
var html_7bba3f144ffa0fe8865861dcee7f97d5 = $(`<div id="html_7bba3f144ffa0fe8865861dcee7f97d5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة العلامات الفاخرة للسيارات</b><br> الرقم الموحد: 7009244596<br> السجل التجاري: 2051045762<br> المنطقة: الخبر<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.34590028,50.19106844" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d326be410c2f3923dd59e8852527a45d.setContent(html_7bba3f144ffa0fe8865861dcee7f97d5);
marker_c773b4614858641a75a37f6b9fae2fce.bindPopup(popup_d326be410c2f3923dd59e8852527a45d)
;
marker_c773b4614858641a75a37f6b9fae2fce.setIcon(icon_ca7e39a146401f1925d838aab3363a4e);
var marker_96806d34dc5ed3d246adb3daff78134f = L.marker(
[26.28465306, 50.19720391],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_05e8d212b051806c361f5161138ef7cb = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_76fc1d5dd4fa79dafeb62249686c999c = L.popup({
"maxWidth": 320,
});
var html_df34bd95b617d59c0935a23f2b404a10 = $(`<div id="html_df34bd95b617d59c0935a23f2b404a10" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة ريموند انترناشيونال</b><br> الرقم الموحد: 7001657324<br> السجل التجاري: 2051060469<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28465306,50.19720391" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_76fc1d5dd4fa79dafeb62249686c999c.setContent(html_df34bd95b617d59c0935a23f2b404a10);
marker_96806d34dc5ed3d246adb3daff78134f.bindPopup(popup_76fc1d5dd4fa79dafeb62249686c999c)
;
marker_96806d34dc5ed3d246adb3daff78134f.setIcon(icon_05e8d212b051806c361f5161138ef7cb);
var marker_bc90ffc97ee9ee2710e80564a02fbfed = L.marker(
[26.28469081, 50.19599641],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_6932b8efa5c52d67767ea88e235e75eb = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ec0600235deb94bb80f6a51b812e86ac = L.popup({
"maxWidth": 320,
});
var html_22e9b1dc0173516576c7d75caa9eea13 = $(`<div id="html_22e9b1dc0173516576c7d75caa9eea13" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>اس بي اي إي غلوبال سيرفسز اينرجي</b><br> الرقم الموحد: 7001596951<br> السجل التجاري: 2051040778<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28469081,50.19599641" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ec0600235deb94bb80f6a51b812e86ac.setContent(html_22e9b1dc0173516576c7d75caa9eea13);
marker_bc90ffc97ee9ee2710e80564a02fbfed.bindPopup(popup_ec0600235deb94bb80f6a51b812e86ac)
;
marker_bc90ffc97ee9ee2710e80564a02fbfed.setIcon(icon_6932b8efa5c52d67767ea88e235e75eb);
var marker_85ba8c130757abc4ce73d47f115f8d36 = L.marker(
[26.28471116, 50.1970334],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_12c97a5955f0d8d4039bcabe9ff45c3b = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8fe3f728a4b8ddba22794ddff15e60ac = L.popup({
"maxWidth": 320,
});
var html_5b0e20c3e540a993614b220af64766bf = $(`<div id="html_5b0e20c3e540a993614b220af64766bf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سكنا للتطوير العقاري</b><br> الرقم الموحد: 7017901211<br> السجل التجاري: 2051231772<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28471116,50.1970334" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8fe3f728a4b8ddba22794ddff15e60ac.setContent(html_5b0e20c3e540a993614b220af64766bf);
marker_85ba8c130757abc4ce73d47f115f8d36.bindPopup(popup_8fe3f728a4b8ddba22794ddff15e60ac)
;
marker_85ba8c130757abc4ce73d47f115f8d36.setIcon(icon_12c97a5955f0d8d4039bcabe9ff45c3b);
var marker_c73ca23489b55844f2e885e0e885fdb6 = L.marker(
[26.2847396148784, 50.1971425110718],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_7d139a81a81a07b99b4896c805d7e305 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d3867399ba0f1c14991be12f342ddbea = L.popup({
"maxWidth": 320,
});
var html_5954489b2ea11c9fd50e18556c967c09 = $(`<div id="html_5954489b2ea11c9fd50e18556c967c09" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الغيث للتوريدات وخدمات حقول النفط المحدودة</b><br> الرقم الموحد: 7001474209<br> السجل التجاري: 2051030786<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.2847396148784,50.1971425110718" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d3867399ba0f1c14991be12f342ddbea.setContent(html_5954489b2ea11c9fd50e18556c967c09);
marker_c73ca23489b55844f2e885e0e885fdb6.bindPopup(popup_d3867399ba0f1c14991be12f342ddbea)
;
marker_c73ca23489b55844f2e885e0e885fdb6.setIcon(icon_7d139a81a81a07b99b4896c805d7e305);
var marker_5b285bea7946e4e2b5f949209764c709 = L.marker(
[26.28482571264518, 50.19584278054308],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_071819212d9ddb236600b55e7a39705a = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4c2bb48ffea5d09dbc9aa9c70106f7a4 = L.popup({
"maxWidth": 320,
});
var html_c838c4a6a7fb62bfa0cc81f125702202 = $(`<div id="html_c838c4a6a7fb62bfa0cc81f125702202" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اندستريال اكس راي اند الايد</b><br> الرقم الموحد: 7037041105<br> السجل التجاري: 2051251286<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28482571264518,50.19584278054308" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4c2bb48ffea5d09dbc9aa9c70106f7a4.setContent(html_c838c4a6a7fb62bfa0cc81f125702202);
marker_5b285bea7946e4e2b5f949209764c709.bindPopup(popup_4c2bb48ffea5d09dbc9aa9c70106f7a4)
;
marker_5b285bea7946e4e2b5f949209764c709.setIcon(icon_071819212d9ddb236600b55e7a39705a);
var marker_834c56e84bc1da59b9dfc9b0a1292e74 = L.marker(
[26.28484597, 50.19616602],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_1c6d9cb9a9583bb5c4f42602a6be6a4f = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f5e9200b5e56f2e19edbc39eab7b965f = L.popup({
"maxWidth": 320,
});
var html_1afa1d22cd26346de635b00ada83d429 = $(`<div id="html_1afa1d22cd26346de635b00ada83d429" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ايجار السعودية للرافعات والمعدات المحدودة</b><br> الرقم الموحد: 7001897607<br> السجل التجاري: 2051059513<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28484597,50.19616602" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f5e9200b5e56f2e19edbc39eab7b965f.setContent(html_1afa1d22cd26346de635b00ada83d429);
marker_834c56e84bc1da59b9dfc9b0a1292e74.bindPopup(popup_f5e9200b5e56f2e19edbc39eab7b965f)
;
marker_834c56e84bc1da59b9dfc9b0a1292e74.setIcon(icon_1c6d9cb9a9583bb5c4f42602a6be6a4f);
var marker_401c1bcdfc6b76c63b1da1a973865664 = L.marker(
[26.2849183, 50.19738873],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_93c494b3cb3ca5e6ef05fe5f02360d95 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_08d9513f128bebf4bd0dea201b53ed1f = L.popup({
"maxWidth": 320,
});
var html_e9f24dd154104932d901a22cbd94b487 = $(`<div id="html_e9f24dd154104932d901a22cbd94b487" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سوبكون السعودية المحدودة</b><br> الرقم الموحد: 7025736880<br> السجل التجاري: 2051237277<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.2849183,50.19738873" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_08d9513f128bebf4bd0dea201b53ed1f.setContent(html_e9f24dd154104932d901a22cbd94b487);
marker_401c1bcdfc6b76c63b1da1a973865664.bindPopup(popup_08d9513f128bebf4bd0dea201b53ed1f)
;
marker_401c1bcdfc6b76c63b1da1a973865664.setIcon(icon_93c494b3cb3ca5e6ef05fe5f02360d95);
var marker_b31fd6d6e184af65b54d9eaebe5ba5b3 = L.marker(
[26.28499896, 50.19522432],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_e59ac490cc591a9d975cde5eba709326 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6f137bd99dc44853303d59a2d37b5da1 = L.popup({
"maxWidth": 320,
});
var html_09a7e8facdf85fbfa3efdaf839e3e81e = $(`<div id="html_09a7e8facdf85fbfa3efdaf839e3e81e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المهندسون الاستشاريون وشريكه</b><br> الرقم الموحد: 7001582514<br> السجل التجاري: 4030234254<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28499896,50.19522432" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6f137bd99dc44853303d59a2d37b5da1.setContent(html_09a7e8facdf85fbfa3efdaf839e3e81e);
marker_b31fd6d6e184af65b54d9eaebe5ba5b3.bindPopup(popup_6f137bd99dc44853303d59a2d37b5da1)
;
marker_b31fd6d6e184af65b54d9eaebe5ba5b3.setIcon(icon_e59ac490cc591a9d975cde5eba709326);
var marker_e951718566f6d4fded732a256bb982d9 = L.marker(
[26.28508347, 50.1960498],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_0f580c35877793de95285a6027f013b9 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d4169d85496c69521f994a3d1de311cc = L.popup({
"maxWidth": 320,
});
var html_958e571fbe664a7d050c0b4f14a5f591 = $(`<div id="html_958e571fbe664a7d050c0b4f14a5f591" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سيبام العربية السعودية المحدودة</b><br> الرقم الموحد: 7001708069<br> السجل التجاري: 2051048120<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28502347,50.1960498" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d4169d85496c69521f994a3d1de311cc.setContent(html_958e571fbe664a7d050c0b4f14a5f591);
marker_e951718566f6d4fded732a256bb982d9.bindPopup(popup_d4169d85496c69521f994a3d1de311cc)
;
marker_e951718566f6d4fded732a256bb982d9.setIcon(icon_0f580c35877793de95285a6027f013b9);
var marker_3b65ce843a23c442ee56b59e8e3bf71a = L.marker(
[26.284963469999997, 50.1960498],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_e927a794a43b5a126525453c07d0195c = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_91294004fa19da9de89b8d1343a2a674 = L.popup({
"maxWidth": 320,
});
var html_672ef1bfd754e100079820c48ca4b58c = $(`<div id="html_672ef1bfd754e100079820c48ca4b58c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ايجك بيت خبرة هندسي وشريكه</b><br> الرقم الموحد: 7001587703<br> السجل التجاري: 2051060068<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28502347,50.1960498" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_91294004fa19da9de89b8d1343a2a674.setContent(html_672ef1bfd754e100079820c48ca4b58c);
marker_3b65ce843a23c442ee56b59e8e3bf71a.bindPopup(popup_91294004fa19da9de89b8d1343a2a674)
;
marker_3b65ce843a23c442ee56b59e8e3bf71a.setIcon(icon_e927a794a43b5a126525453c07d0195c);
var marker_95bf4f2ad347028324cd17cc9ef9d0f1 = L.marker(
[26.2850234718878, 50.1960497953228],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_d962a88dd7bb67c8ae62da953d0de253 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2dba7c561f257ad859b4f696adc7e68d = L.popup({
"maxWidth": 320,
});
var html_7b7a86c6e98cd1b6cae7d952bc36a4d3 = $(`<div id="html_7b7a86c6e98cd1b6cae7d952bc36a4d3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة إف إي سي إنترناشيونال وشريكه</b><br> الرقم الموحد: 7001779961<br> السجل التجاري: 2051053018<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.2850234718878,50.1960497953228" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2dba7c561f257ad859b4f696adc7e68d.setContent(html_7b7a86c6e98cd1b6cae7d952bc36a4d3);
marker_95bf4f2ad347028324cd17cc9ef9d0f1.bindPopup(popup_2dba7c561f257ad859b4f696adc7e68d)
;
marker_95bf4f2ad347028324cd17cc9ef9d0f1.setIcon(icon_d962a88dd7bb67c8ae62da953d0de253);
var marker_04dab1b209eb5004a89ee466080f2f8e = L.marker(
[26.28505911, 50.19625055],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_fd8295d1e2f1dbad1ccf995645d6ab8e = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_35894510c0215a9a755d8fbc38038d34 = L.popup({
"maxWidth": 320,
});
var html_5422ea9f5ed37a492ad620f3957b6963 = $(`<div id="html_5422ea9f5ed37a492ad620f3957b6963" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة وسن الهندسية</b><br> الرقم الموحد: 7001562847<br> السجل التجاري: 2051038107<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28505911,50.19625055" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_35894510c0215a9a755d8fbc38038d34.setContent(html_5422ea9f5ed37a492ad620f3957b6963);
marker_04dab1b209eb5004a89ee466080f2f8e.bindPopup(popup_35894510c0215a9a755d8fbc38038d34)
;
marker_04dab1b209eb5004a89ee466080f2f8e.setIcon(icon_fd8295d1e2f1dbad1ccf995645d6ab8e);
var marker_2f0a60953daa215aef513830e9a2481c = L.marker(
[26.28508435, 50.19622745],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_b62d40e00495fe101ba090a58e70335f = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_abe311b6f589f4af673f7b800f7ec5df = L.popup({
"maxWidth": 320,
});
var html_1bef82ae2a7f2ea48a5c15e08d5f290f = $(`<div id="html_1bef82ae2a7f2ea48a5c15e08d5f290f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مرسى توباز العربية السعودية</b><br> الرقم الموحد: 7001604995<br> السجل التجاري: 2051040343<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28508435,50.19622745" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_abe311b6f589f4af673f7b800f7ec5df.setContent(html_1bef82ae2a7f2ea48a5c15e08d5f290f);
marker_2f0a60953daa215aef513830e9a2481c.bindPopup(popup_abe311b6f589f4af673f7b800f7ec5df)
;
marker_2f0a60953daa215aef513830e9a2481c.setIcon(icon_b62d40e00495fe101ba090a58e70335f);
var marker_9711f06d86fa5937fe4ce3a56bab1258 = L.marker(
[26.28509349, 50.1962384],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_ae274ea6907abbb7ec83e536967d74fb = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_71c2eba5d3378fb4427a0d0a514ccb16 = L.popup({
"maxWidth": 320,
});
var html_bfb96a2ced4ae4984baf7d07db25ccf0 = $(`<div id="html_bfb96a2ced4ae4984baf7d07db25ccf0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سانكيو ايه ار سي سي السعودية</b><br> الرقم الموحد: 7001785018<br> السجل التجاري: 2051053816<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28509349,50.1962384" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_71c2eba5d3378fb4427a0d0a514ccb16.setContent(html_bfb96a2ced4ae4984baf7d07db25ccf0);
marker_9711f06d86fa5937fe4ce3a56bab1258.bindPopup(popup_71c2eba5d3378fb4427a0d0a514ccb16)
;
marker_9711f06d86fa5937fe4ce3a56bab1258.setIcon(icon_ae274ea6907abbb7ec83e536967d74fb);
var marker_034107081eb9473a550e66640ffbefbb = L.marker(
[26.28530671, 50.19579639],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_50ba5b32a4882d14af342c39b85c165b = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8b7065a7ad942c2ba9fbc240fce72b0b = L.popup({
"maxWidth": 320,
});
var html_701f494e387a536431a00ccc495bc2cd = $(`<div id="html_701f494e387a536431a00ccc495bc2cd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سيدجويك العربية لمعاينة وتقدير</b><br> الرقم الموحد: 7001584510<br> السجل التجاري: 2051038277<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28530671,50.19579639" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8b7065a7ad942c2ba9fbc240fce72b0b.setContent(html_701f494e387a536431a00ccc495bc2cd);
marker_034107081eb9473a550e66640ffbefbb.bindPopup(popup_8b7065a7ad942c2ba9fbc240fce72b0b)
;
marker_034107081eb9473a550e66640ffbefbb.setIcon(icon_50ba5b32a4882d14af342c39b85c165b);
var marker_fc5d851c50a8a6cb1427cdeb38529458 = L.marker(
[26.28596710691959, 50.19249287433922],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_ec8021b6247fed36d6e9fa8cef6f588c = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1208f94f494a20c05f3745b934d39031 = L.popup({
"maxWidth": 320,
});
var html_66532e68edeeaee2c0fd2f81c28e048e = $(`<div id="html_66532e68edeeaee2c0fd2f81c28e048e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة شاسار العربية للمقاولات</b><br> الرقم الموحد: 7028739600<br> السجل التجاري: 2051241254<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28596710691959,50.19249287433922" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1208f94f494a20c05f3745b934d39031.setContent(html_66532e68edeeaee2c0fd2f81c28e048e);
marker_fc5d851c50a8a6cb1427cdeb38529458.bindPopup(popup_1208f94f494a20c05f3745b934d39031)
;
marker_fc5d851c50a8a6cb1427cdeb38529458.setIcon(icon_ec8021b6247fed36d6e9fa8cef6f588c);
var marker_c7ac3b7f0a4bd8b1cab143f3eb0c11a2 = L.marker(
[26.28598729125305, 50.19250383091173],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_cefc9fdf7996ff7b4ec0b84e33df392a = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_69c0a0cd12113f6898f5c1ec6511c9e9 = L.popup({
"maxWidth": 320,
});
var html_b209b04135145fd46699a98096ef1dc4 = $(`<div id="html_b209b04135145fd46699a98096ef1dc4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة تي كيو سيرت سيرفيسز الخاصة</b><br> الرقم الموحد: 7041603593<br> السجل التجاري: 2051258960<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28598729125305,50.19250383091173" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_69c0a0cd12113f6898f5c1ec6511c9e9.setContent(html_b209b04135145fd46699a98096ef1dc4);
marker_c7ac3b7f0a4bd8b1cab143f3eb0c11a2.bindPopup(popup_69c0a0cd12113f6898f5c1ec6511c9e9)
;
marker_c7ac3b7f0a4bd8b1cab143f3eb0c11a2.setIcon(icon_cefc9fdf7996ff7b4ec0b84e33df392a);
var marker_4c05e292111738918e018066390d3841 = L.marker(
[26.28601826, 50.19170312],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_0dc2422c0bb49fb9f05f1666a350db8d = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ff7610425ac84c36e235874d5e808975 = L.popup({
"maxWidth": 320,
});
var html_2627248db57e80e7264c793b90366a6b = $(`<div id="html_2627248db57e80e7264c793b90366a6b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ايفل الهندسية للتجارة العامة و</b><br> الرقم الموحد: 7029021610<br> السجل التجاري: 2051241676<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28601826,50.19170312" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ff7610425ac84c36e235874d5e808975.setContent(html_2627248db57e80e7264c793b90366a6b);
marker_4c05e292111738918e018066390d3841.bindPopup(popup_ff7610425ac84c36e235874d5e808975)
;
marker_4c05e292111738918e018066390d3841.setIcon(icon_0dc2422c0bb49fb9f05f1666a350db8d);
var marker_1b0397e46cf69ac6bd71d90314143752 = L.marker(
[26.28610188, 50.19262424],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_8ca519e785e058849daf3f5ddfda038e = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4d691fb567bb365b9d155dfcfeff8279 = L.popup({
"maxWidth": 320,
});
var html_f2277413a61d53626afb0ff05ce6c1c0 = $(`<div id="html_f2277413a61d53626afb0ff05ce6c1c0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مراس الأفراد للموارد البشرية</b><br> الرقم الموحد: 7011051807<br> السجل التجاري: 2051225174<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28604188,50.19262424" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4d691fb567bb365b9d155dfcfeff8279.setContent(html_f2277413a61d53626afb0ff05ce6c1c0);
marker_1b0397e46cf69ac6bd71d90314143752.bindPopup(popup_4d691fb567bb365b9d155dfcfeff8279)
;
marker_1b0397e46cf69ac6bd71d90314143752.setIcon(icon_8ca519e785e058849daf3f5ddfda038e);
var marker_6fd94de2c07c4dcd0270b69210c24481 = L.marker(
[26.285981879999998, 50.19262424],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_06074b233255313637eb42a1475edc6c = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_183bcc97f36185262426b8708bc8aeec = L.popup({
"maxWidth": 320,
});
var html_ca84099f558fb1fed0b95fd9c288d13f = $(`<div id="html_ca84099f558fb1fed0b95fd9c288d13f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دار الشرق الاوسط لتقنية المعلومات</b><br> الرقم الموحد: 7001495816<br> السجل التجاري: 2051032851<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28604188,50.19262424" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_183bcc97f36185262426b8708bc8aeec.setContent(html_ca84099f558fb1fed0b95fd9c288d13f);
marker_6fd94de2c07c4dcd0270b69210c24481.bindPopup(popup_183bcc97f36185262426b8708bc8aeec)
;
marker_6fd94de2c07c4dcd0270b69210c24481.setIcon(icon_06074b233255313637eb42a1475edc6c);
var marker_7420bb37ce473bf9a49501894d95f25f = L.marker(
[26.28613584753462, 50.19188314465962],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_1a2badeca3653344e619c3d2cb19172a = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_becc23ac7ca0067edcdd749267733a2b = L.popup({
"maxWidth": 320,
});
var html_2ab9d09871a69f1a20cc737a40ac9790 = $(`<div id="html_2ab9d09871a69f1a20cc737a40ac9790" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة همف للصيانة</b><br> الرقم الموحد: 7037597247<br> السجل التجاري: 2051252582<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28613584753462,50.19188314465962" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_becc23ac7ca0067edcdd749267733a2b.setContent(html_2ab9d09871a69f1a20cc737a40ac9790);
marker_7420bb37ce473bf9a49501894d95f25f.bindPopup(popup_becc23ac7ca0067edcdd749267733a2b)
;
marker_7420bb37ce473bf9a49501894d95f25f.setIcon(icon_1a2badeca3653344e619c3d2cb19172a);
var marker_1070e33735ee787cfe6c5fb5b3577ca2 = L.marker(
[26.28669869, 50.19057896],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_cfff3a4b5c621a262c6a60802e06ed77 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6eab33d85e0fbc52d88b14b9a1b52473 = L.popup({
"maxWidth": 320,
});
var html_abf740555cad5fa11e7fff7e79927b4c = $(`<div id="html_abf740555cad5fa11e7fff7e79927b4c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فاكهة الرشاقة لتقديم الوجبات</b><br> الرقم الموحد: 7008624236<br> السجل التجاري: 2052101690<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28669869,50.19057896" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6eab33d85e0fbc52d88b14b9a1b52473.setContent(html_abf740555cad5fa11e7fff7e79927b4c);
marker_1070e33735ee787cfe6c5fb5b3577ca2.bindPopup(popup_6eab33d85e0fbc52d88b14b9a1b52473)
;
marker_1070e33735ee787cfe6c5fb5b3577ca2.setIcon(icon_cfff3a4b5c621a262c6a60802e06ed77);
var marker_5546bbeefa24290a4fe9b82bb1ee5942 = L.marker(
[26.28685302, 50.19058238],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_416e6c8adf2702d5bd3633b6e6877f22 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8bc381e1728f32e30e51146991100ab6 = L.popup({
"maxWidth": 320,
});
var html_cda8fd5a8213a059ea9a1cfdce407c33 = $(`<div id="html_cda8fd5a8213a059ea9a1cfdce407c33" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة هيونداي الخضراء للأغذية</b><br> الرقم الموحد: 7017286571<br> السجل التجاري: 2051230535<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28685302,50.19058238" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8bc381e1728f32e30e51146991100ab6.setContent(html_cda8fd5a8213a059ea9a1cfdce407c33);
marker_5546bbeefa24290a4fe9b82bb1ee5942.bindPopup(popup_8bc381e1728f32e30e51146991100ab6)
;
marker_5546bbeefa24290a4fe9b82bb1ee5942.setIcon(icon_416e6c8adf2702d5bd3633b6e6877f22);
var marker_d091391267ef023ee37f3fda19d1de61 = L.marker(
[26.28820396, 50.18997231],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_fb74c22d2935ddc399e24aa556eb0349 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_de23be4700e5c20bebd06bd8c32e64d5 = L.popup({
"maxWidth": 320,
});
var html_2a0b6135d7d6ee380df3dc9dffcdbb2f = $(`<div id="html_2a0b6135d7d6ee380df3dc9dffcdbb2f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جزيرة سماء للأزياء المحدودة</b><br> الرقم الموحد: 7018055934<br> السجل التجاري: 2051023446<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.28820396,50.18997231" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_de23be4700e5c20bebd06bd8c32e64d5.setContent(html_2a0b6135d7d6ee380df3dc9dffcdbb2f);
marker_d091391267ef023ee37f3fda19d1de61.bindPopup(popup_de23be4700e5c20bebd06bd8c32e64d5)
;
marker_d091391267ef023ee37f3fda19d1de61.setIcon(icon_fb74c22d2935ddc399e24aa556eb0349);
var marker_a395659f98adffc6d75706dcceaf57a9 = L.marker(
[26.2895726416537, 50.1966007297619],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_873d01212ebfa1497ad23a0a428a3da7 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1480389d9a2650b333add42dbf21a1d3 = L.popup({
"maxWidth": 320,
});
var html_7f6dec0b54282199a16a6d9cbc4b148c = $(`<div id="html_7f6dec0b54282199a16a6d9cbc4b148c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كوادر الشام للمقاولات</b><br> الرقم الموحد: 7014107556<br> السجل التجاري: 2051055684<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.2895726416537,50.1966007297619" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1480389d9a2650b333add42dbf21a1d3.setContent(html_7f6dec0b54282199a16a6d9cbc4b148c);
marker_a395659f98adffc6d75706dcceaf57a9.bindPopup(popup_1480389d9a2650b333add42dbf21a1d3)
;
marker_a395659f98adffc6d75706dcceaf57a9.setIcon(icon_873d01212ebfa1497ad23a0a428a3da7);
var marker_7b337b5fd31e7308b6e75583eea222de = L.marker(
[26.2906535420245, 50.1963950410008],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_e99354800e1e2ce25488e7d89a760d17 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3125d27dfa34c3043e31a23e817f846c = L.popup({
"maxWidth": 320,
});
var html_a4c5fa03eeb4e43969f79ffdb9732b38 = $(`<div id="html_a4c5fa03eeb4e43969f79ffdb9732b38" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة وادي الاحمر التجارية شخص واحد</b><br> الرقم الموحد: 7033205928<br> السجل التجاري: 2051246679<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.2906535420245,50.1963950410008" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3125d27dfa34c3043e31a23e817f846c.setContent(html_a4c5fa03eeb4e43969f79ffdb9732b38);
marker_7b337b5fd31e7308b6e75583eea222de.bindPopup(popup_3125d27dfa34c3043e31a23e817f846c)
;
marker_7b337b5fd31e7308b6e75583eea222de.setIcon(icon_e99354800e1e2ce25488e7d89a760d17);
var marker_9a7083e363b795292d010564e1dd5485 = L.marker(
[26.293001835562503, 50.1991047982727],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_e9c5979471f350bde3e24947afd5536e = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3bdd3f3c1241941348dceea3f346745a = L.popup({
"maxWidth": 320,
});
var html_1c5709a25b75e89a9338d5caa9a5047e = $(`<div id="html_1c5709a25b75e89a9338d5caa9a5047e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة شنيانغ جيانغسو نيوماتيريالز</b><br> الرقم الموحد: 7015438083<br> السجل التجاري: 2051226581<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.2929418355625,50.1991047982727" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3bdd3f3c1241941348dceea3f346745a.setContent(html_1c5709a25b75e89a9338d5caa9a5047e);
marker_9a7083e363b795292d010564e1dd5485.bindPopup(popup_3bdd3f3c1241941348dceea3f346745a)
;
marker_9a7083e363b795292d010564e1dd5485.setIcon(icon_e9c5979471f350bde3e24947afd5536e);
var marker_d4244689df1704401882cc5f0693a40a = L.marker(
[26.2928818355625, 50.1991047982727],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_38b98042440b71746a84905c51e6034d = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_766162d37aef1a3c6ee9dc9f5e1eb948 = L.popup({
"maxWidth": 320,
});
var html_d80a0bc2ba808ff5d044973e919e7696 = $(`<div id="html_d80a0bc2ba808ff5d044973e919e7696" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فجر الندى التجارية شركة شخص واحد</b><br> الرقم الموحد: 7001750871<br> السجل التجاري: 2051049589<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.2929418355625,50.1991047982727" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_766162d37aef1a3c6ee9dc9f5e1eb948.setContent(html_d80a0bc2ba808ff5d044973e919e7696);
marker_d4244689df1704401882cc5f0693a40a.bindPopup(popup_766162d37aef1a3c6ee9dc9f5e1eb948)
;
marker_d4244689df1704401882cc5f0693a40a.setIcon(icon_38b98042440b71746a84905c51e6034d);
var marker_d98560f0ce21780cc7b7997199faea40 = L.marker(
[26.2929418355626, 50.1991047982728],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_f8fd032969fabd918ec1acd58b33692d = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7037382ff44167da75bc0c7633a40db1 = L.popup({
"maxWidth": 320,
});
var html_cdb6d83a3b896744921446cc443d59d9 = $(`<div id="html_cdb6d83a3b896744921446cc443d59d9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اكس بي المتميزة للتشغيل والصيانة</b><br> الرقم الموحد: 7029588790<br> السجل التجاري: 2051242091<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.2929418355626,50.1991047982728" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7037382ff44167da75bc0c7633a40db1.setContent(html_cdb6d83a3b896744921446cc443d59d9);
marker_d98560f0ce21780cc7b7997199faea40.bindPopup(popup_7037382ff44167da75bc0c7633a40db1)
;
marker_d98560f0ce21780cc7b7997199faea40.setIcon(icon_f8fd032969fabd918ec1acd58b33692d);
var marker_3cac170aaff49bfd80e3f01f06fdc5e8 = L.marker(
[26.29421823180668, 50.19937122070363],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_1bd00b7b2443f8f97dbbc2a833cee058 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_509c1f3807a8eb36baccfc1077461218 = L.popup({
"maxWidth": 320,
});
var html_a71d811a9ca58e93bfc9132064c8531f = $(`<div id="html_a71d811a9ca58e93bfc9132064c8531f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اتش أس بي كونتركتنغ المحدودة</b><br> الرقم الموحد: 7031925360<br> السجل التجاري: 2050164669<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.29421823180668,50.19937122070363" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_509c1f3807a8eb36baccfc1077461218.setContent(html_a71d811a9ca58e93bfc9132064c8531f);
marker_3cac170aaff49bfd80e3f01f06fdc5e8.bindPopup(popup_509c1f3807a8eb36baccfc1077461218)
;
marker_3cac170aaff49bfd80e3f01f06fdc5e8.setIcon(icon_1bd00b7b2443f8f97dbbc2a833cee058);
var marker_2ddd284f65f75b4f1f241a2e8f6c9f5f = L.marker(
[26.29988759, 50.19848223],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_e06df7f745fe8b639aad641f1e1c36a9 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a56afb9ad59c4b6da743b0299b1c2e26 = L.popup({
"maxWidth": 320,
});
var html_9e6787e0ce4d3540c3a559180b389197 = $(`<div id="html_9e6787e0ce4d3540c3a559180b389197" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة لذة وقت الشاي لتقديم الوجبات</b><br> الرقم الموحد: 7013016121<br> السجل التجاري: 2051056597<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.29988759,50.19848223" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a56afb9ad59c4b6da743b0299b1c2e26.setContent(html_9e6787e0ce4d3540c3a559180b389197);
marker_2ddd284f65f75b4f1f241a2e8f6c9f5f.bindPopup(popup_a56afb9ad59c4b6da743b0299b1c2e26)
;
marker_2ddd284f65f75b4f1f241a2e8f6c9f5f.setIcon(icon_e06df7f745fe8b639aad641f1e1c36a9);
var marker_560cf121f30e579a9a1efbd248e94cae = L.marker(
[26.30055714, 50.19285409],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_e9bc3309ffe7dad5fa763229b944e0d1 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c56c76a9b9b6febb9842f4d474e01b55 = L.popup({
"maxWidth": 320,
});
var html_d72d77638cb6d395869d290210495a1d = $(`<div id="html_d72d77638cb6d395869d290210495a1d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الوسطاء السعوديون لوساطة التأمين</b><br> الرقم الموحد: 7000698063<br> السجل التجاري: 2051009154<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.30055714,50.19285409" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c56c76a9b9b6febb9842f4d474e01b55.setContent(html_d72d77638cb6d395869d290210495a1d);
marker_560cf121f30e579a9a1efbd248e94cae.bindPopup(popup_c56c76a9b9b6febb9842f4d474e01b55)
;
marker_560cf121f30e579a9a1efbd248e94cae.setIcon(icon_e9bc3309ffe7dad5fa763229b944e0d1);
var marker_4359ff0c2612466485ef4254f1f0cbe6 = L.marker(
[26.300844181381, 50.2007349988185],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_a2ea17511e3d1e041bc258c77a90e76e = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_99cdea09ee8d17202ddf229a4e1fc6a1 = L.popup({
"maxWidth": 320,
});
var html_bf0253613d6fbb9d2df3fbe84d5b35d8 = $(`<div id="html_bf0253613d6fbb9d2df3fbe84d5b35d8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تايدواتر الرشيد المحدودة</b><br> الرقم الموحد: 7001616544<br> السجل التجاري: 2051042042<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.300844181381,50.2007349988185" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_99cdea09ee8d17202ddf229a4e1fc6a1.setContent(html_bf0253613d6fbb9d2df3fbe84d5b35d8);
marker_4359ff0c2612466485ef4254f1f0cbe6.bindPopup(popup_99cdea09ee8d17202ddf229a4e1fc6a1)
;
marker_4359ff0c2612466485ef4254f1f0cbe6.setIcon(icon_a2ea17511e3d1e041bc258c77a90e76e);
var marker_79fe2cddb9351dcf89ed0ca3c0eb5ee2 = L.marker(
[26.30085051, 50.20080116],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_da3f8b614774e6bc0ac0d97e5319c2fe = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d01782bef47420531fb280f6f5eb6487 = L.popup({
"maxWidth": 320,
});
var html_0ff192e4e53b990182032a541e8c79fe = $(`<div id="html_0ff192e4e53b990182032a541e8c79fe" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع الشركة العاشرة للبناء المحدودة</b><br> الرقم الموحد: 7035007454<br> السجل التجاري: 2051247007<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.30085051,50.20080116" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d01782bef47420531fb280f6f5eb6487.setContent(html_0ff192e4e53b990182032a541e8c79fe);
marker_79fe2cddb9351dcf89ed0ca3c0eb5ee2.bindPopup(popup_d01782bef47420531fb280f6f5eb6487)
;
marker_79fe2cddb9351dcf89ed0ca3c0eb5ee2.setIcon(icon_da3f8b614774e6bc0ac0d97e5319c2fe);
var marker_65925c84e4a391a049041d2551612b63 = L.marker(
[26.30090738, 50.20097689],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_ca51d19044c7ca338f79587021784597 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_844f82b6d3694a32ca97fb3449553ccf = L.popup({
"maxWidth": 320,
});
var html_e8e8fc5578e2de3f0089560479ced3d4 = $(`<div id="html_e8e8fc5578e2de3f0089560479ced3d4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الجبيل فارما المحدودة</b><br> الرقم الموحد: 7001645543<br> السجل التجاري: 2051046490<br> المنطقة: الخبر<br> الحارة: العقربية<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.30090738,50.20097689" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_844f82b6d3694a32ca97fb3449553ccf.setContent(html_e8e8fc5578e2de3f0089560479ced3d4);
marker_65925c84e4a391a049041d2551612b63.bindPopup(popup_844f82b6d3694a32ca97fb3449553ccf)
;
marker_65925c84e4a391a049041d2551612b63.setIcon(icon_ca51d19044c7ca338f79587021784597);
var marker_7473bb962b4698899ac9f1afaf9364e9 = L.marker(
[26.3248718316103, 50.1942504680467],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_a69a0321844747bba0631a5a43646265 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_84000c3e2584d4b61e30c26c9452f8f6 = L.popup({
"maxWidth": 320,
});
var html_830d0bdef330c0c4f57a6dd021e3a7de = $(`<div id="html_830d0bdef330c0c4f57a6dd021e3a7de" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الأنابيب الوطنية المحدودة</b><br> الرقم الموحد: 7000674916<br> السجل التجاري: 2051003936<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.3248718316103,50.1942504680467" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_84000c3e2584d4b61e30c26c9452f8f6.setContent(html_830d0bdef330c0c4f57a6dd021e3a7de);
marker_7473bb962b4698899ac9f1afaf9364e9.bindPopup(popup_84000c3e2584d4b61e30c26c9452f8f6)
;
marker_7473bb962b4698899ac9f1afaf9364e9.setIcon(icon_a69a0321844747bba0631a5a43646265);
var marker_3ed47bca0457e1dc7ba7a1b077bea56f = L.marker(
[26.325563861783, 50.2025817461308],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_38be2a3813f7201467bd8aa624cccde3 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_836b8fef8bcebd4a21461e86431ad1d2 = L.popup({
"maxWidth": 320,
});
var html_4e77ae36aa9fc0b06ded4caf8d8abcee = $(`<div id="html_4e77ae36aa9fc0b06ded4caf8d8abcee" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة لمنالكو العربية السعودية المحدودة</b><br> الرقم الموحد: 7000052790<br> السجل التجاري: 2051003411<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.325563861783,50.2025817461308" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_836b8fef8bcebd4a21461e86431ad1d2.setContent(html_4e77ae36aa9fc0b06ded4caf8d8abcee);
marker_3ed47bca0457e1dc7ba7a1b077bea56f.bindPopup(popup_836b8fef8bcebd4a21461e86431ad1d2)
;
marker_3ed47bca0457e1dc7ba7a1b077bea56f.setIcon(icon_38be2a3813f7201467bd8aa624cccde3);
var marker_07448e0755c9eff39ac7d9f45bbad1f5 = L.marker(
[26.3274298638008, 50.2032111270118],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_a1fb5d4e1e5cf8cd06b7ccbd8e5124f8 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8c8a5470a67c8c480b00c114eca09851 = L.popup({
"maxWidth": 320,
});
var html_1711d6076562a59656fa798bc21db8a8 = $(`<div id="html_1711d6076562a59656fa798bc21db8a8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة العربية للمنتجات الورقية</b><br> الرقم الموحد: 7000859053<br> السجل التجاري: 2051009797<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.3274298638008,50.2032111270118" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8c8a5470a67c8c480b00c114eca09851.setContent(html_1711d6076562a59656fa798bc21db8a8);
marker_07448e0755c9eff39ac7d9f45bbad1f5.bindPopup(popup_8c8a5470a67c8c480b00c114eca09851)
;
marker_07448e0755c9eff39ac7d9f45bbad1f5.setIcon(icon_a1fb5d4e1e5cf8cd06b7ccbd8e5124f8);
var marker_f9e34744b1507615423569bbfe58d7ba = L.marker(
[26.3317129445073, 50.195787147747],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_3d5218a4f7a992bf21c2e0d75a1cfcb8 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c7265ccbfb95a9628e7594064715237b = L.popup({
"maxWidth": 320,
});
var html_aa04944b5343f375288a3ca7dd2597cb = $(`<div id="html_aa04944b5343f375288a3ca7dd2597cb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عماد المنهي للمقاولات</b><br> الرقم الموحد: 7001355903<br> السجل التجاري: 2051014970<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.3317129445073,50.195787147747" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c7265ccbfb95a9628e7594064715237b.setContent(html_aa04944b5343f375288a3ca7dd2597cb);
marker_f9e34744b1507615423569bbfe58d7ba.bindPopup(popup_c7265ccbfb95a9628e7594064715237b)
;
marker_f9e34744b1507615423569bbfe58d7ba.setIcon(icon_3d5218a4f7a992bf21c2e0d75a1cfcb8);
var marker_07871762518cedf9de3451a8b63439cd = L.marker(
[26.33367073, 50.19122999],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_882d464565a753c39977083d0a76bc8e = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ddd579eb90e68ad0eede7bd92fbfc28b = L.popup({
"maxWidth": 320,
});
var html_cede7ad45f2eddb43c63bf6932618f55 = $(`<div id="html_cede7ad45f2eddb43c63bf6932618f55" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كوانتام لحلول الطاقة السعودية</b><br> الرقم الموحد: 7016333242<br> السجل التجاري: 2050130864<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.33367073,50.19122999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ddd579eb90e68ad0eede7bd92fbfc28b.setContent(html_cede7ad45f2eddb43c63bf6932618f55);
marker_07871762518cedf9de3451a8b63439cd.bindPopup(popup_ddd579eb90e68ad0eede7bd92fbfc28b)
;
marker_07871762518cedf9de3451a8b63439cd.setIcon(icon_882d464565a753c39977083d0a76bc8e);
var marker_9f54c8e9d4c917970201d4fab4f6b282 = L.marker(
[26.3340225213464, 50.190822470424],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_53cac81616284c006fbf9b645b0c6529 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2cfc86b8e981f6bc10bd5d6f8abb4ea3 = L.popup({
"maxWidth": 320,
});
var html_7e71ecec8a6cb2208d5e077f77733ab2 = $(`<div id="html_7e71ecec8a6cb2208d5e077f77733ab2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سينوبك انجينيرنج قروب السعودية</b><br> الرقم الموحد: 7001552665<br> السجل التجاري: 2051037105<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.3340225213464,50.190822470424" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2cfc86b8e981f6bc10bd5d6f8abb4ea3.setContent(html_7e71ecec8a6cb2208d5e077f77733ab2);
marker_9f54c8e9d4c917970201d4fab4f6b282.bindPopup(popup_2cfc86b8e981f6bc10bd5d6f8abb4ea3)
;
marker_9f54c8e9d4c917970201d4fab4f6b282.setIcon(icon_53cac81616284c006fbf9b645b0c6529);
var marker_046a6431dacfc2ca103bd821938d73c3 = L.marker(
[26.33405955, 50.19826503],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_b200a64cb8cc7f008dac8d2b1845c1c5 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9cf990cbcd38704ea2cf3ae65ad3c781 = L.popup({
"maxWidth": 320,
});
var html_930aba6762ada9a1b29f36206240e937 = $(`<div id="html_930aba6762ada9a1b29f36206240e937" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مركز شركة الأهداف اس ام تي سي للتدريب</b><br> الرقم الموحد: 7001586630<br> السجل التجاري: 2051039671<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.33405955,50.19826503" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9cf990cbcd38704ea2cf3ae65ad3c781.setContent(html_930aba6762ada9a1b29f36206240e937);
marker_046a6431dacfc2ca103bd821938d73c3.bindPopup(popup_9cf990cbcd38704ea2cf3ae65ad3c781)
;
marker_046a6431dacfc2ca103bd821938d73c3.setIcon(icon_b200a64cb8cc7f008dac8d2b1845c1c5);
var marker_d5d8dd04bc6e8218101b0030218d9d8a = L.marker(
[26.33418313, 50.18966816],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_e8269d39bc93634cf8acf49d73efcc43 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8f801e88110a91db9ddcb450ca56462a = L.popup({
"maxWidth": 320,
});
var html_17cfc40bd31db3d6012723d4f83fed98 = $(`<div id="html_17cfc40bd31db3d6012723d4f83fed98" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة العربية للجيوفيزياء والمساحة</b><br> الرقم الموحد: 7001346316<br> السجل التجاري: 2051001444<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.33418313,50.18966816" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8f801e88110a91db9ddcb450ca56462a.setContent(html_17cfc40bd31db3d6012723d4f83fed98);
marker_d5d8dd04bc6e8218101b0030218d9d8a.bindPopup(popup_8f801e88110a91db9ddcb450ca56462a)
;
marker_d5d8dd04bc6e8218101b0030218d9d8a.setIcon(icon_e8269d39bc93634cf8acf49d73efcc43);
var marker_454587762b85d2eec3f7f24f645d804f = L.marker(
[26.33424382672678, 50.18914163720456],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_95d7e006aec77e6de4f26581c00f9045 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_81a180970fce28efe47ebd6e5e8382eb = L.popup({
"maxWidth": 320,
});
var html_dc193fb6be4c5a9ba90a60f8e1e21b2c = $(`<div id="html_dc193fb6be4c5a9ba90a60f8e1e21b2c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة سينوبك للرفع الثقيل و النقل</b><br> الرقم الموحد: 7032319134<br> السجل التجاري: 2051245280<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.33424382672678,50.18914163720456" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_81a180970fce28efe47ebd6e5e8382eb.setContent(html_dc193fb6be4c5a9ba90a60f8e1e21b2c);
marker_454587762b85d2eec3f7f24f645d804f.bindPopup(popup_81a180970fce28efe47ebd6e5e8382eb)
;
marker_454587762b85d2eec3f7f24f645d804f.setIcon(icon_95d7e006aec77e6de4f26581c00f9045);
var marker_5156efe66b2a46b1bcbb019575c13d8d = L.marker(
[26.33443569, 50.18982798],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_f513715297ddb51ebefd9d2a7b6f67b0 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_369bf5f9b7f09f53c8f962f43f481ed9 = L.popup({
"maxWidth": 320,
});
var html_c49c926337464ba03c7b0517dfb0957a = $(`<div id="html_c49c926337464ba03c7b0517dfb0957a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الحفر العربية</b><br> الرقم الموحد: 7000873856<br> السجل التجاري: 2051026089<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.33443569,50.18982798" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_369bf5f9b7f09f53c8f962f43f481ed9.setContent(html_c49c926337464ba03c7b0517dfb0957a);
marker_5156efe66b2a46b1bcbb019575c13d8d.bindPopup(popup_369bf5f9b7f09f53c8f962f43f481ed9)
;
marker_5156efe66b2a46b1bcbb019575c13d8d.setIcon(icon_f513715297ddb51ebefd9d2a7b6f67b0);
var marker_c7bea97a3a0bea2fd441d221eb4bf870 = L.marker(
[26.33454899, 50.19085796],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_87530d0794679238c6ef961357a0bc45 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cfdca02e3a1d9011bb43a42f83a689c5 = L.popup({
"maxWidth": 320,
});
var html_84f349e05de30dbf12f455f197dc7a1a = $(`<div id="html_84f349e05de30dbf12f455f197dc7a1a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سينوبك نانجينغ انجنيريج</b><br> الرقم الموحد: 7001479588<br> السجل التجاري: 2051031892<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.33454899,50.19085796" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cfdca02e3a1d9011bb43a42f83a689c5.setContent(html_84f349e05de30dbf12f455f197dc7a1a);
marker_c7bea97a3a0bea2fd441d221eb4bf870.bindPopup(popup_cfdca02e3a1d9011bb43a42f83a689c5)
;
marker_c7bea97a3a0bea2fd441d221eb4bf870.setIcon(icon_87530d0794679238c6ef961357a0bc45);
var marker_2aeb4bcc3a5c877bfabd12a2bc7e12de = L.marker(
[26.33457432, 50.19098365],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_2d1b01ff57f40b93a5efac2916e24147 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5936863b5f2343bb5153600195acccf7 = L.popup({
"maxWidth": 320,
});
var html_8f2eb577c1206d9389228fe5ab523ce6 = $(`<div id="html_8f2eb577c1206d9389228fe5ab523ce6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع الشركة الهندسية سينوبك</b><br> الرقم الموحد: 7035035463<br> السجل التجاري: 2051247092<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.33457432,50.19098365" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5936863b5f2343bb5153600195acccf7.setContent(html_8f2eb577c1206d9389228fe5ab523ce6);
marker_2aeb4bcc3a5c877bfabd12a2bc7e12de.bindPopup(popup_5936863b5f2343bb5153600195acccf7)
;
marker_2aeb4bcc3a5c877bfabd12a2bc7e12de.setIcon(icon_2d1b01ff57f40b93a5efac2916e24147);
var marker_61e4a4eb9060b62452cce73c10929ef0 = L.marker(
[26.33470573, 50.19383199],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_b6ac3fe4d45d751a1988cbb8ce4792ac = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b8b769e958d01dd846d94a47925a0da7 = L.popup({
"maxWidth": 320,
});
var html_fe76476e061397b77ab194930bf95ae1 = $(`<div id="html_fe76476e061397b77ab194930bf95ae1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اودفجيل العربية لخدمات الحفر</b><br> الرقم الموحد: 7001704191<br> السجل التجاري: 2051047794<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.33470573,50.19383199" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b8b769e958d01dd846d94a47925a0da7.setContent(html_fe76476e061397b77ab194930bf95ae1);
marker_61e4a4eb9060b62452cce73c10929ef0.bindPopup(popup_b8b769e958d01dd846d94a47925a0da7)
;
marker_61e4a4eb9060b62452cce73c10929ef0.setIcon(icon_b6ac3fe4d45d751a1988cbb8ce4792ac);
var marker_977628d5bcd16a4731f23893a3e2fd55 = L.marker(
[26.33501061, 50.19460732],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_c893b361e46f1bb14374088771506526 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_924e9c0c44462893866ddb667ae05823 = L.popup({
"maxWidth": 320,
});
var html_d05828458699a175bb5ad0c8308f1866 = $(`<div id="html_d05828458699a175bb5ad0c8308f1866" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كومباس العربية المحدودة</b><br> الرقم الموحد: 7001755805<br> السجل التجاري: 2051051772<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.33501061,50.19460732" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_924e9c0c44462893866ddb667ae05823.setContent(html_d05828458699a175bb5ad0c8308f1866);
marker_977628d5bcd16a4731f23893a3e2fd55.bindPopup(popup_924e9c0c44462893866ddb667ae05823)
;
marker_977628d5bcd16a4731f23893a3e2fd55.setIcon(icon_c893b361e46f1bb14374088771506526);
var marker_c6624d38a2ad5ebcf6792390f4e9922d = L.marker(
[26.33543368, 50.19520814],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_c5eb4f960ef48980d7f74196e7b81e01 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_651a422b99d3f8c720974b03003db8fb = L.popup({
"maxWidth": 320,
});
var html_90f36d932b4d245af052614287820228 = $(`<div id="html_90f36d932b4d245af052614287820228" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الرشيد للأعمال الإنشائية</b><br> الرقم الموحد: 7001366009<br> السجل التجاري: 2051018887<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.33543368,50.19520814" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_651a422b99d3f8c720974b03003db8fb.setContent(html_90f36d932b4d245af052614287820228);
marker_c6624d38a2ad5ebcf6792390f4e9922d.bindPopup(popup_651a422b99d3f8c720974b03003db8fb)
;
marker_c6624d38a2ad5ebcf6792390f4e9922d.setIcon(icon_c5eb4f960ef48980d7f74196e7b81e01);
var marker_6216127b262f5b2778eb9fe7ea13bcc8 = L.marker(
[26.3354427, 50.19509275],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_7f691da5b66d1bffe21838aaf5967c34 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4aecc33def5c6fd629352372e844309e = L.popup({
"maxWidth": 320,
});
var html_d2e75189c8e143fcd87eb4f84a2b07c5 = $(`<div id="html_d2e75189c8e143fcd87eb4f84a2b07c5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>جاك رايك الرشيد للمقاولات والخدمات</b><br> الرقم الموحد: 7001730758<br> السجل التجاري: 2051049713<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.3354427,50.19509275" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4aecc33def5c6fd629352372e844309e.setContent(html_d2e75189c8e143fcd87eb4f84a2b07c5);
marker_6216127b262f5b2778eb9fe7ea13bcc8.bindPopup(popup_4aecc33def5c6fd629352372e844309e)
;
marker_6216127b262f5b2778eb9fe7ea13bcc8.setIcon(icon_7f691da5b66d1bffe21838aaf5967c34);
var marker_2516d189412538349928bd030ea5d1bb = L.marker(
[26.30297275, 50.20931065],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_c1a894714e8eaccbb0810ebf83dea032 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bcecfd15e20d152bf1a6a6fc6bc7d80e = L.popup({
"maxWidth": 320,
});
var html_9a613ded791fe1112c4d1bc189086db9 = $(`<div id="html_9a613ded791fe1112c4d1bc189086db9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة شيلف دريلينج ايجيبت ليمتد منطقة</b><br> الرقم الموحد: 7001788269<br> السجل التجاري: 2051054333<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.30297275,50.20931065" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bcecfd15e20d152bf1a6a6fc6bc7d80e.setContent(html_9a613ded791fe1112c4d1bc189086db9);
marker_2516d189412538349928bd030ea5d1bb.bindPopup(popup_bcecfd15e20d152bf1a6a6fc6bc7d80e)
;
marker_2516d189412538349928bd030ea5d1bb.setIcon(icon_c1a894714e8eaccbb0810ebf83dea032);
var marker_af69f7e22dbbf696f97d78b9e9bcf174 = L.marker(
[26.3030782702628, 50.2091216451257],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_bddac8bfe292b58fa2b115753ff396cf = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_366455274cd0beecc3cb3195bdb1ab5c = L.popup({
"maxWidth": 320,
});
var html_9137b9a4c4fd2976d6ba908d2ed3d31e = $(`<div id="html_9137b9a4c4fd2976d6ba908d2ed3d31e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فينشر كابيتال الاستثمارية السعودية شركة مساهمة سعودية مقفلة</b><br> الرقم الموحد: 7003781270<br> السجل التجاري: 2051064716<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.3030782702628,50.2091216451257" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_366455274cd0beecc3cb3195bdb1ab5c.setContent(html_9137b9a4c4fd2976d6ba908d2ed3d31e);
marker_af69f7e22dbbf696f97d78b9e9bcf174.bindPopup(popup_366455274cd0beecc3cb3195bdb1ab5c)
;
marker_af69f7e22dbbf696f97d78b9e9bcf174.setIcon(icon_bddac8bfe292b58fa2b115753ff396cf);
var marker_47fcd88d49cd9ab3296d85ec50f5a5c1 = L.marker(
[26.3031495593453, 50.2081798202031],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_efaf9aaad41ffba1f216361b2e203fe2 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5ee1cd55ed6264feb886e69b76e90f7b = L.popup({
"maxWidth": 320,
});
var html_a967cd315197b29d3c6fa791f6a664cf = $(`<div id="html_a967cd315197b29d3c6fa791f6a664cf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بيتك العقارية</b><br> الرقم الموحد: 7001562128<br> السجل التجاري: 2051035430<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.3031495593453,50.2081798202031" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5ee1cd55ed6264feb886e69b76e90f7b.setContent(html_a967cd315197b29d3c6fa791f6a664cf);
marker_47fcd88d49cd9ab3296d85ec50f5a5c1.bindPopup(popup_5ee1cd55ed6264feb886e69b76e90f7b)
;
marker_47fcd88d49cd9ab3296d85ec50f5a5c1.setIcon(icon_efaf9aaad41ffba1f216361b2e203fe2);
var marker_e51a658335be6298585fbee05e23d685 = L.marker(
[26.30318702, 50.20838374],
{
}
).addTo(map_a4f88f48bf23087b8f9e22902cc97786);
var icon_6ea3ec785b554580f9bd94506de6fab0 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8b11ba7578f627414f2f32efeafb3de7 = L.popup({
"maxWidth": 320,
});
var html_bbabaec45333cbab8b3dda9573f335a2 = $(`<div id="html_bbabaec45333cbab8b3dda9573f335a2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أزتك العربية السعودية للمقاولات</b><br> الرقم الموحد: 7001763676<br> السجل التجاري: 2051042949<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> ابرار تركي النجار<br> <a href="https://www.google.com/maps?q=26.30318702,50.20838374" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8b11ba7578f627414f2f32efeafb3de7.setContent(html_bbabaec45333cbab8b3dda9573f335a2);
marker_e51a658335be6298585fbee05e23d685.bindPopup(popup_8b11ba7578f627414f2f32efeafb3de7)
;
marker_e51a658335be6298585fbee05e23d685.setIcon(icon_6ea3ec785b554580f9bd94506de6fab0);
</script>
</html> |