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 | <!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_c2b262201a021f20ce793d68646a7453 {
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_18" onclick="
var panel = document.getElementById('stats_18');
var btn = document.getElementById('btn_stats_18');
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_18" 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;
">منال احمد القحطاني - 18</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 64</div>
<div><b>عدد الحارات:</b> 3</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• مدينة العمال: 25</div><div>• الحزام الذهبي: 20</div><div>• الحزام الأخضر: 19</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_18_منال_احمد_القحطاني.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:black;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>مدينة العمال</span>
</div>
<span style="color:#555;">(25)</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:cadetblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الحزام الذهبي</span>
</div>
<span style="color:#555;">(20)</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;">(19)</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_c2b262201a021f20ce793d68646a7453" ></div>
</body>
<script>
var map_c2b262201a021f20ce793d68646a7453 = L.map(
"map_c2b262201a021f20ce793d68646a7453",
{
center: [26.303495778874385, 50.20625251418313],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_328bc631c86bb78dabdcbe53b02618c9 = 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_328bc631c86bb78dabdcbe53b02618c9.addTo(map_c2b262201a021f20ce793d68646a7453);
var tile_layer_0cc4fdf3fa18644b306536c328ad680e = 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_0cc4fdf3fa18644b306536c328ad680e.addTo(map_c2b262201a021f20ce793d68646a7453);
var tile_layer_a7720dd3ed00aa075da652d185d1166c = 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_a7720dd3ed00aa075da652d185d1166c.addTo(map_c2b262201a021f20ce793d68646a7453);
var locate_control_aa55272c8c3ce9d510861967a0601d5b = L.control.locate(
{}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var marker_57d9843bd8bfd4ab70d5ecba5e54465b = L.marker(
[26.30325777, 50.20917174],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_5c15d2198393c8dd29487beb7d7c5761 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e6fe9b6d923695eb8db24cb045a002ed = L.popup({
"maxWidth": 320,
});
var html_371a9fef990baac96a52e30bc74f03bb = $(`<div id="html_371a9fef990baac96a52e30bc74f03bb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جيريه جيسون للطاقة</b><br> الرقم الموحد: 7004548926<br> السجل التجاري: 2051222225<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.30325777,50.20917174" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e6fe9b6d923695eb8db24cb045a002ed.setContent(html_371a9fef990baac96a52e30bc74f03bb);
marker_57d9843bd8bfd4ab70d5ecba5e54465b.bindPopup(popup_e6fe9b6d923695eb8db24cb045a002ed)
;
marker_57d9843bd8bfd4ab70d5ecba5e54465b.setIcon(icon_5c15d2198393c8dd29487beb7d7c5761);
var marker_ebef27e9473d13314ea9eb6a9f53556f = L.marker(
[26.3033177744726, 50.2091717442924],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_d19d0d7aeb3d5490eb95ebe08d4da861 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e8764cbda01a5877b50e78b0e9650b39 = L.popup({
"maxWidth": 320,
});
var html_6fa4b72c81ef27331539cd2caf1c458c = $(`<div id="html_6fa4b72c81ef27331539cd2caf1c458c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نيوبارك العربية السعودية المحدودة</b><br> الرقم الموحد: 7015907657<br> السجل التجاري: 2051227553<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3032577744726,50.2091717442924" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e8764cbda01a5877b50e78b0e9650b39.setContent(html_6fa4b72c81ef27331539cd2caf1c458c);
marker_ebef27e9473d13314ea9eb6a9f53556f.bindPopup(popup_e8764cbda01a5877b50e78b0e9650b39)
;
marker_ebef27e9473d13314ea9eb6a9f53556f.setIcon(icon_d19d0d7aeb3d5490eb95ebe08d4da861);
var marker_724a89289032152c98bd5ed46db4e85d = L.marker(
[26.303197774472597, 50.2091717442924],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_71a654cd7a9fea39508ff75023037936 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_340db8d9a5005537db182a1439fb8595 = L.popup({
"maxWidth": 320,
});
var html_3a9822ba84963352b9b11dc6d153acde = $(`<div id="html_3a9822ba84963352b9b11dc6d153acde" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة الهندسية للصناعات البترولية</b><br> الرقم الموحد: 7001489124<br> السجل التجاري: 2051032123<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3032577744726,50.2091717442924" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_340db8d9a5005537db182a1439fb8595.setContent(html_3a9822ba84963352b9b11dc6d153acde);
marker_724a89289032152c98bd5ed46db4e85d.bindPopup(popup_340db8d9a5005537db182a1439fb8595)
;
marker_724a89289032152c98bd5ed46db4e85d.setIcon(icon_71a654cd7a9fea39508ff75023037936);
var marker_d23e547ec2d80d4567dc36c55333d4df = L.marker(
[26.30402733, 50.2033039],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_aaf0986bc8054d3c1e97a6e3f38e8639 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9aba8c71db7c26fda444c7b6a60b9311 = L.popup({
"maxWidth": 320,
});
var html_d106ab686c03043bbf55d5ab637babb8 = $(`<div id="html_d106ab686c03043bbf55d5ab637babb8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة فيشتنر مهندسون استشاريون</b><br> الرقم الموحد: 7000220330<br> السجل التجاري: 2051023736<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.30396733,50.2033039" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9aba8c71db7c26fda444c7b6a60b9311.setContent(html_d106ab686c03043bbf55d5ab637babb8);
marker_d23e547ec2d80d4567dc36c55333d4df.bindPopup(popup_9aba8c71db7c26fda444c7b6a60b9311)
;
marker_d23e547ec2d80d4567dc36c55333d4df.setIcon(icon_aaf0986bc8054d3c1e97a6e3f38e8639);
var marker_d1f2ee0f26c2835227238f0debeae757 = L.marker(
[26.303907329999998, 50.2033039],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_98dfe7f0af8ffbc64cf9dfc99cd7e6bf = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6aa482a022928c3067dcf02471d92df9 = L.popup({
"maxWidth": 320,
});
var html_d2dc19c2a3e44527e75cc7f420c47fe7 = $(`<div id="html_d2dc19c2a3e44527e75cc7f420c47fe7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ريسا الخليجية للسقالات المحدودة</b><br> الرقم الموحد: 7001645691<br> السجل التجاري: 2050070838<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.30396733,50.2033039" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6aa482a022928c3067dcf02471d92df9.setContent(html_d2dc19c2a3e44527e75cc7f420c47fe7);
marker_d1f2ee0f26c2835227238f0debeae757.bindPopup(popup_6aa482a022928c3067dcf02471d92df9)
;
marker_d1f2ee0f26c2835227238f0debeae757.setIcon(icon_98dfe7f0af8ffbc64cf9dfc99cd7e6bf);
var marker_ef30e448ab296e0748ac1c8ca9358a66 = L.marker(
[26.3040288070001, 50.203855307],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_496361347eb7680c5e8e3a60bb744411 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fc125d3e6ea33100b964928f863be71f = L.popup({
"maxWidth": 320,
});
var html_9fae82a190bb60a1514590a397d20736 = $(`<div id="html_9fae82a190bb60a1514590a397d20736" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>جوار الرافد للخدمات البحرية</b><br> الرقم الموحد: 7004567926<br> السجل التجاري: 2051222258<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3040288070001,50.203855307" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fc125d3e6ea33100b964928f863be71f.setContent(html_9fae82a190bb60a1514590a397d20736);
marker_ef30e448ab296e0748ac1c8ca9358a66.bindPopup(popup_fc125d3e6ea33100b964928f863be71f)
;
marker_ef30e448ab296e0748ac1c8ca9358a66.setIcon(icon_496361347eb7680c5e8e3a60bb744411);
var marker_92e17c7efc5d5a545227778ec5d67750 = L.marker(
[26.304346170471, 50.2092634526846],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_d83ca013f5d60a816c8a17b0293ed6c9 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_aac4e7c009adcea1d27b55ed87456c14 = L.popup({
"maxWidth": 320,
});
var html_381b0ab6882dcf38e4c90168b241e5ba = $(`<div id="html_381b0ab6882dcf38e4c90168b241e5ba" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة جون كوكريل هامون</b><br> الرقم الموحد: 7009033775<br> السجل التجاري: 2051059260<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.304286170471,50.2092634526846" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_aac4e7c009adcea1d27b55ed87456c14.setContent(html_381b0ab6882dcf38e4c90168b241e5ba);
marker_92e17c7efc5d5a545227778ec5d67750.bindPopup(popup_aac4e7c009adcea1d27b55ed87456c14)
;
marker_92e17c7efc5d5a545227778ec5d67750.setIcon(icon_d83ca013f5d60a816c8a17b0293ed6c9);
var marker_05da0b8a4c3b44e44daaed73039c5da4 = L.marker(
[26.304226170470997, 50.2092634526846],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_d0d548d47a13ea02fd53487399dd0d8d = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_af88ca0310a82e88ab9f845ae2e737c4 = L.popup({
"maxWidth": 320,
});
var html_7eb368b7884a3d160c26dbff6eefe761 = $(`<div id="html_7eb368b7884a3d160c26dbff6eefe761" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عجلات المتحدة للخدمات المساندة</b><br> الرقم الموحد: 7001782908<br> السجل التجاري: 2051053681<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.304286170471,50.2092634526846" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_af88ca0310a82e88ab9f845ae2e737c4.setContent(html_7eb368b7884a3d160c26dbff6eefe761);
marker_05da0b8a4c3b44e44daaed73039c5da4.bindPopup(popup_af88ca0310a82e88ab9f845ae2e737c4)
;
marker_05da0b8a4c3b44e44daaed73039c5da4.setIcon(icon_d0d548d47a13ea02fd53487399dd0d8d);
var marker_9ffd8038952c174189aa9aa8e6558cf3 = L.marker(
[26.30495419, 50.1967144],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_6dc88de26e2078967675adb15787012d = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5efed36c2e905609fd8af52acc51a638 = L.popup({
"maxWidth": 320,
});
var html_53111ba2f0842d60fb6a156cc7741b6a = $(`<div id="html_53111ba2f0842d60fb6a156cc7741b6a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عيادات شام لطب وتقويم الاسنان</b><br> الرقم الموحد: 7011462590<br> السجل التجاري: 2051040705<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.30495419,50.1967144" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5efed36c2e905609fd8af52acc51a638.setContent(html_53111ba2f0842d60fb6a156cc7741b6a);
marker_9ffd8038952c174189aa9aa8e6558cf3.bindPopup(popup_5efed36c2e905609fd8af52acc51a638)
;
marker_9ffd8038952c174189aa9aa8e6558cf3.setIcon(icon_6dc88de26e2078967675adb15787012d);
var marker_d7e90b84a3b0cb2837ad266e015a1978 = L.marker(
[26.30553213, 50.21011205],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_afb1e06a30ac024bd78ce62bb6adabae = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2f6c8b2f0ca8ceec8c3d596feb025e66 = L.popup({
"maxWidth": 320,
});
var html_4d1c3be67b602ef6d8f1674f9fa60a76 = $(`<div id="html_4d1c3be67b602ef6d8f1674f9fa60a76" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة خط الغرب المحدودة</b><br> الرقم الموحد: 7016119906<br> السجل التجاري: 2051228066<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.30553213,50.21011205" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2f6c8b2f0ca8ceec8c3d596feb025e66.setContent(html_4d1c3be67b602ef6d8f1674f9fa60a76);
marker_d7e90b84a3b0cb2837ad266e015a1978.bindPopup(popup_2f6c8b2f0ca8ceec8c3d596feb025e66)
;
marker_d7e90b84a3b0cb2837ad266e015a1978.setIcon(icon_afb1e06a30ac024bd78ce62bb6adabae);
var marker_e4bcb69b50c36bc6cd8a142c42fd2e6d = L.marker(
[26.308019908669102, 50.2095149450764],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_e86618525d1dac2d15dc67421ad32d61 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cbf6d6fed1950f00e013650fd5175bfb = L.popup({
"maxWidth": 320,
});
var html_97a37493d7d97f92a1dda50461ab4d47 = $(`<div id="html_97a37493d7d97f92a1dda50461ab4d47" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>كليفلاند كلينيك السعودية العربية</b><br> الرقم الموحد: 7009398442<br> السجل التجاري: 1010441416<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3079599086691,50.2095149450764" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cbf6d6fed1950f00e013650fd5175bfb.setContent(html_97a37493d7d97f92a1dda50461ab4d47);
marker_e4bcb69b50c36bc6cd8a142c42fd2e6d.bindPopup(popup_cbf6d6fed1950f00e013650fd5175bfb)
;
marker_e4bcb69b50c36bc6cd8a142c42fd2e6d.setIcon(icon_e86618525d1dac2d15dc67421ad32d61);
var marker_b36c98dd05cf6f052eee1707d34f8344 = L.marker(
[26.307929908669102, 50.20956690660063],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_327c01a2773e40c7ea3c5c60d2f8399e = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9deb70968322b1f60be1e7b50818eddf = L.popup({
"maxWidth": 320,
});
var html_36a4c75b06875877f04c002708a8dce9 = $(`<div id="html_36a4c75b06875877f04c002708a8dce9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة بليس اناند امريكا ال ال سي</b><br> الرقم الموحد: 7010457054<br> السجل التجاري: 2051063423<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3079599086691,50.2095149450764" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9deb70968322b1f60be1e7b50818eddf.setContent(html_36a4c75b06875877f04c002708a8dce9);
marker_b36c98dd05cf6f052eee1707d34f8344.bindPopup(popup_9deb70968322b1f60be1e7b50818eddf)
;
marker_b36c98dd05cf6f052eee1707d34f8344.setIcon(icon_327c01a2773e40c7ea3c5c60d2f8399e);
var marker_2cf5c5efecb07ba0a3ca2eada2adad39 = L.marker(
[26.307929908669102, 50.20946298355217],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_bab3cdc7c90b82e8ca1b5ae10907e63e = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ac47ed65de33cbf0d48454ec7cc9b728 = L.popup({
"maxWidth": 320,
});
var html_f6636d2041a4337fac9dab768bf43ff0 = $(`<div id="html_f6636d2041a4337fac9dab768bf43ff0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تيك ماهيندرا العربية المحدودة</b><br> الرقم الموحد: 7009375622<br> السجل التجاري: 2051061101<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3079599086691,50.2095149450764" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ac47ed65de33cbf0d48454ec7cc9b728.setContent(html_f6636d2041a4337fac9dab768bf43ff0);
marker_2cf5c5efecb07ba0a3ca2eada2adad39.bindPopup(popup_ac47ed65de33cbf0d48454ec7cc9b728)
;
marker_2cf5c5efecb07ba0a3ca2eada2adad39.setIcon(icon_bab3cdc7c90b82e8ca1b5ae10907e63e);
var marker_6545fc5fcf370bf26e8bc9426e6ecf8d = L.marker(
[26.30863088, 50.2096438],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_f7c478aa764f46ded24ec4f9548ef7b7 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b221c7fa2e5645a9bfabc605607da29b = L.popup({
"maxWidth": 320,
});
var html_e157079da24336d433173da9b699a6e7 = $(`<div id="html_e157079da24336d433173da9b699a6e7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة صب سي سفن السعودية المحدودة</b><br> الرقم الموحد: 7009219655<br> السجل التجاري: 2051060669<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.30863088,50.2096438" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b221c7fa2e5645a9bfabc605607da29b.setContent(html_e157079da24336d433173da9b699a6e7);
marker_6545fc5fcf370bf26e8bc9426e6ecf8d.bindPopup(popup_b221c7fa2e5645a9bfabc605607da29b)
;
marker_6545fc5fcf370bf26e8bc9426e6ecf8d.setIcon(icon_f7c478aa764f46ded24ec4f9548ef7b7);
var marker_5ad6e204189e824ce4f919879487891c = L.marker(
[26.30883028, 50.21050738],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_44caa6c8b425856273b830abaeb96d9a = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b16758afe9dd6a4c0c87439a35a783d5 = L.popup({
"maxWidth": 320,
});
var html_d4dae2204d25483256872715ca350e23 = $(`<div id="html_d4dae2204d25483256872715ca350e23" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مايتيل العربية السعودية للتشييد</b><br> الرقم الموحد: 7001683643<br> السجل التجاري: 2051046149<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.30883028,50.21050738" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b16758afe9dd6a4c0c87439a35a783d5.setContent(html_d4dae2204d25483256872715ca350e23);
marker_5ad6e204189e824ce4f919879487891c.bindPopup(popup_b16758afe9dd6a4c0c87439a35a783d5)
;
marker_5ad6e204189e824ce4f919879487891c.setIcon(icon_44caa6c8b425856273b830abaeb96d9a);
var marker_380c975594828908ecaf694ac52c357a = L.marker(
[26.30896331, 50.21028716],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_f02acf324073fc98367412fbade9ae60 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_88bb75a4b43bc09581fcbb2e24d0c244 = L.popup({
"maxWidth": 320,
});
var html_1aa2a8cd25a40a311d3d0c8e415ff591 = $(`<div id="html_1aa2a8cd25a40a311d3d0c8e415ff591" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تكنيمونت العربية المحدودة</b><br> الرقم الموحد: 7001383491<br> السجل التجاري: 2051060688<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.30896331,50.21028716" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_88bb75a4b43bc09581fcbb2e24d0c244.setContent(html_1aa2a8cd25a40a311d3d0c8e415ff591);
marker_380c975594828908ecaf694ac52c357a.bindPopup(popup_88bb75a4b43bc09581fcbb2e24d0c244)
;
marker_380c975594828908ecaf694ac52c357a.setIcon(icon_f02acf324073fc98367412fbade9ae60);
var marker_54ba2b77988facfe1a4b6c253989cc0a = L.marker(
[26.30904272834663, 50.2103075934631],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_0a70220c82073f58cb72567331cd0b67 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e530926c42b5f3b02fc93eec6dc4f499 = L.popup({
"maxWidth": 320,
});
var html_6c7a8ed96c340a7eb001c7859b984828 = $(`<div id="html_6c7a8ed96c340a7eb001c7859b984828" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة لؤلؤة فرح النسائية</b><br> الرقم الموحد: 7039225748<br> السجل التجاري: 2051255824<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.30904272834663,50.2103075934631" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e530926c42b5f3b02fc93eec6dc4f499.setContent(html_6c7a8ed96c340a7eb001c7859b984828);
marker_54ba2b77988facfe1a4b6c253989cc0a.bindPopup(popup_e530926c42b5f3b02fc93eec6dc4f499)
;
marker_54ba2b77988facfe1a4b6c253989cc0a.setIcon(icon_0a70220c82073f58cb72567331cd0b67);
var marker_744de8d68cea759239b2fb31c03f3973 = L.marker(
[26.30933872, 50.21033007],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_5cef4bc8077e5c68e3c5f8dbe05965fc = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2fc462c4cd6eb49f844cd78559c821ab = L.popup({
"maxWidth": 320,
});
var html_22f7376e16b39947f218a6d39bd43bd0 = $(`<div id="html_22f7376e16b39947f218a6d39bd43bd0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تهامة لتوليد الطاقة المحدودة</b><br> الرقم الموحد: 7001463574<br> السجل التجاري: 2051029359<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.30933872,50.21033007" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2fc462c4cd6eb49f844cd78559c821ab.setContent(html_22f7376e16b39947f218a6d39bd43bd0);
marker_744de8d68cea759239b2fb31c03f3973.bindPopup(popup_2fc462c4cd6eb49f844cd78559c821ab)
;
marker_744de8d68cea759239b2fb31c03f3973.setIcon(icon_5cef4bc8077e5c68e3c5f8dbe05965fc);
var marker_90e3249c9807aca71d9dfa59927ceede = L.marker(
[26.30960407, 50.20999401],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_124528b30950c92213a1f0b3ef40a168 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b7942d9717ba42398aec2413d2bd5928 = L.popup({
"maxWidth": 320,
});
var html_e8c1373913d720aef8fb3d78fae7e096 = $(`<div id="html_e8c1373913d720aef8fb3d78fae7e096" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة إنسكو العربية المحدودة</b><br> الرقم الموحد: 7001475628<br> السجل التجاري: 2051016287<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.30960407,50.20999401" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b7942d9717ba42398aec2413d2bd5928.setContent(html_e8c1373913d720aef8fb3d78fae7e096);
marker_90e3249c9807aca71d9dfa59927ceede.bindPopup(popup_b7942d9717ba42398aec2413d2bd5928)
;
marker_90e3249c9807aca71d9dfa59927ceede.setIcon(icon_124528b30950c92213a1f0b3ef40a168);
var marker_8ee1d608705b5b7d01ab2cb25d4bdd0c = L.marker(
[26.3120375168733, 50.2107162709736],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_193c1281a8dc7ab846a4c2c5387eacb8 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_94a1e58b7db2ab9d8c81df9b16e3e6a9 = L.popup({
"maxWidth": 320,
});
var html_8cda44ec168899c4edf1c52d7b1b9e6f = $(`<div id="html_8cda44ec168899c4edf1c52d7b1b9e6f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة العليان كمبرلي كلارك السعودية</b><br> الرقم الموحد: 7001850226<br> السجل التجاري: 2051056708<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3120375168733,50.2107162709736" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_94a1e58b7db2ab9d8c81df9b16e3e6a9.setContent(html_8cda44ec168899c4edf1c52d7b1b9e6f);
marker_8ee1d608705b5b7d01ab2cb25d4bdd0c.bindPopup(popup_94a1e58b7db2ab9d8c81df9b16e3e6a9)
;
marker_8ee1d608705b5b7d01ab2cb25d4bdd0c.setIcon(icon_193c1281a8dc7ab846a4c2c5387eacb8);
var marker_b33c511025c56d4a96ffeb205eb11f86 = L.marker(
[26.31280729, 50.21080475],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_ec2381a6618d1a878a2b1a41cb766e3c = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5b472f5f6980714ed8aaffc8879f9251 = L.popup({
"maxWidth": 320,
});
var html_157cb0cef1bf06c05328150ab13ef059 = $(`<div id="html_157cb0cef1bf06c05328150ab13ef059" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة وقت الفراغ للسفر و السياحة</b><br> الرقم الموحد: 7034155593<br> السجل التجاري: 2050172232<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.31280729,50.21080475" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5b472f5f6980714ed8aaffc8879f9251.setContent(html_157cb0cef1bf06c05328150ab13ef059);
marker_b33c511025c56d4a96ffeb205eb11f86.bindPopup(popup_5b472f5f6980714ed8aaffc8879f9251)
;
marker_b33c511025c56d4a96ffeb205eb11f86.setIcon(icon_ec2381a6618d1a878a2b1a41cb766e3c);
var marker_33e42f1c9f8142b7c6d9dcac713294bd = L.marker(
[26.31429471618335, 50.20964492937111],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_c5fe7bd09ab5de956f321823bf787752 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6ada8c3a8fb0067f61851d0865290b46 = L.popup({
"maxWidth": 320,
});
var html_d7339f27d9f2f0161ee06a5fe15a793d = $(`<div id="html_d7339f27d9f2f0161ee06a5fe15a793d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فيصل محمد الرمضان للنقليات</b><br> الرقم الموحد: 7003751927<br> السجل التجاري: 2050111267<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.31429471618335,50.20964492937111" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6ada8c3a8fb0067f61851d0865290b46.setContent(html_d7339f27d9f2f0161ee06a5fe15a793d);
marker_33e42f1c9f8142b7c6d9dcac713294bd.bindPopup(popup_6ada8c3a8fb0067f61851d0865290b46)
;
marker_33e42f1c9f8142b7c6d9dcac713294bd.setIcon(icon_c5fe7bd09ab5de956f321823bf787752);
var marker_7b26df543c85fc9324a12d5815104754 = L.marker(
[26.3145933309268, 50.2101513626129],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_16d834bdd125ad580e865750d4c1b97f = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8c4165c52e9d533acc0211a2d0581f07 = L.popup({
"maxWidth": 320,
});
var html_9baf647abde46b50e5d55aef4687f850 = $(`<div id="html_9baf647abde46b50e5d55aef4687f850" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فورتون انجينيرينج اند انيرجي سيرفيسز</b><br> الرقم الموحد: 7004336249<br> السجل التجاري: 2051221781<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3145933309268,50.2101513626129" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8c4165c52e9d533acc0211a2d0581f07.setContent(html_9baf647abde46b50e5d55aef4687f850);
marker_7b26df543c85fc9324a12d5815104754.bindPopup(popup_8c4165c52e9d533acc0211a2d0581f07)
;
marker_7b26df543c85fc9324a12d5815104754.setIcon(icon_16d834bdd125ad580e865750d4c1b97f);
var marker_091e35a6324da87c5052eeb80220cd5d = L.marker(
[26.31461012318705, 50.21015932542006],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_ead58d6f6da7fb621167aeb19e611a3e = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0ab6f3f031a87170a64589d6b86b1604 = L.popup({
"maxWidth": 320,
});
var html_42d25a524bfcd53161ef79bf46ff2a7e = $(`<div id="html_42d25a524bfcd53161ef79bf46ff2a7e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جبل الانشاءات للمقاولات العامة</b><br> الرقم الموحد: 7012115775<br> السجل التجاري: 2055010664<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.31461012318705,50.21015932542006" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0ab6f3f031a87170a64589d6b86b1604.setContent(html_42d25a524bfcd53161ef79bf46ff2a7e);
marker_091e35a6324da87c5052eeb80220cd5d.bindPopup(popup_0ab6f3f031a87170a64589d6b86b1604)
;
marker_091e35a6324da87c5052eeb80220cd5d.setIcon(icon_ead58d6f6da7fb621167aeb19e611a3e);
var marker_28cc12561429bb1525aa12299b148292 = L.marker(
[26.3146628, 50.2098151],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_e99878a880be43dd017e51f0496817d0 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cab83156d428902a092a3f7be2e47802 = L.popup({
"maxWidth": 320,
});
var html_4d704b020b726c89d51e2d422bf0b123 = $(`<div id="html_4d704b020b726c89d51e2d422bf0b123" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة يونيك لاينز المحدودة</b><br> الرقم الموحد: 7030627066<br> السجل التجاري: 2055134384<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3146628,50.2098151" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cab83156d428902a092a3f7be2e47802.setContent(html_4d704b020b726c89d51e2d422bf0b123);
marker_28cc12561429bb1525aa12299b148292.bindPopup(popup_cab83156d428902a092a3f7be2e47802)
;
marker_28cc12561429bb1525aa12299b148292.setIcon(icon_e99878a880be43dd017e51f0496817d0);
var marker_d184b4b9cf732bd5c68b1ca261ac357d = L.marker(
[26.31467324, 50.20984979],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_436f26e078c7df8f0ddb4cce4f9ca5f0 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8d51c3a89613a6845feb54a2a7a31ea9 = L.popup({
"maxWidth": 320,
});
var html_f3866187a95e252a80d6d852db221912 = $(`<div id="html_f3866187a95e252a80d6d852db221912" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الخبر مول التجاري</b><br> الرقم الموحد: 7011034654<br> السجل التجاري: 2051032498<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.31467324,50.20984979" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8d51c3a89613a6845feb54a2a7a31ea9.setContent(html_f3866187a95e252a80d6d852db221912);
marker_d184b4b9cf732bd5c68b1ca261ac357d.bindPopup(popup_8d51c3a89613a6845feb54a2a7a31ea9)
;
marker_d184b4b9cf732bd5c68b1ca261ac357d.setIcon(icon_436f26e078c7df8f0ddb4cce4f9ca5f0);
var marker_31e3802602e169442c0b06ee78f6f6d9 = L.marker(
[26.31486245685166, 50.21054626081946],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_5e5689b399496bdd688044493d11aa6d = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_21dc165180d6c5ddf77094d7cba58a8f = L.popup({
"maxWidth": 320,
});
var html_b33404a5619cccd50ef37b83852aa46f = $(`<div id="html_b33404a5619cccd50ef37b83852aa46f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فالكون للخدمات المتعددة المحدودة</b><br> الرقم الموحد: 7035410831<br> السجل التجاري: 2050171934<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.31486245685166,50.21054626081946" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_21dc165180d6c5ddf77094d7cba58a8f.setContent(html_b33404a5619cccd50ef37b83852aa46f);
marker_31e3802602e169442c0b06ee78f6f6d9.bindPopup(popup_21dc165180d6c5ddf77094d7cba58a8f)
;
marker_31e3802602e169442c0b06ee78f6f6d9.setIcon(icon_5e5689b399496bdd688044493d11aa6d);
var marker_ecd2b29fd2a94808131c50c64d01cf0f = L.marker(
[26.31507658, 50.2094288],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_3636a1729da426aca095024760ee9ccd = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7dc9bdbb7457a4d0d1dc47fd43a53e66 = L.popup({
"maxWidth": 320,
});
var html_df19cd8000851db39d70542bf2b2b809 = $(`<div id="html_df19cd8000851db39d70542bf2b2b809" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ساس الخبر للتدريب</b><br> الرقم الموحد: 7007700219<br> السجل التجاري: 2051064275<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.31507658,50.2094288" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7dc9bdbb7457a4d0d1dc47fd43a53e66.setContent(html_df19cd8000851db39d70542bf2b2b809);
marker_ecd2b29fd2a94808131c50c64d01cf0f.bindPopup(popup_7dc9bdbb7457a4d0d1dc47fd43a53e66)
;
marker_ecd2b29fd2a94808131c50c64d01cf0f.setIcon(icon_3636a1729da426aca095024760ee9ccd);
var marker_225b9fd2df278c440310fbb781604bd8 = L.marker(
[26.31760017, 50.20989462],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_97bd50f7d30f6d296c211686818de953 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4f3d341b00f6e4f3cdc6a87ba2222b61 = L.popup({
"maxWidth": 320,
});
var html_6ee7f4f5e0bf73d9b9a6b7108e5fe87d = $(`<div id="html_6ee7f4f5e0bf73d9b9a6b7108e5fe87d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة توتال سافتي العربية</b><br> الرقم الموحد: 7001617468<br> السجل التجاري: 2051042268<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.31760017,50.20989462" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4f3d341b00f6e4f3cdc6a87ba2222b61.setContent(html_6ee7f4f5e0bf73d9b9a6b7108e5fe87d);
marker_225b9fd2df278c440310fbb781604bd8.bindPopup(popup_4f3d341b00f6e4f3cdc6a87ba2222b61)
;
marker_225b9fd2df278c440310fbb781604bd8.setIcon(icon_97bd50f7d30f6d296c211686818de953);
var marker_bf7a0768ab7f788e7f05374c55d29baf = L.marker(
[26.3184887, 50.20733911],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_cbc24e8c8571120531d7f4fc1095d779 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_22923a2c735488852c90748ea6216148 = L.popup({
"maxWidth": 320,
});
var html_a9426a25dd44372e115942c670cb6050 = $(`<div id="html_a9426a25dd44372e115942c670cb6050" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دينيس العربية المحدودة</b><br> الرقم الموحد: 7001739767<br> السجل التجاري: 2051050174<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3184887,50.20733911" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_22923a2c735488852c90748ea6216148.setContent(html_a9426a25dd44372e115942c670cb6050);
marker_bf7a0768ab7f788e7f05374c55d29baf.bindPopup(popup_22923a2c735488852c90748ea6216148)
;
marker_bf7a0768ab7f788e7f05374c55d29baf.setIcon(icon_cbc24e8c8571120531d7f4fc1095d779);
var marker_1cc82bd0a73e5c18815239c0a521d86d = L.marker(
[26.31872205, 50.20856149],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_589157765998dfbdef84f49ecf2cc271 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8fba6a71b64295fbc7778c7443af3879 = L.popup({
"maxWidth": 320,
});
var html_25b76cc168f5d2314bbc7e2d279d190d = $(`<div id="html_25b76cc168f5d2314bbc7e2d279d190d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ريلاي اون السعودية المحدودة</b><br> الرقم الموحد: 7004816430<br> السجل التجاري: 2051222701<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.31872205,50.20856149" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8fba6a71b64295fbc7778c7443af3879.setContent(html_25b76cc168f5d2314bbc7e2d279d190d);
marker_1cc82bd0a73e5c18815239c0a521d86d.bindPopup(popup_8fba6a71b64295fbc7778c7443af3879)
;
marker_1cc82bd0a73e5c18815239c0a521d86d.setIcon(icon_589157765998dfbdef84f49ecf2cc271);
var marker_de35e9613785909e70778c3b4b8cc945 = L.marker(
[26.3189157206933, 50.208383125569],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_bab06b43c8ce775df8464fdef7723844 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_489b82db5a34231b8e8500da4d762bd4 = L.popup({
"maxWidth": 320,
});
var html_9ead0883dffeeb992ceab969861698f4 = $(`<div id="html_9ead0883dffeeb992ceab969861698f4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ناي اكسبورت سيلز آند ماركيتنج</b><br> الرقم الموحد: 7002745623<br> السجل التجاري: 2051220900<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3188557206933,50.208383125569" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_489b82db5a34231b8e8500da4d762bd4.setContent(html_9ead0883dffeeb992ceab969861698f4);
marker_de35e9613785909e70778c3b4b8cc945.bindPopup(popup_489b82db5a34231b8e8500da4d762bd4)
;
marker_de35e9613785909e70778c3b4b8cc945.setIcon(icon_bab06b43c8ce775df8464fdef7723844);
var marker_e739c12934c022a04a33361d5729d094 = L.marker(
[26.3188557206933, 50.208443125569],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_95212f7fbd52baf10584df306514dd08 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d96d4cab8811b4c9bce8b0501214d3d9 = L.popup({
"maxWidth": 320,
});
var html_a34ee60e199aed7f3fb8a207d7746278 = $(`<div id="html_a34ee60e199aed7f3fb8a207d7746278" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة لفتك كونسالتنغ السعودية المحدودة</b><br> الرقم الموحد: 7001505580<br> السجل التجاري: 2051033201<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3188557206933,50.208383125569" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d96d4cab8811b4c9bce8b0501214d3d9.setContent(html_a34ee60e199aed7f3fb8a207d7746278);
marker_e739c12934c022a04a33361d5729d094.bindPopup(popup_d96d4cab8811b4c9bce8b0501214d3d9)
;
marker_e739c12934c022a04a33361d5729d094.setIcon(icon_95212f7fbd52baf10584df306514dd08);
var marker_7f96faa10c72c37620febaf8f9aedf53 = L.marker(
[26.3187957206933, 50.208383125569],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_6e9a619eaa5295ecffc9284b7c9a8abc = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7db8b6fcec47d8233cb5d1845f7322da = L.popup({
"maxWidth": 320,
});
var html_27b823cdf6aa40432958dbaeffc99b3b = $(`<div id="html_27b823cdf6aa40432958dbaeffc99b3b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سيسيليس كورب العربية المحدودة</b><br> الرقم الموحد: 7004112749<br> السجل التجاري: 2051221495<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3188557206933,50.208383125569" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7db8b6fcec47d8233cb5d1845f7322da.setContent(html_27b823cdf6aa40432958dbaeffc99b3b);
marker_7f96faa10c72c37620febaf8f9aedf53.bindPopup(popup_7db8b6fcec47d8233cb5d1845f7322da)
;
marker_7f96faa10c72c37620febaf8f9aedf53.setIcon(icon_6e9a619eaa5295ecffc9284b7c9a8abc);
var marker_bbdc65dee04b64b515decb22ec920791 = L.marker(
[26.3188557206933, 50.208323125569],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_ba52c129be08e6bbc52f8bfbf5a6ddce = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0a7ae4513867467f2d7eb5a4af70c5b7 = L.popup({
"maxWidth": 320,
});
var html_dbbaa6f409b8cf7dbd9c4d9ee7665b1f = $(`<div id="html_dbbaa6f409b8cf7dbd9c4d9ee7665b1f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة إدارة تكنولوجيا البيئة</b><br> الرقم الموحد: 7009053666<br> السجل التجاري: 2051028085<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3188557206933,50.208383125569" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0a7ae4513867467f2d7eb5a4af70c5b7.setContent(html_dbbaa6f409b8cf7dbd9c4d9ee7665b1f);
marker_bbdc65dee04b64b515decb22ec920791.bindPopup(popup_0a7ae4513867467f2d7eb5a4af70c5b7)
;
marker_bbdc65dee04b64b515decb22ec920791.setIcon(icon_ba52c129be08e6bbc52f8bfbf5a6ddce);
var marker_8e091e7b0adb1d3be2e65eaddd020095 = L.marker(
[26.31888461, 50.20867078],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_b9608cbf61593230cb7c259ef14260ac = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1a48a4e19f9927f9f821bcb3a37fadb8 = L.popup({
"maxWidth": 320,
});
var html_79bdbc962c0f1fc708e120dd962bfa7f = $(`<div id="html_79bdbc962c0f1fc708e120dd962bfa7f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ماكس ستريتشر السعودية العربية</b><br> الرقم الموحد: 7021864041<br> السجل التجاري: 2051234746<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.31888461,50.20867078" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1a48a4e19f9927f9f821bcb3a37fadb8.setContent(html_79bdbc962c0f1fc708e120dd962bfa7f);
marker_8e091e7b0adb1d3be2e65eaddd020095.bindPopup(popup_1a48a4e19f9927f9f821bcb3a37fadb8)
;
marker_8e091e7b0adb1d3be2e65eaddd020095.setIcon(icon_b9608cbf61593230cb7c259ef14260ac);
var marker_2bd0e0adb3f76ddf6a269bf0d3413ca8 = L.marker(
[26.31890192, 50.20855704],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_b965f3deb442127ee9473beacd8691e6 = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0dabaf183fa9e45e763ec05adfbeb7ff = L.popup({
"maxWidth": 320,
});
var html_34c118b219dc9b9c4ae429889c5ec82c = $(`<div id="html_34c118b219dc9b9c4ae429889c5ec82c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ريجنيت انك</b><br> الرقم الموحد: 7001563803<br> السجل التجاري: 2051034318<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.31890192,50.20855704" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0dabaf183fa9e45e763ec05adfbeb7ff.setContent(html_34c118b219dc9b9c4ae429889c5ec82c);
marker_2bd0e0adb3f76ddf6a269bf0d3413ca8.bindPopup(popup_0dabaf183fa9e45e763ec05adfbeb7ff)
;
marker_2bd0e0adb3f76ddf6a269bf0d3413ca8.setIcon(icon_b965f3deb442127ee9473beacd8691e6);
var marker_816d24255914aadcbacde00aecb62cc6 = L.marker(
[26.3190240480001, 50.208791729],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_bacf28898535a013e3993bfbdc6e0fdc = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dca947c591ef6db0d883d8d654eeeaed = L.popup({
"maxWidth": 320,
});
var html_1b32098ab76e8abbbde10cbd1d957d73 = $(`<div id="html_1b32098ab76e8abbbde10cbd1d957d73" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة شاينا هوانكيو كونتراكتنج</b><br> الرقم الموحد: 7001519045<br> السجل التجاري: 2051034545<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.3190240480001,50.208791729" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dca947c591ef6db0d883d8d654eeeaed.setContent(html_1b32098ab76e8abbbde10cbd1d957d73);
marker_816d24255914aadcbacde00aecb62cc6.bindPopup(popup_dca947c591ef6db0d883d8d654eeeaed)
;
marker_816d24255914aadcbacde00aecb62cc6.setIcon(icon_bacf28898535a013e3993bfbdc6e0fdc);
var marker_1c084f80a9e137d45195c9561d5a8711 = L.marker(
[26.32242349, 50.20604312],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_82103ed2245adf5106728ddecc93d89a = L.AwesomeMarkers.icon(
{
"markerColor": "cadetblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3bbc99b003e850154ee0a206fd499cb0 = L.popup({
"maxWidth": 320,
});
var html_2a936649e7809d06f611a83f6b8d5845 = $(`<div id="html_2a936649e7809d06f611a83f6b8d5845" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أرض التنس الرياضي</b><br> الرقم الموحد: 7028653124<br> السجل التجاري: 2051241119<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.32242349,50.20604312" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3bbc99b003e850154ee0a206fd499cb0.setContent(html_2a936649e7809d06f611a83f6b8d5845);
marker_1c084f80a9e137d45195c9561d5a8711.bindPopup(popup_3bbc99b003e850154ee0a206fd499cb0)
;
marker_1c084f80a9e137d45195c9561d5a8711.setIcon(icon_82103ed2245adf5106728ddecc93d89a);
var marker_b2d2c518edaa143311e3161b24958906 = L.marker(
[26.283217, 50.20101569],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_8fe31dbdb009b90f48ae05d32e4469f2 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2f9b589290e58cdc085c2f8431e80f15 = L.popup({
"maxWidth": 320,
});
var html_82a8dbc17b837404304bedeabed0dc2f = $(`<div id="html_82a8dbc17b837404304bedeabed0dc2f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة وورلي كورد العربية المحدودة</b><br> الرقم الموحد: 7001466189<br> السجل التجاري: 2051029683<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.283217,50.20101569" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2f9b589290e58cdc085c2f8431e80f15.setContent(html_82a8dbc17b837404304bedeabed0dc2f);
marker_b2d2c518edaa143311e3161b24958906.bindPopup(popup_2f9b589290e58cdc085c2f8431e80f15)
;
marker_b2d2c518edaa143311e3161b24958906.setIcon(icon_8fe31dbdb009b90f48ae05d32e4469f2);
var marker_2bdffde708de50f7d6b217c697f2fe0d = L.marker(
[26.283906136, 50.199055603],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_47b24d461e15f1a636cd5cd95cf278e1 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_09bb387cb80306ec3e46f626c25db91e = L.popup({
"maxWidth": 320,
});
var html_2b20d4fdc89bafdd694d55d745c8d5a1 = $(`<div id="html_2b20d4fdc89bafdd694d55d745c8d5a1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سوديلترا العربية السعودية</b><br> الرقم الموحد: 7001776207<br> السجل التجاري: 2051052364<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.283906136,50.199055603" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_09bb387cb80306ec3e46f626c25db91e.setContent(html_2b20d4fdc89bafdd694d55d745c8d5a1);
marker_2bdffde708de50f7d6b217c697f2fe0d.bindPopup(popup_09bb387cb80306ec3e46f626c25db91e)
;
marker_2bdffde708de50f7d6b217c697f2fe0d.setIcon(icon_47b24d461e15f1a636cd5cd95cf278e1);
var marker_5415fd09ef926aadfcc3ee2fe370e5b4 = L.marker(
[26.2842624834236, 50.1986635089585],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_05ce367035abf2bc00e3768011c2eec3 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e2e194cd5a70d3c7ecf563cbda4aa699 = L.popup({
"maxWidth": 320,
});
var html_03962b401d963f6a04134a659548ad9e = $(`<div id="html_03962b401d963f6a04134a659548ad9e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جاكوبس للاستشارات الهندسية شركة شخص واحد</b><br> الرقم الموحد: 7000007596<br> السجل التجاري: 2051058157<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.2842624834236,50.1986635089585" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e2e194cd5a70d3c7ecf563cbda4aa699.setContent(html_03962b401d963f6a04134a659548ad9e);
marker_5415fd09ef926aadfcc3ee2fe370e5b4.bindPopup(popup_e2e194cd5a70d3c7ecf563cbda4aa699)
;
marker_5415fd09ef926aadfcc3ee2fe370e5b4.setIcon(icon_05ce367035abf2bc00e3768011c2eec3);
var marker_359cd5e9e80429a95481c2673ef37572 = L.marker(
[26.28429949, 50.19787442],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_8f6a787d7415eadff694f518e9a28c67 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8c998e68619c60c77abdd3b88f2510f5 = L.popup({
"maxWidth": 320,
});
var html_2c32171479892fa72be4950276302ecb = $(`<div id="html_2c32171479892fa72be4950276302ecb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الاتحاد امبكس</b><br> الرقم الموحد: 7026648159<br> السجل التجاري: 2051238530<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.28429949,50.19787442" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8c998e68619c60c77abdd3b88f2510f5.setContent(html_2c32171479892fa72be4950276302ecb);
marker_359cd5e9e80429a95481c2673ef37572.bindPopup(popup_8c998e68619c60c77abdd3b88f2510f5)
;
marker_359cd5e9e80429a95481c2673ef37572.setIcon(icon_8f6a787d7415eadff694f518e9a28c67);
var marker_5eb80e262190665a4bdd6439ce46a648 = L.marker(
[26.28554609, 50.19845565],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_39b114f0803bfaed3886e540b48615f6 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_03bff0b514d778887b5baed4e0bbd203 = L.popup({
"maxWidth": 320,
});
var html_3bf4ba86f9df89a5af668757169b1a1a = $(`<div id="html_3bf4ba86f9df89a5af668757169b1a1a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة أس إي أس سمارت انرجي</b><br> الرقم الموحد: 7001677637<br> السجل التجاري: 2051046876<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.28554609,50.19845565" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_03bff0b514d778887b5baed4e0bbd203.setContent(html_3bf4ba86f9df89a5af668757169b1a1a);
marker_5eb80e262190665a4bdd6439ce46a648.bindPopup(popup_03bff0b514d778887b5baed4e0bbd203)
;
marker_5eb80e262190665a4bdd6439ce46a648.setIcon(icon_39b114f0803bfaed3886e540b48615f6);
var marker_135a6a8324a61fc175e5f15be9721f66 = L.marker(
[26.28582759, 50.19939777],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_da31f7bbb3c901045a3ce96fdf9b280c = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5c4405270bc3648e1496bc5a7f14dc3f = L.popup({
"maxWidth": 320,
});
var html_abbea4211d81d6b58ad3b0c2463c0ac9 = $(`<div id="html_abbea4211d81d6b58ad3b0c2463c0ac9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عبدالله العزاز وشريكه</b><br> الرقم الموحد: 7001465629<br> السجل التجاري: 2051027318<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.28582759,50.19939777" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5c4405270bc3648e1496bc5a7f14dc3f.setContent(html_abbea4211d81d6b58ad3b0c2463c0ac9);
marker_135a6a8324a61fc175e5f15be9721f66.bindPopup(popup_5c4405270bc3648e1496bc5a7f14dc3f)
;
marker_135a6a8324a61fc175e5f15be9721f66.setIcon(icon_da31f7bbb3c901045a3ce96fdf9b280c);
var marker_2e2577909ab8f9c2159ab37f1ecaab6a = L.marker(
[26.28819973, 50.20581025],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_4f1b448388ac0144b90becbe8fe092a6 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_09e410403ad644f961cb9008df9a8b78 = L.popup({
"maxWidth": 320,
});
var html_8c5c03e75b0b32d43ac616bc4972000b = $(`<div id="html_8c5c03e75b0b32d43ac616bc4972000b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الأتكال المحدودة شركة شخص واحد</b><br> الرقم الموحد: 7026416268<br> السجل التجاري: 2051238219<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.28819973,50.20581025" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_09e410403ad644f961cb9008df9a8b78.setContent(html_8c5c03e75b0b32d43ac616bc4972000b);
marker_2e2577909ab8f9c2159ab37f1ecaab6a.bindPopup(popup_09e410403ad644f961cb9008df9a8b78)
;
marker_2e2577909ab8f9c2159ab37f1ecaab6a.setIcon(icon_4f1b448388ac0144b90becbe8fe092a6);
var marker_cd846fb2ed819eb44df7edeab9068091 = L.marker(
[26.2896339, 50.19905444],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_afc9313e065d14780454cdc7cb06b58f = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8214f77b691ead0d042d8f4e8a17b56d = L.popup({
"maxWidth": 320,
});
var html_9962c0eaa9529f26172e04034d305740 = $(`<div id="html_9962c0eaa9529f26172e04034d305740" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الرائدة تحت المائية المحدودة</b><br> الرقم الموحد: 7029687535<br> السجل التجاري: 2051242211<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.2896339,50.19905444" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8214f77b691ead0d042d8f4e8a17b56d.setContent(html_9962c0eaa9529f26172e04034d305740);
marker_cd846fb2ed819eb44df7edeab9068091.bindPopup(popup_8214f77b691ead0d042d8f4e8a17b56d)
;
marker_cd846fb2ed819eb44df7edeab9068091.setIcon(icon_afc9313e065d14780454cdc7cb06b58f);
var marker_0990f00269967a766f2f8798349db686 = L.marker(
[26.2897667, 50.1991917],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_a60dfa75a9ef46e4ddd5c5bb080a16c1 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8c53b5e99437cc7fb6e7878d7c21fdf5 = L.popup({
"maxWidth": 320,
});
var html_d671eb52b17c9fa625f21c8077163cf2 = $(`<div id="html_d671eb52b17c9fa625f21c8077163cf2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>كولور تراك الخلیج للمقاولات العامة</b><br> الرقم الموحد: 7034969662<br> السجل التجاري: 2050168943<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.2897667,50.1991917" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8c53b5e99437cc7fb6e7878d7c21fdf5.setContent(html_d671eb52b17c9fa625f21c8077163cf2);
marker_0990f00269967a766f2f8798349db686.bindPopup(popup_8c53b5e99437cc7fb6e7878d7c21fdf5)
;
marker_0990f00269967a766f2f8798349db686.setIcon(icon_a60dfa75a9ef46e4ddd5c5bb080a16c1);
var marker_1487e751afb4857a64049d75384a8f30 = L.marker(
[26.28985747052081, 50.19924220548781],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_6777c6291391b9da6c105c81aed8e69b = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_da9b4421129d1942d5c765ccc10c99ca = L.popup({
"maxWidth": 320,
});
var html_9bc01be740808b5e47b3ca90ae9931ae = $(`<div id="html_9bc01be740808b5e47b3ca90ae9931ae" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ديجيتال انيرجي العربية للمقاولات</b><br> الرقم الموحد: 7035157002<br> السجل التجاري: 4030508122<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.28985747052081,50.19924220548781" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_da9b4421129d1942d5c765ccc10c99ca.setContent(html_9bc01be740808b5e47b3ca90ae9931ae);
marker_1487e751afb4857a64049d75384a8f30.bindPopup(popup_da9b4421129d1942d5c765ccc10c99ca)
;
marker_1487e751afb4857a64049d75384a8f30.setIcon(icon_6777c6291391b9da6c105c81aed8e69b);
var marker_724d9f4afbd1d3cfe3a1017745966d55 = L.marker(
[26.29082999, 50.20540057],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_2c78999ed3b5bfff1d23e2a56f1b5807 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e4ce045bb5046bc7d9e256edbbb110bf = L.popup({
"maxWidth": 320,
});
var html_6327673a64cf8c9e0e544de8dcb1e565 = $(`<div id="html_6327673a64cf8c9e0e544de8dcb1e565" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تيوبستار أويل اند غاز العربية للغاز</b><br> الرقم الموحد: 7021324541<br> السجل التجاري: 2051233939<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.29082999,50.20540057" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e4ce045bb5046bc7d9e256edbbb110bf.setContent(html_6327673a64cf8c9e0e544de8dcb1e565);
marker_724d9f4afbd1d3cfe3a1017745966d55.bindPopup(popup_e4ce045bb5046bc7d9e256edbbb110bf)
;
marker_724d9f4afbd1d3cfe3a1017745966d55.setIcon(icon_2c78999ed3b5bfff1d23e2a56f1b5807);
var marker_eb7c58d6b26aa56dd39df635173ee14c = L.marker(
[26.29084684, 50.20698534],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_b279b87f927d50f0e05362ce8b23cd09 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_beaef8394f5e6847820bada1d9d9569a = L.popup({
"maxWidth": 320,
});
var html_a0f6f669f56a55bd4e2d493064f86a27 = $(`<div id="html_a0f6f669f56a55bd4e2d493064f86a27" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المقاولون الغربيون للمقاولات</b><br> الرقم الموحد: 7001472476<br> السجل التجاري: 2051030487<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.29084684,50.20698534" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_beaef8394f5e6847820bada1d9d9569a.setContent(html_a0f6f669f56a55bd4e2d493064f86a27);
marker_eb7c58d6b26aa56dd39df635173ee14c.bindPopup(popup_beaef8394f5e6847820bada1d9d9569a)
;
marker_eb7c58d6b26aa56dd39df635173ee14c.setIcon(icon_b279b87f927d50f0e05362ce8b23cd09);
var marker_6323c488c6745c82f7be943fb070b049 = L.marker(
[26.29095324109223, 50.20703522488475],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_e372137711215ee3744525045f929b5e = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_28dc16178b4596e5f6d0b3a90d09b3d9 = L.popup({
"maxWidth": 320,
});
var html_9f402cf93f6c3420376b16b4cfaf11d8 = $(`<div id="html_9f402cf93f6c3420376b16b4cfaf11d8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نور الابتكار للمقاولات</b><br> الرقم الموحد: 7036165657<br> السجل التجاري: 2051250919<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.29095324109223,50.20703522488475" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_28dc16178b4596e5f6d0b3a90d09b3d9.setContent(html_9f402cf93f6c3420376b16b4cfaf11d8);
marker_6323c488c6745c82f7be943fb070b049.bindPopup(popup_28dc16178b4596e5f6d0b3a90d09b3d9)
;
marker_6323c488c6745c82f7be943fb070b049.setIcon(icon_e372137711215ee3744525045f929b5e);
var marker_fc85a750268cac9b026a3aa746b75c99 = L.marker(
[26.29115952, 50.20694223],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_e2c3f464a8f2dd1cecfdf5238379f7aa = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c4c22af3e5d42abaa420080f0da0dca5 = L.popup({
"maxWidth": 320,
});
var html_1bc0c646ac07d7d35692ecc74fe87fc4 = $(`<div id="html_1bc0c646ac07d7d35692ecc74fe87fc4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عتيق الرحمن للمقاولات والأعمال</b><br> الرقم الموحد: 7001603997<br> السجل التجاري: 2051062884<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.29115952,50.20694223" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c4c22af3e5d42abaa420080f0da0dca5.setContent(html_1bc0c646ac07d7d35692ecc74fe87fc4);
marker_fc85a750268cac9b026a3aa746b75c99.bindPopup(popup_c4c22af3e5d42abaa420080f0da0dca5)
;
marker_fc85a750268cac9b026a3aa746b75c99.setIcon(icon_e2c3f464a8f2dd1cecfdf5238379f7aa);
var marker_bfc185dc387964077e61d2e0aedb0431 = L.marker(
[26.2913273, 50.19935157],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_4bdb14409ed5a42914279df32d24ec1f = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c1c8029e377b81d5034b1cb64ec3898f = L.popup({
"maxWidth": 320,
});
var html_9f1860afe783b7cd2b31b7390bb4b98b = $(`<div id="html_9f1860afe783b7cd2b31b7390bb4b98b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة التميمي بتروهاب للمعدات</b><br> الرقم الموحد: 7001571285<br> السجل التجاري: 2051001535<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.2913273,50.19935157" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c1c8029e377b81d5034b1cb64ec3898f.setContent(html_9f1860afe783b7cd2b31b7390bb4b98b);
marker_bfc185dc387964077e61d2e0aedb0431.bindPopup(popup_c1c8029e377b81d5034b1cb64ec3898f)
;
marker_bfc185dc387964077e61d2e0aedb0431.setIcon(icon_4bdb14409ed5a42914279df32d24ec1f);
var marker_43f29617db282867357b51cbba78e289 = L.marker(
[26.2914509562011, 50.2007836122258],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_c88eef34091c1fdd95adb70f9c5c6ed7 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d741ae16ddcd7aedc06df3d93ca5e2e5 = L.popup({
"maxWidth": 320,
});
var html_3fc7b93e6e89d606dd1a38d19827b34d = $(`<div id="html_3fc7b93e6e89d606dd1a38d19827b34d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المعدات الثقيلة المحدودة</b><br> الرقم الموحد: 7037358202<br> السجل التجاري: 2050179015<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.2914509562011,50.2007836122258" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d741ae16ddcd7aedc06df3d93ca5e2e5.setContent(html_3fc7b93e6e89d606dd1a38d19827b34d);
marker_43f29617db282867357b51cbba78e289.bindPopup(popup_d741ae16ddcd7aedc06df3d93ca5e2e5)
;
marker_43f29617db282867357b51cbba78e289.setIcon(icon_c88eef34091c1fdd95adb70f9c5c6ed7);
var marker_390ee767c2d0302b9954e32051c866a6 = L.marker(
[26.29151927, 50.20687737],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_182a2a0b70ccacb2a70523f1f7d3a722 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_426510e4a7ca0a7969da42e5a6a7ae02 = L.popup({
"maxWidth": 320,
});
var html_c10d5e6ba034be557b05f9278c75de28 = $(`<div id="html_c10d5e6ba034be557b05f9278c75de28" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الشرق الأوسط العالمية للمعاينة وتقدير الخسائر</b><br> الرقم الموحد: 7001773964<br> السجل التجاري: 2051050908<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.29151927,50.20687737" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_426510e4a7ca0a7969da42e5a6a7ae02.setContent(html_c10d5e6ba034be557b05f9278c75de28);
marker_390ee767c2d0302b9954e32051c866a6.bindPopup(popup_426510e4a7ca0a7969da42e5a6a7ae02)
;
marker_390ee767c2d0302b9954e32051c866a6.setIcon(icon_182a2a0b70ccacb2a70523f1f7d3a722);
var marker_0d534b54f9738d7da57256662f9f0f2c = L.marker(
[26.29334296, 50.19966136],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_0e87f827599916b64fe5f32cf18dd27b = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9839583ed120dcaf49e0ce5d08ab80ed = L.popup({
"maxWidth": 320,
});
var html_cbef697460db55eecb27c6860893e6d0 = $(`<div id="html_cbef697460db55eecb27c6860893e6d0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تتميم الشرق الاوسط المحدودة</b><br> الرقم الموحد: 7029142457<br> السجل التجاري: 2051241853<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.29334296,50.19966136" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9839583ed120dcaf49e0ce5d08ab80ed.setContent(html_cbef697460db55eecb27c6860893e6d0);
marker_0d534b54f9738d7da57256662f9f0f2c.bindPopup(popup_9839583ed120dcaf49e0ce5d08ab80ed)
;
marker_0d534b54f9738d7da57256662f9f0f2c.setIcon(icon_0e87f827599916b64fe5f32cf18dd27b);
var marker_1f2ad0d534954d48ed0b04719875d6ca = L.marker(
[26.29393437, 50.2071585],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_25f4bfa48fb06fb395cc767b11e05074 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_098674b47695ca536df7d9b103c22732 = L.popup({
"maxWidth": 320,
});
var html_8e054ebe063045301b3d4774178983e6 = $(`<div id="html_8e054ebe063045301b3d4774178983e6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة يوروتكنولوجي العالمية المحدودة</b><br> الرقم الموحد: 7001727143<br> السجل التجاري: 2051049665<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.29393437,50.2071585" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_098674b47695ca536df7d9b103c22732.setContent(html_8e054ebe063045301b3d4774178983e6);
marker_1f2ad0d534954d48ed0b04719875d6ca.bindPopup(popup_098674b47695ca536df7d9b103c22732)
;
marker_1f2ad0d534954d48ed0b04719875d6ca.setIcon(icon_25f4bfa48fb06fb395cc767b11e05074);
var marker_333e2479a6772896d1b527964c9bae6f = L.marker(
[26.29527578, 50.20106513],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_2742bc32f333f6d43f5cc1e5a22bcc58 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_54ad76f66c0875832f09fb8ec381ab87 = L.popup({
"maxWidth": 320,
});
var html_85c7384cabfefaab9963ebbf3fc73c4d = $(`<div id="html_85c7384cabfefaab9963ebbf3fc73c4d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تقنية الرخام والجرانيت</b><br> الرقم الموحد: 7010454127<br> السجل التجاري: 2051019016<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.29527578,50.20106513" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_54ad76f66c0875832f09fb8ec381ab87.setContent(html_85c7384cabfefaab9963ebbf3fc73c4d);
marker_333e2479a6772896d1b527964c9bae6f.bindPopup(popup_54ad76f66c0875832f09fb8ec381ab87)
;
marker_333e2479a6772896d1b527964c9bae6f.setIcon(icon_2742bc32f333f6d43f5cc1e5a22bcc58);
var marker_d9e63e69b6181fe44f5923df075b1781 = L.marker(
[26.2955897, 50.2045141],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_e0e3811ebff5029ed9074dad5ca9cb14 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_233dba2db83c01abbe268f7b81d8b711 = L.popup({
"maxWidth": 320,
});
var html_748f282b7a7ba12430c2a5241c546ade = $(`<div id="html_748f282b7a7ba12430c2a5241c546ade" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اركن الخليج للمقاولات</b><br> الرقم الموحد: 7011220360<br> السجل التجاري: 2051015186<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.2955897,50.2045141" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_233dba2db83c01abbe268f7b81d8b711.setContent(html_748f282b7a7ba12430c2a5241c546ade);
marker_d9e63e69b6181fe44f5923df075b1781.bindPopup(popup_233dba2db83c01abbe268f7b81d8b711)
;
marker_d9e63e69b6181fe44f5923df075b1781.setIcon(icon_e0e3811ebff5029ed9074dad5ca9cb14);
var marker_3ead6f566ad550e8cc94f29416182993 = L.marker(
[26.29559598527119, 50.20779693652365],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_fc4b40cf7463c70256322bbd022ca80b = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_17d10f9dac2157b66951013ac4bbfad0 = L.popup({
"maxWidth": 320,
});
var html_88a35956f3c81955b515cab253b6b48b = $(`<div id="html_88a35956f3c81955b515cab253b6b48b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دودسال و شركاه</b><br> الرقم الموحد: 7001422976<br> السجل التجاري: 2051025377<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.29559598527119,50.20779693652365" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_17d10f9dac2157b66951013ac4bbfad0.setContent(html_88a35956f3c81955b515cab253b6b48b);
marker_3ead6f566ad550e8cc94f29416182993.bindPopup(popup_17d10f9dac2157b66951013ac4bbfad0)
;
marker_3ead6f566ad550e8cc94f29416182993.setIcon(icon_fc4b40cf7463c70256322bbd022ca80b);
var marker_c2f346c1bac2f54a52fc04a893fb8861 = L.marker(
[26.29597771041502, 50.20800341852009],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_07a621a9bbbdba0243a4635eb5a3cd65 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7f94d9b7acbce805ee0459af474cb843 = L.popup({
"maxWidth": 320,
});
var html_9f2facb7c8943c71f2bbe20d9b3be53a = $(`<div id="html_9f2facb7c8943c71f2bbe20d9b3be53a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كونسبك الهندسية الخاصة المحدودة</b><br> الرقم الموحد: 7033664082<br> السجل التجاري: 2052103974<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.29597771041502,50.20800341852009" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7f94d9b7acbce805ee0459af474cb843.setContent(html_9f2facb7c8943c71f2bbe20d9b3be53a);
marker_c2f346c1bac2f54a52fc04a893fb8861.bindPopup(popup_7f94d9b7acbce805ee0459af474cb843)
;
marker_c2f346c1bac2f54a52fc04a893fb8861.setIcon(icon_07a621a9bbbdba0243a4635eb5a3cd65);
var marker_3ace4b552b53c393396ee01e5b4de2ce = L.marker(
[26.2969801990001, 50.2046495480001],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_15e13e961d4a3c97b3926d908ced312e = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_62dca0c4c5e59f3210544bd330e573f5 = L.popup({
"maxWidth": 320,
});
var html_a4f547a3fe472849055807eb64cce61c = $(`<div id="html_a4f547a3fe472849055807eb64cce61c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المقاولات والتجارة</b><br> الرقم الموحد: 7000026273<br> السجل التجاري: 2051001557<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.2969801990001,50.2046495480001" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_62dca0c4c5e59f3210544bd330e573f5.setContent(html_a4f547a3fe472849055807eb64cce61c);
marker_3ace4b552b53c393396ee01e5b4de2ce.bindPopup(popup_62dca0c4c5e59f3210544bd330e573f5)
;
marker_3ace4b552b53c393396ee01e5b4de2ce.setIcon(icon_15e13e961d4a3c97b3926d908ced312e);
var marker_ec9835cdbbe9a27f1ea694f4f00ef3e2 = L.marker(
[26.29825835, 50.20072124],
{
}
).addTo(map_c2b262201a021f20ce793d68646a7453);
var icon_b0ff8bd8b5d677a2e87daa60c6fec4e3 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5d34145229f98f2a007aa6d5d2e889e4 = L.popup({
"maxWidth": 320,
});
var html_4b179ef1e5efcd32a2066f4e1c02f431 = $(`<div id="html_4b179ef1e5efcd32a2066f4e1c02f431" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الرواف العالمية للمقاولات</b><br> الرقم الموحد: 7001657357<br> السجل التجاري: 2051009250<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> <b>اسم الباحث:</b> منال احمد القحطاني<br> <a href="https://www.google.com/maps?q=26.29825835,50.20072124" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5d34145229f98f2a007aa6d5d2e889e4.setContent(html_4b179ef1e5efcd32a2066f4e1c02f431);
marker_ec9835cdbbe9a27f1ea694f4f00ef3e2.bindPopup(popup_5d34145229f98f2a007aa6d5d2e889e4)
;
marker_ec9835cdbbe9a27f1ea694f4f00ef3e2.setIcon(icon_b0ff8bd8b5d677a2e87daa60c6fec4e3);
</script>
</html> |