8ec69c7
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 | <!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_9a0ad3292d4531c699c51fc92655250c {
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_21" onclick="
var panel = document.getElementById('stats_21');
var btn = document.getElementById('btn_stats_21');
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_21" 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;
">عالية محمد علي الربيع - 21</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 65</div>
<div><b>عدد الحارات:</b> 3</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• اليرموك: 37</div><div>• البندرية: 27</div><div>• الساحل: 1</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_21_عالية_محمد_علي_الربيع.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:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>اليرموك</span>
</div>
<span style="color:#555;">(37)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:lightblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>البندرية</span>
</div>
<span style="color:#555;">(27)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkgreen;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الساحل</span>
</div>
<span style="color:#555;">(1)</span>
</div>
</div>
</div>
</div>
<div style="
position: fixed;
bottom: 8px; left: 8px;
background: rgba(255,255,255,0.85);
padding: 6px 10px;
border-radius: 10px;
font-size: 13px;
direction: rtl;
z-index: 9999;
box-shadow: 0 1px 8px rgba(0,0,0,0.15);
">
تصميم وإعداد <b>نوف الناصر</b>
</div>
<div class="folium-map" id="map_9a0ad3292d4531c699c51fc92655250c" ></div>
</body>
<script>
var map_9a0ad3292d4531c699c51fc92655250c = L.map(
"map_9a0ad3292d4531c699c51fc92655250c",
{
center: [26.309875988471667, 50.21762777938867],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_826bf747342a154f0baf47f8056492a5 = 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_826bf747342a154f0baf47f8056492a5.addTo(map_9a0ad3292d4531c699c51fc92655250c);
var tile_layer_2be25f0aba4c81ec77275c019a64c6fe = 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_2be25f0aba4c81ec77275c019a64c6fe.addTo(map_9a0ad3292d4531c699c51fc92655250c);
var tile_layer_92b22bef897d2a3412300e50631d80ef = 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_92b22bef897d2a3412300e50631d80ef.addTo(map_9a0ad3292d4531c699c51fc92655250c);
var locate_control_aff2e0bf5ed66dfda4111cc5e4461517 = L.control.locate(
{}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var marker_34abb102d0c02279c932ab5bab0754de = L.marker(
[26.30370988, 50.21232894],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_7c93ba702878efc5055cee7abd6cc8c4 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6d9755de70b0476d4bd035a3ebe96a87 = L.popup({
"maxWidth": 320,
});
var html_7167142015fa0ba273bf56d9b52e5de1 = $(`<div id="html_7167142015fa0ba273bf56d9b52e5de1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>اتش اس اس جي فونديشن كونتراكتينغ ذ م م</b><br> الرقم الموحد: 7001692073<br> السجل التجاري: 2051061595<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30370988,50.21232894" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6d9755de70b0476d4bd035a3ebe96a87.setContent(html_7167142015fa0ba273bf56d9b52e5de1);
marker_34abb102d0c02279c932ab5bab0754de.bindPopup(popup_6d9755de70b0476d4bd035a3ebe96a87)
;
marker_34abb102d0c02279c932ab5bab0754de.setIcon(icon_7c93ba702878efc5055cee7abd6cc8c4);
var marker_8361853acf4b82fd9993000011de5ca2 = L.marker(
[26.3038204470001, 50.210460082],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_fde063879a35c56c910ad25ed7837635 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7279fec516ae298420a0c381049f823f = L.popup({
"maxWidth": 320,
});
var html_b1598700b3ded794b7a08a9a0378274e = $(`<div id="html_b1598700b3ded794b7a08a9a0378274e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة باس كار لتقنية المعلومات المحدودة</b><br> الرقم الموحد: 7001654107<br> السجل التجاري: 2051044728<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3038204470001,50.210460082" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7279fec516ae298420a0c381049f823f.setContent(html_b1598700b3ded794b7a08a9a0378274e);
marker_8361853acf4b82fd9993000011de5ca2.bindPopup(popup_7279fec516ae298420a0c381049f823f)
;
marker_8361853acf4b82fd9993000011de5ca2.setIcon(icon_fde063879a35c56c910ad25ed7837635);
var marker_20dc54e5a64faab4f7bc842d172e6093 = L.marker(
[26.30390287, 50.21152079],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_e6c5ac4baab62650322458a2c69ed4f6 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cc3f549dc2b01115797b02a193dab55f = L.popup({
"maxWidth": 320,
});
var html_15a0a22d194e2d7883035362e926d70a = $(`<div id="html_15a0a22d194e2d7883035362e926d70a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مدرسة المدينة السعودية</b><br> الرقم الموحد: 7016168788<br> السجل التجاري: 2051228173<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30384287,50.21152079" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cc3f549dc2b01115797b02a193dab55f.setContent(html_15a0a22d194e2d7883035362e926d70a);
marker_20dc54e5a64faab4f7bc842d172e6093.bindPopup(popup_cc3f549dc2b01115797b02a193dab55f)
;
marker_20dc54e5a64faab4f7bc842d172e6093.setIcon(icon_e6c5ac4baab62650322458a2c69ed4f6);
var marker_57de85ed6073d31c29aafea9597666f1 = L.marker(
[26.30378287, 50.21152079],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_d7336e23d5deb6290004661412b32995 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2b947c1bb90512cfd561451302484292 = L.popup({
"maxWidth": 320,
});
var html_7a69805a5716738a488107ee37689bc7 = $(`<div id="html_7a69805a5716738a488107ee37689bc7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دايناميك للصناعات العربية السعودية</b><br> الرقم الموحد: 7001876007<br> السجل التجاري: 2051058684<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30384287,50.21152079" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2b947c1bb90512cfd561451302484292.setContent(html_7a69805a5716738a488107ee37689bc7);
marker_57de85ed6073d31c29aafea9597666f1.bindPopup(popup_2b947c1bb90512cfd561451302484292)
;
marker_57de85ed6073d31c29aafea9597666f1.setIcon(icon_d7336e23d5deb6290004661412b32995);
var marker_caf1c8aa1eb0c2ace5b531f8f5910a6b = L.marker(
[26.30400256, 50.21167747],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_b03f313b1f1a7b2caa63229760a89abc = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_73480fdc9ffc3e9b9ec21777bd009394 = L.popup({
"maxWidth": 320,
});
var html_db53f12f2625510ab589faa1b3a9229f = $(`<div id="html_db53f12f2625510ab589faa1b3a9229f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة وسطاء الثقة لوساطة</b><br> الرقم الموحد: 7001576904<br> السجل التجاري: 2051039160<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30400256,50.21167747" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_73480fdc9ffc3e9b9ec21777bd009394.setContent(html_db53f12f2625510ab589faa1b3a9229f);
marker_caf1c8aa1eb0c2ace5b531f8f5910a6b.bindPopup(popup_73480fdc9ffc3e9b9ec21777bd009394)
;
marker_caf1c8aa1eb0c2ace5b531f8f5910a6b.setIcon(icon_b03f313b1f1a7b2caa63229760a89abc);
var marker_104e7cec4d98f5410c49abad4cad4c19 = L.marker(
[26.30445762, 50.21220576],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_e6ba8c4fb5f453cd0f39d31dd8609b7a = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0e13e970ec7043c86d384bd2860edc0c = L.popup({
"maxWidth": 320,
});
var html_ace1bef1e698729b362a619c8f6de7f7 = $(`<div id="html_ace1bef1e698729b362a619c8f6de7f7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة احمد عمارة وشركاه للمقاولات</b><br> الرقم الموحد: 7001686463<br> السجل التجاري: 2052002700<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30445762,50.21220576" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0e13e970ec7043c86d384bd2860edc0c.setContent(html_ace1bef1e698729b362a619c8f6de7f7);
marker_104e7cec4d98f5410c49abad4cad4c19.bindPopup(popup_0e13e970ec7043c86d384bd2860edc0c)
;
marker_104e7cec4d98f5410c49abad4cad4c19.setIcon(icon_e6ba8c4fb5f453cd0f39d31dd8609b7a);
var marker_fb44ebdd451f50bb8ffeaf8bc69a935b = L.marker(
[26.3046370197135, 50.2106648284879],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_35ade5d64c34c6e983b2152195a49356 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_205ea6b2de8b1bbd1951e17293d4d839 = L.popup({
"maxWidth": 320,
});
var html_d7aa790b13d8549da30c2d268caf05b9 = $(`<div id="html_d7aa790b13d8549da30c2d268caf05b9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اللون الرقمي لتقنية المعلومات</b><br> الرقم الموحد: 7012409806<br> السجل التجاري: 2051049336<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3046370197135,50.2106648284879" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_205ea6b2de8b1bbd1951e17293d4d839.setContent(html_d7aa790b13d8549da30c2d268caf05b9);
marker_fb44ebdd451f50bb8ffeaf8bc69a935b.bindPopup(popup_205ea6b2de8b1bbd1951e17293d4d839)
;
marker_fb44ebdd451f50bb8ffeaf8bc69a935b.setIcon(icon_35ade5d64c34c6e983b2152195a49356);
var marker_ad99d5070ca6a1126012c54e07fbb185 = L.marker(
[26.30475617, 50.2110344],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_236f51a7f0b611b948c5fd3217d34fbd = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c9d34df84982c696bd145245e4b47ea6 = L.popup({
"maxWidth": 320,
});
var html_ca016a11f3f0991962002f4618e73d7b = $(`<div id="html_ca016a11f3f0991962002f4618e73d7b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة انشاءات المدن السعودية المحدودة</b><br> الرقم الموحد: 7001662324<br> السجل التجاري: 2051045296<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30475617,50.2110344" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c9d34df84982c696bd145245e4b47ea6.setContent(html_ca016a11f3f0991962002f4618e73d7b);
marker_ad99d5070ca6a1126012c54e07fbb185.bindPopup(popup_c9d34df84982c696bd145245e4b47ea6)
;
marker_ad99d5070ca6a1126012c54e07fbb185.setIcon(icon_236f51a7f0b611b948c5fd3217d34fbd);
var marker_6fa82ee473f57eb9baca86766473d4fe = L.marker(
[26.30507338329659, 50.21667282097042],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_f3225477509d0acc792d90024bc1d2a1 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4ec771a9208613c34c34fced308024f8 = L.popup({
"maxWidth": 320,
});
var html_be0d6b81de66b5025d8e93c3c47a7ed8 = $(`<div id="html_be0d6b81de66b5025d8e93c3c47a7ed8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>سوبل اي العالمية لتقنية المعلومات</b><br> الرقم الموحد: 7038191883<br> السجل التجاري: 1010979223<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30507338329659,50.21667282097042" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4ec771a9208613c34c34fced308024f8.setContent(html_be0d6b81de66b5025d8e93c3c47a7ed8);
marker_6fa82ee473f57eb9baca86766473d4fe.bindPopup(popup_4ec771a9208613c34c34fced308024f8)
;
marker_6fa82ee473f57eb9baca86766473d4fe.setIcon(icon_f3225477509d0acc792d90024bc1d2a1);
var marker_f58ad65d9c91a7042d28966f7ca34c1b = L.marker(
[26.3054691357571, 50.2108332708088],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_6082577460384c1d9ad0633ff31dc175 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b5f88efaccba077b06b4c260bc69b529 = L.popup({
"maxWidth": 320,
});
var html_4af196ace78cb5aa3943b30094b64d2b = $(`<div id="html_4af196ace78cb5aa3943b30094b64d2b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سيفرت العربية</b><br> الرقم الموحد: 7001629794<br> السجل التجاري: 2050072797<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3054691357571,50.2108332708088" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b5f88efaccba077b06b4c260bc69b529.setContent(html_4af196ace78cb5aa3943b30094b64d2b);
marker_f58ad65d9c91a7042d28966f7ca34c1b.bindPopup(popup_b5f88efaccba077b06b4c260bc69b529)
;
marker_f58ad65d9c91a7042d28966f7ca34c1b.setIcon(icon_6082577460384c1d9ad0633ff31dc175);
var marker_cf02739414e5e70df999d7536fc56ed2 = L.marker(
[26.30718228614911, 50.21195976041559],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_411b68d77502b384badd229f7cd7786b = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_48d6dbef04205e20b7dc8f370cf1fa41 = L.popup({
"maxWidth": 320,
});
var html_db3d10f6f1bdf1a850c7b384db1a04ac = $(`<div id="html_db3d10f6f1bdf1a850c7b384db1a04ac" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة واحة المعمار للمقاولات</b><br> الرقم الموحد: 7035146559<br> السجل التجاري: 2051247508<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30718228614911,50.21195976041559" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_48d6dbef04205e20b7dc8f370cf1fa41.setContent(html_db3d10f6f1bdf1a850c7b384db1a04ac);
marker_cf02739414e5e70df999d7536fc56ed2.bindPopup(popup_48d6dbef04205e20b7dc8f370cf1fa41)
;
marker_cf02739414e5e70df999d7536fc56ed2.setIcon(icon_411b68d77502b384badd229f7cd7786b);
var marker_4c0112b14a37d4361ac1dfea65311bdf = L.marker(
[26.30793097, 50.21140663],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_b1bc3637026b3cfe79650fe5774f6179 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_11b92ab7cac686d3a6d95cccd89f0cc7 = L.popup({
"maxWidth": 320,
});
var html_d7dc9e2f079f0b2d02029bb35c8ebf97 = $(`<div id="html_d7dc9e2f079f0b2d02029bb35c8ebf97" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سرجنت آند لاندي السعودية</b><br> الرقم الموحد: 7011042913<br> السجل التجاري: 2051223597<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30793097,50.21140663" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_11b92ab7cac686d3a6d95cccd89f0cc7.setContent(html_d7dc9e2f079f0b2d02029bb35c8ebf97);
marker_4c0112b14a37d4361ac1dfea65311bdf.bindPopup(popup_11b92ab7cac686d3a6d95cccd89f0cc7)
;
marker_4c0112b14a37d4361ac1dfea65311bdf.setIcon(icon_b1bc3637026b3cfe79650fe5774f6179);
var marker_8323d079142d3a9c7f0310c5e33ce96f = L.marker(
[26.30795865, 50.21149153],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_3521df2e3d3f1ed90bb81937a82f666b = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7550b78e3b859d52cc48fde688ab12bf = L.popup({
"maxWidth": 320,
});
var html_b5a63363da3b94e54b3a26352755eee3 = $(`<div id="html_b5a63363da3b94e54b3a26352755eee3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة هايدراتايت العربية المحدودة</b><br> الرقم الموحد: 7004716572<br> السجل التجاري: 2050118111<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30795865,50.21149153" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7550b78e3b859d52cc48fde688ab12bf.setContent(html_b5a63363da3b94e54b3a26352755eee3);
marker_8323d079142d3a9c7f0310c5e33ce96f.bindPopup(popup_7550b78e3b859d52cc48fde688ab12bf)
;
marker_8323d079142d3a9c7f0310c5e33ce96f.setIcon(icon_3521df2e3d3f1ed90bb81937a82f666b);
var marker_8393f599cdcb54e3a9954af95b0c7024 = L.marker(
[26.30796750322939, 50.21143462372515],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_a84b8ecd855770bd8600977eccf527ba = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bef919c5f0eda43caebd1d6469c0c9f5 = L.popup({
"maxWidth": 320,
});
var html_9ad4a08a759d9c0df5e902ad0021dc8f = $(`<div id="html_9ad4a08a759d9c0df5e902ad0021dc8f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تجهيز حقول النفط السعودية</b><br> الرقم الموحد: 7003529075<br> السجل التجاري: 2051062930<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30796750322939,50.21143462372515" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bef919c5f0eda43caebd1d6469c0c9f5.setContent(html_9ad4a08a759d9c0df5e902ad0021dc8f);
marker_8393f599cdcb54e3a9954af95b0c7024.bindPopup(popup_bef919c5f0eda43caebd1d6469c0c9f5)
;
marker_8393f599cdcb54e3a9954af95b0c7024.setIcon(icon_a84b8ecd855770bd8600977eccf527ba);
var marker_5bb88fd170bdc9d5139c6532b483900c = L.marker(
[26.30804595079031, 50.21119606944812],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_4270ee6ac6e71ac73b1c930573b9220c = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_07f2851a3ed362162d4635fa04c7ee98 = L.popup({
"maxWidth": 320,
});
var html_71527f4255c25309f35d5cff31996911 = $(`<div id="html_71527f4255c25309f35d5cff31996911" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ايه بي اس كوالتي إفاليويشنز</b><br> الرقم الموحد: 7029776601<br> السجل التجاري: 2051242333<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30804595079031,50.21119606944812" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_07f2851a3ed362162d4635fa04c7ee98.setContent(html_71527f4255c25309f35d5cff31996911);
marker_5bb88fd170bdc9d5139c6532b483900c.bindPopup(popup_07f2851a3ed362162d4635fa04c7ee98)
;
marker_5bb88fd170bdc9d5139c6532b483900c.setIcon(icon_4270ee6ac6e71ac73b1c930573b9220c);
var marker_4fcacc31a71af86d210b0a010d6ca4e2 = L.marker(
[26.30841946687663, 50.21138631516662],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_1415a443c724fbb267eb3fdd517d5b78 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1991b2b0259e3877b65b4970f1982838 = L.popup({
"maxWidth": 320,
});
var html_d74fcfd4f1a786697dceafe6a5b462dd = $(`<div id="html_d74fcfd4f1a786697dceafe6a5b462dd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>ساذرلاند جلوبال سيرفسزالعربية السعودية</b><br> الرقم الموحد: 7004370776<br> السجل التجاري: 2051221833<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30841946687663,50.21138631516662" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1991b2b0259e3877b65b4970f1982838.setContent(html_d74fcfd4f1a786697dceafe6a5b462dd);
marker_4fcacc31a71af86d210b0a010d6ca4e2.bindPopup(popup_1991b2b0259e3877b65b4970f1982838)
;
marker_4fcacc31a71af86d210b0a010d6ca4e2.setIcon(icon_1415a443c724fbb267eb3fdd517d5b78);
var marker_29736b8f7dfe9131f24e42e6629f6afd = L.marker(
[26.308854382902, 50.2116164699016],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_7344d57b597d65226c69b9e067e053ec = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b0ca222edbbd8550a1c61ab77ac20061 = L.popup({
"maxWidth": 320,
});
var html_f26ead646815d35c1ae476f296dffc6c = $(`<div id="html_f26ead646815d35c1ae476f296dffc6c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دي اس في اير اند سي للخدمات</b><br> الرقم الموحد: 7001659536<br> السجل التجاري: 2051044827<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.308854382902,50.2116164699016" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b0ca222edbbd8550a1c61ab77ac20061.setContent(html_f26ead646815d35c1ae476f296dffc6c);
marker_29736b8f7dfe9131f24e42e6629f6afd.bindPopup(popup_b0ca222edbbd8550a1c61ab77ac20061)
;
marker_29736b8f7dfe9131f24e42e6629f6afd.setIcon(icon_7344d57b597d65226c69b9e067e053ec);
var marker_63a62fa7f4d9c54c4e34c0d7eea28843 = L.marker(
[26.311822423490902, 50.2120224771944],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_0e677836a2743874e0b10fa296bdae0e = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6df0fc044673e1fc7c824a787808d348 = L.popup({
"maxWidth": 320,
});
var html_1c18a9ad2aaef9f907c472678f8e9a17 = $(`<div id="html_1c18a9ad2aaef9f907c472678f8e9a17" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فلور العربية</b><br> الرقم الموحد: 7000127949<br> السجل التجاري: 2051002374<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3117624234909,50.2120224771944" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6df0fc044673e1fc7c824a787808d348.setContent(html_1c18a9ad2aaef9f907c472678f8e9a17);
marker_63a62fa7f4d9c54c4e34c0d7eea28843.bindPopup(popup_6df0fc044673e1fc7c824a787808d348)
;
marker_63a62fa7f4d9c54c4e34c0d7eea28843.setIcon(icon_0e677836a2743874e0b10fa296bdae0e);
var marker_8082fa1e4c3fea70dbee6acbe6bad3d6 = L.marker(
[26.3117024234909, 50.2120224771944],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_af38123a99ef82d83ee73dfc6ec837fd = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_172083c154f4cb7b27e68a23b9259b4e = L.popup({
"maxWidth": 320,
});
var html_00293409a95f28dbc9cb2a137505cbd1 = $(`<div id="html_00293409a95f28dbc9cb2a137505cbd1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الحفر والخدمات البترولية المحدودة</b><br> الرقم الموحد: 7001384317<br> السجل التجاري: 2051021506<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3117624234909,50.2120224771944" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_172083c154f4cb7b27e68a23b9259b4e.setContent(html_00293409a95f28dbc9cb2a137505cbd1);
marker_8082fa1e4c3fea70dbee6acbe6bad3d6.bindPopup(popup_172083c154f4cb7b27e68a23b9259b4e)
;
marker_8082fa1e4c3fea70dbee6acbe6bad3d6.setIcon(icon_af38123a99ef82d83ee73dfc6ec837fd);
var marker_e70e14d75c48e2ec2c313fdd168335ae = L.marker(
[26.31181253275561, 50.21205997493312],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_1f7d9b9a7d6e7948c753c84e9e7d7e93 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0313481309f4bd8b6e314101516fc581 = L.popup({
"maxWidth": 320,
});
var html_bc583634fefbc10020c0bd54a8ca8005 = $(`<div id="html_bc583634fefbc10020c0bd54a8ca8005" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>سيمنس موبيليتي السعودية المحدودة</b><br> الرقم الموحد: 7011052425<br> السجل التجاري: 2051225259<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31181253275561,50.21205997493312" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0313481309f4bd8b6e314101516fc581.setContent(html_bc583634fefbc10020c0bd54a8ca8005);
marker_e70e14d75c48e2ec2c313fdd168335ae.bindPopup(popup_0313481309f4bd8b6e314101516fc581)
;
marker_e70e14d75c48e2ec2c313fdd168335ae.setIcon(icon_1f7d9b9a7d6e7948c753c84e9e7d7e93);
var marker_e4b825cd90da356f735db5475fb2c071 = L.marker(
[26.31188562, 50.21197419],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_866d2e64730dc6f1f061b33f4b330c61 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9d4789a96301c83571238a7c19def827 = L.popup({
"maxWidth": 320,
});
var html_84b868d9dc6d4b3da5098bdfcd7548eb = $(`<div id="html_84b868d9dc6d4b3da5098bdfcd7548eb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>ايس ري جالاجر العربية لوساطة إعادة</b><br> الرقم الموحد: 7023547347<br> السجل التجاري: 2051235648<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31188562,50.21197419" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9d4789a96301c83571238a7c19def827.setContent(html_84b868d9dc6d4b3da5098bdfcd7548eb);
marker_e4b825cd90da356f735db5475fb2c071.bindPopup(popup_9d4789a96301c83571238a7c19def827)
;
marker_e4b825cd90da356f735db5475fb2c071.setIcon(icon_866d2e64730dc6f1f061b33f4b330c61);
var marker_7c4c776b49f85978395e92785fdf7170 = L.marker(
[26.31188832274158, 50.21213202447464],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_0901a36476bb838b16834a3b3bb4d09f = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d93a2310aa8bbb41b9c1000ff47dd833 = L.popup({
"maxWidth": 320,
});
var html_8fb16dad418856dec5befeecba386d32 = $(`<div id="html_8fb16dad418856dec5befeecba386d32" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة غاب للإنشاءات والاستثمارات</b><br> الرقم الموحد: 7038033093<br> السجل التجاري: 2052104512<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31188832274158,50.21213202447464" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d93a2310aa8bbb41b9c1000ff47dd833.setContent(html_8fb16dad418856dec5befeecba386d32);
marker_7c4c776b49f85978395e92785fdf7170.bindPopup(popup_d93a2310aa8bbb41b9c1000ff47dd833)
;
marker_7c4c776b49f85978395e92785fdf7170.setIcon(icon_0901a36476bb838b16834a3b3bb4d09f);
var marker_e19911c4ddb0c7405406a2771bdf147c = L.marker(
[26.31188965, 50.21228027],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_73343c13a4669f5c611be75974acfdd3 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5dcb012458595fc1419d0cad674641af = L.popup({
"maxWidth": 320,
});
var html_aa6a5d43b397faa2710e64502f4288c5 = $(`<div id="html_aa6a5d43b397faa2710e64502f4288c5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة ناصر محمد البداح وشريكه</b><br> الرقم الموحد: 7015524593<br> السجل التجاري: 2051226748<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31188965,50.21228027" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5dcb012458595fc1419d0cad674641af.setContent(html_aa6a5d43b397faa2710e64502f4288c5);
marker_e19911c4ddb0c7405406a2771bdf147c.bindPopup(popup_5dcb012458595fc1419d0cad674641af)
;
marker_e19911c4ddb0c7405406a2771bdf147c.setIcon(icon_73343c13a4669f5c611be75974acfdd3);
var marker_6dce0768b08cdb7189243aac3d649f7e = L.marker(
[26.31234149, 50.21618395],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_228a6eb2254f344bd6716f9a6a63b284 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d07b28ed415df94ea64c28a5e0dd9bac = L.popup({
"maxWidth": 320,
});
var html_5952d249a0588c50a9cc10aa9467bb89 = $(`<div id="html_5952d249a0588c50a9cc10aa9467bb89" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ايرام العربية المحدودة</b><br> الرقم الموحد: 7010455611<br> السجل التجاري: 2051035310<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31234149,50.21618395" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d07b28ed415df94ea64c28a5e0dd9bac.setContent(html_5952d249a0588c50a9cc10aa9467bb89);
marker_6dce0768b08cdb7189243aac3d649f7e.bindPopup(popup_d07b28ed415df94ea64c28a5e0dd9bac)
;
marker_6dce0768b08cdb7189243aac3d649f7e.setIcon(icon_228a6eb2254f344bd6716f9a6a63b284);
var marker_7ca72e4b81280265a29a45a36bcf951b = L.marker(
[26.31239287, 50.21670307],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_6fb9a2ea505fe16e630e5a1610286c8b = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_31ac7921d935520fce95c48fe8e517eb = L.popup({
"maxWidth": 320,
});
var html_651250e17723346da07a4ce2d5755eb2 = $(`<div id="html_651250e17723346da07a4ce2d5755eb2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أرك سي العربية الخضراء للخدمات</b><br> الرقم الموحد: 7023664712<br> السجل التجاري: 2051235814<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31239287,50.21670307" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_31ac7921d935520fce95c48fe8e517eb.setContent(html_651250e17723346da07a4ce2d5755eb2);
marker_7ca72e4b81280265a29a45a36bcf951b.bindPopup(popup_31ac7921d935520fce95c48fe8e517eb)
;
marker_7ca72e4b81280265a29a45a36bcf951b.setIcon(icon_6fb9a2ea505fe16e630e5a1610286c8b);
var marker_28e463df0301d662ac30df9ae2c0568a = L.marker(
[26.31265762, 50.21638857],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_52ebe4625f24a9342261e3d3cc2b612f = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_665bed652ad5261c866f6a5acb4a9145 = L.popup({
"maxWidth": 320,
});
var html_034b69f654035e73dd414582d6ed1aaa = $(`<div id="html_034b69f654035e73dd414582d6ed1aaa" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة التونسية السعودية للمشاريع</b><br> الرقم الموحد: 7001650568<br> السجل التجاري: 2051044319<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31265762,50.21638857" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_665bed652ad5261c866f6a5acb4a9145.setContent(html_034b69f654035e73dd414582d6ed1aaa);
marker_28e463df0301d662ac30df9ae2c0568a.bindPopup(popup_665bed652ad5261c866f6a5acb4a9145)
;
marker_28e463df0301d662ac30df9ae2c0568a.setIcon(icon_52ebe4625f24a9342261e3d3cc2b612f);
var marker_4b3f13c1169b415109e6daefb11b0976 = L.marker(
[26.3153164, 50.21602298],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_0ee24165ee61f90cc35a69b6e8db559e = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d4e5a1a7474a084292c3973a6df6063f = L.popup({
"maxWidth": 320,
});
var html_7a80ec38f368d7c33ea1ad6c5dcb6934 = $(`<div id="html_7a80ec38f368d7c33ea1ad6c5dcb6934" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة تكنيب انردجيز إيتالي أس بي أيه</b><br> الرقم الموحد: 7010480890<br> السجل التجاري: 2051063932<br> المنطقة: الخبر<br> الحارة: البندرية<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3153164,50.21602298" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d4e5a1a7474a084292c3973a6df6063f.setContent(html_7a80ec38f368d7c33ea1ad6c5dcb6934);
marker_4b3f13c1169b415109e6daefb11b0976.bindPopup(popup_d4e5a1a7474a084292c3973a6df6063f)
;
marker_4b3f13c1169b415109e6daefb11b0976.setIcon(icon_0ee24165ee61f90cc35a69b6e8db559e);
var marker_68c9f95d8c926903739c9a26b7ae3ca1 = L.marker(
[26.27080353, 50.21674831],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_69dd71218fe7bfe67528e75037a0ab08 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fb042243b832d0f2ca7d4728d266dc99 = L.popup({
"maxWidth": 320,
});
var html_73ee51f093551e8b5bc2f814bbb3292a = $(`<div id="html_73ee51f093551e8b5bc2f814bbb3292a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المركز الألماني الطبي شركة شخص واحد</b><br> الرقم الموحد: 7006030956<br> السجل التجاري: 2051224721<br> المنطقة: الخبر<br> الحارة: الساحل<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.27080353,50.21674831" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fb042243b832d0f2ca7d4728d266dc99.setContent(html_73ee51f093551e8b5bc2f814bbb3292a);
marker_68c9f95d8c926903739c9a26b7ae3ca1.bindPopup(popup_fb042243b832d0f2ca7d4728d266dc99)
;
marker_68c9f95d8c926903739c9a26b7ae3ca1.setIcon(icon_69dd71218fe7bfe67528e75037a0ab08);
var marker_bb3e9aae7604d5c2a36cd9b3becb4ee2 = L.marker(
[26.3069996271857, 50.219993364401],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_9d8ac81c42d03f3575bbba4f705b38fb = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_eab228d17e6badbcc4e0e78a43106e8f = L.popup({
"maxWidth": 320,
});
var html_5b4fa2cd72fd13cfe2dc8b34de0fe1af = $(`<div id="html_5b4fa2cd72fd13cfe2dc8b34de0fe1af" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة العربية لتغليف الانابيب</b><br> الرقم الموحد: 7001351761<br> السجل التجاري: 2051014544<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3069996271857,50.219993364401" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_eab228d17e6badbcc4e0e78a43106e8f.setContent(html_5b4fa2cd72fd13cfe2dc8b34de0fe1af);
marker_bb3e9aae7604d5c2a36cd9b3becb4ee2.bindPopup(popup_eab228d17e6badbcc4e0e78a43106e8f)
;
marker_bb3e9aae7604d5c2a36cd9b3becb4ee2.setIcon(icon_9d8ac81c42d03f3575bbba4f705b38fb);
var marker_0bf33ba145b1492b0981d78a880fae58 = L.marker(
[26.30903528, 50.2212042],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_e8a51805191930de739e0efe103f50ac = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4ce298024c710f8c7b07a8dd18243da2 = L.popup({
"maxWidth": 320,
});
var html_5eea08af5731734693e6f17459770445 = $(`<div id="html_5eea08af5731734693e6f17459770445" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أيه سي إي تي سوليوشنز إل إل سي</b><br> الرقم الموحد: 7028074487<br> السجل التجاري: 2051240339<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30903528,50.2212042" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4ce298024c710f8c7b07a8dd18243da2.setContent(html_5eea08af5731734693e6f17459770445);
marker_0bf33ba145b1492b0981d78a880fae58.bindPopup(popup_4ce298024c710f8c7b07a8dd18243da2)
;
marker_0bf33ba145b1492b0981d78a880fae58.setIcon(icon_e8a51805191930de739e0efe103f50ac);
var marker_ff1cb3707c0fdd6b6b467e000eed90a9 = L.marker(
[26.30920469262677, 50.22335002844974],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_180475bceac6c55c058f0981cb3164eb = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4e4a2a12b6bb32296ae919dfc95de931 = L.popup({
"maxWidth": 320,
});
var html_27860b8b90793a3c10f37e2dcb04113c = $(`<div id="html_27860b8b90793a3c10f37e2dcb04113c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة اونور المساهمة للمقاولات</b><br> الرقم الموحد: 7032502721<br> السجل التجاري: 2051245520<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30920469262677,50.22335002844974" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4e4a2a12b6bb32296ae919dfc95de931.setContent(html_27860b8b90793a3c10f37e2dcb04113c);
marker_ff1cb3707c0fdd6b6b467e000eed90a9.bindPopup(popup_4e4a2a12b6bb32296ae919dfc95de931)
;
marker_ff1cb3707c0fdd6b6b467e000eed90a9.setIcon(icon_180475bceac6c55c058f0981cb3164eb);
var marker_b17f6d0f8f814bb3a1d202042a56b560 = L.marker(
[26.30950312, 50.22357019],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_5487978775c85ef40711fb18a8a56f0f = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a38694c78ed5e89d7c82ee90ade17271 = L.popup({
"maxWidth": 320,
});
var html_b4dfefab505a09c8e48b06159867a796 = $(`<div id="html_b4dfefab505a09c8e48b06159867a796" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فايفز العربية</b><br> الرقم الموحد: 7001634448<br> السجل التجاري: 2051044233<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30950312,50.22357019" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a38694c78ed5e89d7c82ee90ade17271.setContent(html_b4dfefab505a09c8e48b06159867a796);
marker_b17f6d0f8f814bb3a1d202042a56b560.bindPopup(popup_a38694c78ed5e89d7c82ee90ade17271)
;
marker_b17f6d0f8f814bb3a1d202042a56b560.setIcon(icon_5487978775c85ef40711fb18a8a56f0f);
var marker_63f2adce95d0e5c45bca6aa56144001a = L.marker(
[26.30952651, 50.22178235],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_5e9bac2d31dcdbb1e0ec756346a2b496 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_10164459f332a67301334ecb3deac3d2 = L.popup({
"maxWidth": 320,
});
var html_63d76b1eca709fcd51d161ec39c951fc = $(`<div id="html_63d76b1eca709fcd51d161ec39c951fc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة شاينابتروليم بايبلاين انجينرينغ</b><br> الرقم الموحد: 7001629737<br> السجل التجاري: 2051062182<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30952651,50.22178235" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_10164459f332a67301334ecb3deac3d2.setContent(html_63d76b1eca709fcd51d161ec39c951fc);
marker_63f2adce95d0e5c45bca6aa56144001a.bindPopup(popup_10164459f332a67301334ecb3deac3d2)
;
marker_63f2adce95d0e5c45bca6aa56144001a.setIcon(icon_5e9bac2d31dcdbb1e0ec756346a2b496);
var marker_309f2810805a0775ab00f003b681e67a = L.marker(
[26.30956104, 50.22330599],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_f966dfa9c119409bec687596f01d34f6 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a5b8175f197e3691ae7b3a06d7cebf87 = L.popup({
"maxWidth": 320,
});
var html_2163d133cfc8dc475ce6ae59a51b6b2e = $(`<div id="html_2163d133cfc8dc475ce6ae59a51b6b2e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة زاخر مارين السعودية المحدودة</b><br> الرقم الموحد: 7009435236<br> السجل التجاري: 2051062709<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30956104,50.22330599" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a5b8175f197e3691ae7b3a06d7cebf87.setContent(html_2163d133cfc8dc475ce6ae59a51b6b2e);
marker_309f2810805a0775ab00f003b681e67a.bindPopup(popup_a5b8175f197e3691ae7b3a06d7cebf87)
;
marker_309f2810805a0775ab00f003b681e67a.setIcon(icon_f966dfa9c119409bec687596f01d34f6);
var marker_9441fc4d3adab873e013fc1fd9926dce = L.marker(
[26.30956310176006, 50.22333956751451],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_98a2385e30ac8a4b78d4cf83d5d0f770 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_989c6372cfedd724ae69ca4a58b2d4f1 = L.popup({
"maxWidth": 320,
});
var html_27ebe4a55f359c2ec1b21726b052e63e = $(`<div id="html_27ebe4a55f359c2ec1b21726b052e63e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نوبل للحفريات العربية المحدودة</b><br> الرقم الموحد: 7001352793<br> السجل التجاري: 2051014009<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30956310176006,50.22333956751451" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_989c6372cfedd724ae69ca4a58b2d4f1.setContent(html_27ebe4a55f359c2ec1b21726b052e63e);
marker_9441fc4d3adab873e013fc1fd9926dce.bindPopup(popup_989c6372cfedd724ae69ca4a58b2d4f1)
;
marker_9441fc4d3adab873e013fc1fd9926dce.setIcon(icon_98a2385e30ac8a4b78d4cf83d5d0f770);
var marker_77cff15cd224f18bcce2611767f50731 = L.marker(
[26.30958125556484, 50.22315601420067],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_13f8faceb29a2d0ae87334d941490d17 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d321b553432451bcfc07932276f0509d = L.popup({
"maxWidth": 320,
});
var html_c97cfd0703f0193807348792804c4279 = $(`<div id="html_c97cfd0703f0193807348792804c4279" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة امكان العالمية المحدودة</b><br> الرقم الموحد: 7033169645<br> السجل التجاري: 2050168697<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30958125556484,50.22315601420067" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d321b553432451bcfc07932276f0509d.setContent(html_c97cfd0703f0193807348792804c4279);
marker_77cff15cd224f18bcce2611767f50731.bindPopup(popup_d321b553432451bcfc07932276f0509d)
;
marker_77cff15cd224f18bcce2611767f50731.setIcon(icon_13f8faceb29a2d0ae87334d941490d17);
var marker_22a98c5ca1d48d1f088fe091372e467a = L.marker(
[26.30961985, 50.22334795],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_1d0b35d09545f4491fcd898bbadaf28f = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e32d31f05af41fa036ef704836727b1c = L.popup({
"maxWidth": 320,
});
var html_cdc227b73b5c3b6512855169e413bdaa = $(`<div id="html_cdc227b73b5c3b6512855169e413bdaa" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>بور العربية لحفر الابار</b><br> الرقم الموحد: 7030107747<br> السجل التجاري: 2051242722<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30961985,50.22334795" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e32d31f05af41fa036ef704836727b1c.setContent(html_cdc227b73b5c3b6512855169e413bdaa);
marker_22a98c5ca1d48d1f088fe091372e467a.bindPopup(popup_e32d31f05af41fa036ef704836727b1c)
;
marker_22a98c5ca1d48d1f088fe091372e467a.setIcon(icon_1d0b35d09545f4491fcd898bbadaf28f);
var marker_d6166b913d94e8d8eaf2b2ccf906578d = L.marker(
[26.30962785, 50.22329626],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_45ef4d6f4b130d1ab5d3788896f658a3 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_05b84ae733e5d4dd4a8d799eb9165e59 = L.popup({
"maxWidth": 320,
});
var html_72c46115de889ff4cee76e7624c66a6c = $(`<div id="html_72c46115de889ff4cee76e7624c66a6c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة اي اي اي</b><br> الرقم الموحد: 7009401493<br> السجل التجاري: 2051061310<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30962785,50.22329626" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_05b84ae733e5d4dd4a8d799eb9165e59.setContent(html_72c46115de889ff4cee76e7624c66a6c);
marker_d6166b913d94e8d8eaf2b2ccf906578d.bindPopup(popup_05b84ae733e5d4dd4a8d799eb9165e59)
;
marker_d6166b913d94e8d8eaf2b2ccf906578d.setIcon(icon_45ef4d6f4b130d1ab5d3788896f658a3);
var marker_37e14b496830c11a13092076c0fcb59e = L.marker(
[26.30969473, 50.22313531],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_5e7a6e7f1cb3e325a731573f032f8ef7 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_93e68b2910bde6464f96e5d6665096a1 = L.popup({
"maxWidth": 320,
});
var html_71a0f789d4c4330d42fbe83cc049823b = $(`<div id="html_71a0f789d4c4330d42fbe83cc049823b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كونتراك جلف ليمتد لخدمات الاعاشة</b><br> الرقم الموحد: 7009419271<br> السجل التجاري: 2051062323<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30969473,50.22313531" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_93e68b2910bde6464f96e5d6665096a1.setContent(html_71a0f789d4c4330d42fbe83cc049823b);
marker_37e14b496830c11a13092076c0fcb59e.bindPopup(popup_93e68b2910bde6464f96e5d6665096a1)
;
marker_37e14b496830c11a13092076c0fcb59e.setIcon(icon_5e7a6e7f1cb3e325a731573f032f8ef7);
var marker_cbc970c88c2fd73b60b98a97084221c8 = L.marker(
[26.3098138585841, 50.2231699511253],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_73ef3d4f2e16e6eabf9c7f5d07fa53eb = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f4bb3f1907ad6e1e482fbd2a1d065dec = L.popup({
"maxWidth": 320,
});
var html_dc3a158c2c207b9a28f01825e83374eb = $(`<div id="html_dc3a158c2c207b9a28f01825e83374eb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سي بي اي العربية</b><br> الرقم الموحد: 7001681514<br> السجل التجاري: 2050016039<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3098138585841,50.2231699511253" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f4bb3f1907ad6e1e482fbd2a1d065dec.setContent(html_dc3a158c2c207b9a28f01825e83374eb);
marker_cbc970c88c2fd73b60b98a97084221c8.bindPopup(popup_f4bb3f1907ad6e1e482fbd2a1d065dec)
;
marker_cbc970c88c2fd73b60b98a97084221c8.setIcon(icon_73ef3d4f2e16e6eabf9c7f5d07fa53eb);
var marker_f2d1e015ad431c90f45747b05f7c2601 = L.marker(
[26.3098138585841, 50.2231699511254],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_ffe119d79cc3bf9010be06711afb271e = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5fbf5c231b26da96ffea78780f829fc5 = L.popup({
"maxWidth": 320,
});
var html_1b2f25a16b87e9e2d3a19c3fb6eb194d = $(`<div id="html_1b2f25a16b87e9e2d3a19c3fb6eb194d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سي بي آي العربية المحدودة</b><br> الرقم الموحد: 7000061379<br> السجل التجاري: 2051049628<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3098138585841,50.2231699511254" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5fbf5c231b26da96ffea78780f829fc5.setContent(html_1b2f25a16b87e9e2d3a19c3fb6eb194d);
marker_f2d1e015ad431c90f45747b05f7c2601.bindPopup(popup_5fbf5c231b26da96ffea78780f829fc5)
;
marker_f2d1e015ad431c90f45747b05f7c2601.setIcon(icon_ffe119d79cc3bf9010be06711afb271e);
var marker_6c594f79f9108cc79a303139d0aa6b91 = L.marker(
[26.30987386, 50.22316995],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_56e48a58b97b40f749c13c0cee31e7cf = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_67a4a7113df513ab17df6f42df62312d = L.popup({
"maxWidth": 320,
});
var html_ed457069268428e6f590e0cd54e71ca2 = $(`<div id="html_ed457069268428e6f590e0cd54e71ca2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة شاينا هاربور انجنيرنج العربية</b><br> الرقم الموحد: 7001531016<br> السجل التجاري: 2051035332<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30981386,50.22316995" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_67a4a7113df513ab17df6f42df62312d.setContent(html_ed457069268428e6f590e0cd54e71ca2);
marker_6c594f79f9108cc79a303139d0aa6b91.bindPopup(popup_67a4a7113df513ab17df6f42df62312d)
;
marker_6c594f79f9108cc79a303139d0aa6b91.setIcon(icon_56e48a58b97b40f749c13c0cee31e7cf);
var marker_0496237a1eca4f259d551290c5a97aae = L.marker(
[26.30978386, 50.22322191152423],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_054332834e6c3abb271f4044b16dc810 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a0075e7935fb281df2da3b51cfa096db = L.popup({
"maxWidth": 320,
});
var html_7b8dba9d57fc599d153a5f4b81920bf1 = $(`<div id="html_7b8dba9d57fc599d153a5f4b81920bf1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سيجليك السعودية المحدودة</b><br> الرقم الموحد: 7001638589<br> السجل التجاري: 2051043185<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30981386,50.22316995" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a0075e7935fb281df2da3b51cfa096db.setContent(html_7b8dba9d57fc599d153a5f4b81920bf1);
marker_0496237a1eca4f259d551290c5a97aae.bindPopup(popup_a0075e7935fb281df2da3b51cfa096db)
;
marker_0496237a1eca4f259d551290c5a97aae.setIcon(icon_054332834e6c3abb271f4044b16dc810);
var marker_29febbd98e9832b6317a630be996fb03 = L.marker(
[26.30978386, 50.22311798847577],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_c0e1e4711d8129493052e46c2b47c15d = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ea99763cb53a9c94e21353e2697b21ef = L.popup({
"maxWidth": 320,
});
var html_d74cf69d02a051fa822729fa981da565 = $(`<div id="html_d74cf69d02a051fa822729fa981da565" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سابورا السعودية العربية</b><br> الرقم الموحد: 7007884906<br> السجل التجاري: 2051064943<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.30981386,50.22316995" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ea99763cb53a9c94e21353e2697b21ef.setContent(html_d74cf69d02a051fa822729fa981da565);
marker_29febbd98e9832b6317a630be996fb03.bindPopup(popup_ea99763cb53a9c94e21353e2697b21ef)
;
marker_29febbd98e9832b6317a630be996fb03.setIcon(icon_c0e1e4711d8129493052e46c2b47c15d);
var marker_89ea3d8af1f00297c01aaa68afade763 = L.marker(
[26.31063621, 50.21747655],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_f0a4cde171a00ac8c5d9fff3b78a4a74 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ca25caa6858383cb150562ba367914fd = L.popup({
"maxWidth": 320,
});
var html_f161efda321dbc011c13366da19d30d9 = $(`<div id="html_f161efda321dbc011c13366da19d30d9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة الاتحاد للطيران</b><br> الرقم الموحد: 7001504153<br> السجل التجاري: 2051032720<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31063621,50.21747655" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ca25caa6858383cb150562ba367914fd.setContent(html_f161efda321dbc011c13366da19d30d9);
marker_89ea3d8af1f00297c01aaa68afade763.bindPopup(popup_ca25caa6858383cb150562ba367914fd)
;
marker_89ea3d8af1f00297c01aaa68afade763.setIcon(icon_f0a4cde171a00ac8c5d9fff3b78a4a74);
var marker_7902a4305125ba5f8df54113e2e49853 = L.marker(
[26.31076773, 50.21761997],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_3aaa985fb66def2ee20ebfaebe06aca0 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1c800a7cc947c4540c17aa329bd23f35 = L.popup({
"maxWidth": 320,
});
var html_d7a3d342a9a8c9c987520599dab02ddb = $(`<div id="html_d7a3d342a9a8c9c987520599dab02ddb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المير السعودية للخدمات الفنية</b><br> الرقم الموحد: 7011011306<br> السجل التجاري: 2051039107<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31076773,50.21761997" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1c800a7cc947c4540c17aa329bd23f35.setContent(html_d7a3d342a9a8c9c987520599dab02ddb);
marker_7902a4305125ba5f8df54113e2e49853.bindPopup(popup_1c800a7cc947c4540c17aa329bd23f35)
;
marker_7902a4305125ba5f8df54113e2e49853.setIcon(icon_3aaa985fb66def2ee20ebfaebe06aca0);
var marker_09f84451230ba30c93b7b8300226e419 = L.marker(
[26.3110126896522, 50.2230456192542],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_df6ba56a8ca6a8ae15cbda262083afc4 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b79cbf7b4f027017b93f0214d4566eed = L.popup({
"maxWidth": 320,
});
var html_b278515d0d7e74bfd8da501670f9ee0d = $(`<div id="html_b278515d0d7e74bfd8da501670f9ee0d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عبدالغفار عبدالرحيم الكوهجي وشركاه للمقاولات المحدودة</b><br> الرقم الموحد: 7011209470<br> السجل التجاري: 1010439323<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3110126896522,50.2230456192542" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b79cbf7b4f027017b93f0214d4566eed.setContent(html_b278515d0d7e74bfd8da501670f9ee0d);
marker_09f84451230ba30c93b7b8300226e419.bindPopup(popup_b79cbf7b4f027017b93f0214d4566eed)
;
marker_09f84451230ba30c93b7b8300226e419.setIcon(icon_df6ba56a8ca6a8ae15cbda262083afc4);
var marker_a5f3ea1a7f71639d408d55a3953a7252 = L.marker(
[26.31111698, 50.219701],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_8a9baf21e6eb5c8dc906af583d73d218 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f14aab812652f78c2bfeca814ae578c6 = L.popup({
"maxWidth": 320,
});
var html_5b07fa51af1ee24c513931cb3de0e411 = $(`<div id="html_5b07fa51af1ee24c513931cb3de0e411" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة العربية السعوديه للتأمين التعاوني</b><br> الرقم الموحد: 7001539720<br> السجل التجاري: 1010237214<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31111698,50.219701" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f14aab812652f78c2bfeca814ae578c6.setContent(html_5b07fa51af1ee24c513931cb3de0e411);
marker_a5f3ea1a7f71639d408d55a3953a7252.bindPopup(popup_f14aab812652f78c2bfeca814ae578c6)
;
marker_a5f3ea1a7f71639d408d55a3953a7252.setIcon(icon_8a9baf21e6eb5c8dc906af583d73d218);
var marker_ca88c55092c02d004ab44abf90f4db21 = L.marker(
[26.31200851, 50.21780074],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_6a4fbf147a8852272f9d8c0702950e10 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b1251656405c0074ef9ca9fe63f74eab = L.popup({
"maxWidth": 320,
});
var html_92037474ef99eabb32749ec0b7861f66 = $(`<div id="html_92037474ef99eabb32749ec0b7861f66" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>سبيدكاست العربية السعودية المحدودة</b><br> الرقم الموحد: 7007990067<br> السجل التجاري: 2051065390<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31200851,50.21780074" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b1251656405c0074ef9ca9fe63f74eab.setContent(html_92037474ef99eabb32749ec0b7861f66);
marker_ca88c55092c02d004ab44abf90f4db21.bindPopup(popup_b1251656405c0074ef9ca9fe63f74eab)
;
marker_ca88c55092c02d004ab44abf90f4db21.setIcon(icon_6a4fbf147a8852272f9d8c0702950e10);
var marker_cb159a2d07382c02f3534463b6312cad = L.marker(
[26.312068510505203, 50.2178007425889],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_fbf6d316fd570f1c89ead9f50815c697 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_007cd0df8b12ec1e91509cfd2f5685c4 = L.popup({
"maxWidth": 320,
});
var html_a7dfea472f25dda219da8f70d06e867c = $(`<div id="html_a7dfea472f25dda219da8f70d06e867c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ميرميد سبسي سيرفيسز السعودية</b><br> الرقم الموحد: 7001682496<br> السجل التجاري: 2051046033<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3120085105052,50.2178007425889" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_007cd0df8b12ec1e91509cfd2f5685c4.setContent(html_a7dfea472f25dda219da8f70d06e867c);
marker_cb159a2d07382c02f3534463b6312cad.bindPopup(popup_007cd0df8b12ec1e91509cfd2f5685c4)
;
marker_cb159a2d07382c02f3534463b6312cad.setIcon(icon_fbf6d316fd570f1c89ead9f50815c697);
var marker_ea9319687e44190d7f7d6cdeed0c878b = L.marker(
[26.311978510505202, 50.21785270411313],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_4bf72e21fc67e9eafedca92b36f15d33 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_928e1a6839b10def31dfdc4d55e50b3d = L.popup({
"maxWidth": 320,
});
var html_9f36f75d6b08e9f5f1185fa20eb003c5 = $(`<div id="html_9f36f75d6b08e9f5f1185fa20eb003c5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة حلول انجي المحدودة</b><br> الرقم الموحد: 7011225187<br> السجل التجاري: 2051038097<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3120085105052,50.2178007425889" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_928e1a6839b10def31dfdc4d55e50b3d.setContent(html_9f36f75d6b08e9f5f1185fa20eb003c5);
marker_ea9319687e44190d7f7d6cdeed0c878b.bindPopup(popup_928e1a6839b10def31dfdc4d55e50b3d)
;
marker_ea9319687e44190d7f7d6cdeed0c878b.setIcon(icon_4bf72e21fc67e9eafedca92b36f15d33);
var marker_765badadc9f3edf9e5d58d906bc6ed2f = L.marker(
[26.311978510505202, 50.21774878106467],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_53f2feca940959fb4235def347d747dc = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d4f7c41af06ed8e540a09867ae5abec0 = L.popup({
"maxWidth": 320,
});
var html_64684399a489184c13a17081a6d661ff = $(`<div id="html_64684399a489184c13a17081a6d661ff" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جاما الصناعية العربية المحدودة</b><br> الرقم الموحد: 7001390629<br> السجل التجاري: 2051017139<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3120085105052,50.2178007425889" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d4f7c41af06ed8e540a09867ae5abec0.setContent(html_64684399a489184c13a17081a6d661ff);
marker_765badadc9f3edf9e5d58d906bc6ed2f.bindPopup(popup_d4f7c41af06ed8e540a09867ae5abec0)
;
marker_765badadc9f3edf9e5d58d906bc6ed2f.setIcon(icon_53f2feca940959fb4235def347d747dc);
var marker_84b08ed5bc765ad4014968e6fa874bed = L.marker(
[26.31209977947452, 50.21716136304426],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_27442b8147276920b8a8270a3e2e4f11 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f64406cee5d21e0280c829e010a3088e = L.popup({
"maxWidth": 320,
});
var html_8efad533b7059b64eb5be816fb205726 = $(`<div id="html_8efad533b7059b64eb5be816fb205726" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مسافر اون لاين للسفر و السياحة شركة ذات المسؤولية المحدودة من</b><br> الرقم الموحد: 7035272348<br> السجل التجاري: 1010879695<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31209977947452,50.21716136304426" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f64406cee5d21e0280c829e010a3088e.setContent(html_8efad533b7059b64eb5be816fb205726);
marker_84b08ed5bc765ad4014968e6fa874bed.bindPopup(popup_f64406cee5d21e0280c829e010a3088e)
;
marker_84b08ed5bc765ad4014968e6fa874bed.setIcon(icon_27442b8147276920b8a8270a3e2e4f11);
var marker_dfe4d54adc35cfbb7e932cdde9c67801 = L.marker(
[26.31233759, 50.21742809],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_29ca103a5217652d9265b7ba4e3261ec = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_19a122d10006a1b1c15cc4fa0add01aa = L.popup({
"maxWidth": 320,
});
var html_53350ecf786f3c2901e85022fd19b10b = $(`<div id="html_53350ecf786f3c2901e85022fd19b10b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة إنترويل السعودية المحدودة</b><br> الرقم الموحد: 7015505584<br> السجل التجاري: 2051226704<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31233759,50.21742809" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_19a122d10006a1b1c15cc4fa0add01aa.setContent(html_53350ecf786f3c2901e85022fd19b10b);
marker_dfe4d54adc35cfbb7e932cdde9c67801.bindPopup(popup_19a122d10006a1b1c15cc4fa0add01aa)
;
marker_dfe4d54adc35cfbb7e932cdde9c67801.setIcon(icon_29ca103a5217652d9265b7ba4e3261ec);
var marker_6b8c75dd4e97146d58052b6abc1ac9ef = L.marker(
[26.31402781, 50.22246636],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_eef681dd173eec493031465985f15fd4 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_531544503afed00983f108e55f107c3e = L.popup({
"maxWidth": 320,
});
var html_c291f51f04ca1156d7c3bc2411650a10 = $(`<div id="html_c291f51f04ca1156d7c3bc2411650a10" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة متجر الميناء المحدودة</b><br> الرقم الموحد: 7011030025<br> السجل التجاري: 2051007231<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31402781,50.22246636" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_531544503afed00983f108e55f107c3e.setContent(html_c291f51f04ca1156d7c3bc2411650a10);
marker_6b8c75dd4e97146d58052b6abc1ac9ef.bindPopup(popup_531544503afed00983f108e55f107c3e)
;
marker_6b8c75dd4e97146d58052b6abc1ac9ef.setIcon(icon_eef681dd173eec493031465985f15fd4);
var marker_f45b1e44b5fe9df82fd24d92dd488a69 = L.marker(
[26.3146308585261, 50.2223647809643],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_7006473cbe77dce9097c85f9316aea95 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7fae80c1d455a6f93b4765b08d7771ee = L.popup({
"maxWidth": 320,
});
var html_f91d1222ec259b4af0fcb458e7d0f09c = $(`<div id="html_f91d1222ec259b4af0fcb458e7d0f09c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة هونداي للهندسة و الإنشاءات</b><br> الرقم الموحد: 7000127717<br> السجل التجاري: 2051041774<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3146308585261,50.2223647809643" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7fae80c1d455a6f93b4765b08d7771ee.setContent(html_f91d1222ec259b4af0fcb458e7d0f09c);
marker_f45b1e44b5fe9df82fd24d92dd488a69.bindPopup(popup_7fae80c1d455a6f93b4765b08d7771ee)
;
marker_f45b1e44b5fe9df82fd24d92dd488a69.setIcon(icon_7006473cbe77dce9097c85f9316aea95);
var marker_63dd9c197372795ba82962e70b35b865 = L.marker(
[26.314690860000002, 50.22236478],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_954a7f92a24b00a004a8a9f4483e2b7e = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_56f7427009d260891f182a51cd5dd46c = L.popup({
"maxWidth": 320,
});
var html_b828113fa2f992ffefabf37652e5dad9 = $(`<div id="html_b828113fa2f992ffefabf37652e5dad9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الشرق الاوسط للهندسة والتنمية</b><br> الرقم الموحد: 7000648100<br> السجل التجاري: 1010086434<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31463086,50.22236478" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_56f7427009d260891f182a51cd5dd46c.setContent(html_b828113fa2f992ffefabf37652e5dad9);
marker_63dd9c197372795ba82962e70b35b865.bindPopup(popup_56f7427009d260891f182a51cd5dd46c)
;
marker_63dd9c197372795ba82962e70b35b865.setIcon(icon_954a7f92a24b00a004a8a9f4483e2b7e);
var marker_4fba0df9349a3228f49fd04376e13878 = L.marker(
[26.31457086, 50.22236478],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_53049b38d751dfd5cd5f976efa5a229e = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_23f102639fbc5b98230748284a2e688d = L.popup({
"maxWidth": 320,
});
var html_5e8bb843e473bdce77ec8cb1402ae25a = $(`<div id="html_5e8bb843e473bdce77ec8cb1402ae25a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>سوبيريو أنرجي سرفيسيز السعودية المحدودة</b><br> الرقم الموحد: 7009308565<br> السجل التجاري: 2051058334<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31463086,50.22236478" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_23f102639fbc5b98230748284a2e688d.setContent(html_5e8bb843e473bdce77ec8cb1402ae25a);
marker_4fba0df9349a3228f49fd04376e13878.bindPopup(popup_23f102639fbc5b98230748284a2e688d)
;
marker_4fba0df9349a3228f49fd04376e13878.setIcon(icon_53049b38d751dfd5cd5f976efa5a229e);
var marker_5a2fad950741ff9067a5422f37d9f000 = L.marker(
[26.31492469811309, 50.22256194283136],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_7c04cf397fdb6eb52cdc71ac06847376 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_591be18c5a7ad97cdc18ed0e70776e36 = L.popup({
"maxWidth": 320,
});
var html_8585365884e27c89890e22e29ebb1564 = $(`<div id="html_8585365884e27c89890e22e29ebb1564" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>أس جي سي العربية المحدودة</b><br> الرقم الموحد: 7037013849<br> السجل التجاري: 2051251234<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31492469811309,50.22256194283136" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_591be18c5a7ad97cdc18ed0e70776e36.setContent(html_8585365884e27c89890e22e29ebb1564);
marker_5a2fad950741ff9067a5422f37d9f000.bindPopup(popup_591be18c5a7ad97cdc18ed0e70776e36)
;
marker_5a2fad950741ff9067a5422f37d9f000.setIcon(icon_7c04cf397fdb6eb52cdc71ac06847376);
var marker_cb95f6b99b87653f83eafa3261c60fab = L.marker(
[26.31498188, 50.2229284],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_496cbfe9d850732a6a7f8d5d93580366 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ebd8e87d180f47141861a0eb576239b2 = L.popup({
"maxWidth": 320,
});
var html_653ef3e1551ac04a9ae53adb972227f4 = $(`<div id="html_653ef3e1551ac04a9ae53adb972227f4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تشاينا ناشيونال كيميكال</b><br> الرقم الموحد: 7001520597<br> السجل التجاري: 2051035316<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31498188,50.2229284" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ebd8e87d180f47141861a0eb576239b2.setContent(html_653ef3e1551ac04a9ae53adb972227f4);
marker_cb95f6b99b87653f83eafa3261c60fab.bindPopup(popup_ebd8e87d180f47141861a0eb576239b2)
;
marker_cb95f6b99b87653f83eafa3261c60fab.setIcon(icon_496cbfe9d850732a6a7f8d5d93580366);
var marker_21d4bec9334ee81e05ae25e0558c19bc = L.marker(
[26.31502587, 50.22253391],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_2cd6947f7eedec03d3566ac723c578f6 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fe5dfc5f7852b9796522fda7fda878f9 = L.popup({
"maxWidth": 320,
});
var html_d7ab634c9765905801cb2fca4cc341e3 = $(`<div id="html_d7ab634c9765905801cb2fca4cc341e3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>دوماس لويد للمقاولات المحدودة</b><br> الرقم الموحد: 7001509434<br> السجل التجاري: 2051041547<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.31502587,50.22253391" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fe5dfc5f7852b9796522fda7fda878f9.setContent(html_d7ab634c9765905801cb2fca4cc341e3);
marker_21d4bec9334ee81e05ae25e0558c19bc.bindPopup(popup_fe5dfc5f7852b9796522fda7fda878f9)
;
marker_21d4bec9334ee81e05ae25e0558c19bc.setIcon(icon_2cd6947f7eedec03d3566ac723c578f6);
var marker_a013ce2f0859084d7ad05047c1738e98 = L.marker(
[26.3154988028776, 50.2222174918653],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_128bf8899798a9a41614cc289ddaa7fc = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4d74b81edda5446b43e87c2e1b510825 = L.popup({
"maxWidth": 320,
});
var html_15b9bdec9248f21d8f61dae29c287ad1 = $(`<div id="html_15b9bdec9248f21d8f61dae29c287ad1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الهلال الذهبي الطبية</b><br> الرقم الموحد: 7017882908<br> السجل التجاري: 2051231727<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3154988028776,50.2222174918653" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4d74b81edda5446b43e87c2e1b510825.setContent(html_15b9bdec9248f21d8f61dae29c287ad1);
marker_a013ce2f0859084d7ad05047c1738e98.bindPopup(popup_4d74b81edda5446b43e87c2e1b510825)
;
marker_a013ce2f0859084d7ad05047c1738e98.setIcon(icon_128bf8899798a9a41614cc289ddaa7fc);
var marker_20d89913d1fe54e91907514806759078 = L.marker(
[26.3197228780001, 50.2218955430001],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_df32f24641206c952838df99b3d05ce5 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ac4c0fa87eb48f2779f939510f4eef6e = L.popup({
"maxWidth": 320,
});
var html_4683fb0afaac070a75536ea6f70854c3 = $(`<div id="html_4683fb0afaac070a75536ea6f70854c3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فورتكس العربية المحدودة</b><br> الرقم الموحد: 7008897956<br> السجل التجاري: 2051225690<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.3197228780001,50.2218955430001" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ac4c0fa87eb48f2779f939510f4eef6e.setContent(html_4683fb0afaac070a75536ea6f70854c3);
marker_20d89913d1fe54e91907514806759078.bindPopup(popup_ac4c0fa87eb48f2779f939510f4eef6e)
;
marker_20d89913d1fe54e91907514806759078.setIcon(icon_df32f24641206c952838df99b3d05ce5);
var marker_2381e79b255273a5d94dd3f159da4130 = L.marker(
[26.32108697, 50.22118502],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_99f19f3474c91e32fcabbbf27d10ceb9 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fd3282742d06700065dc07bc73664549 = L.popup({
"maxWidth": 320,
});
var html_a4a781b37e05b674fcc01065af352118 = $(`<div id="html_a4a781b37e05b674fcc01065af352118" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>روتاري العربية المحدودة</b><br> الرقم الموحد: 7001489587<br> السجل التجاري: 2051032259<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.32108697,50.22118502" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fd3282742d06700065dc07bc73664549.setContent(html_a4a781b37e05b674fcc01065af352118);
marker_2381e79b255273a5d94dd3f159da4130.bindPopup(popup_fd3282742d06700065dc07bc73664549)
;
marker_2381e79b255273a5d94dd3f159da4130.setIcon(icon_99f19f3474c91e32fcabbbf27d10ceb9);
var marker_70de998f7e432df272379bfefc63a923 = L.marker(
[26.32130234, 50.22000727],
{
}
).addTo(map_9a0ad3292d4531c699c51fc92655250c);
var icon_fc0cdfef5e8a2a75fa38c0470343ef77 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_12d5e168c4f6c7aa56e4c0b01d2216f6 = L.popup({
"maxWidth": 320,
});
var html_c96124826014bc7dd30d8a6cec79bfc8 = $(`<div id="html_c96124826014bc7dd30d8a6cec79bfc8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة التجزئة الشرقية للموضة للملابس الجاهزة</b><br> الرقم الموحد: 7001790372<br> السجل التجاري: 2051053844<br> المنطقة: الخبر<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> عالية محمد علي الربيع<br> <a href="https://www.google.com/maps?q=26.32130234,50.22000727" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_12d5e168c4f6c7aa56e4c0b01d2216f6.setContent(html_c96124826014bc7dd30d8a6cec79bfc8);
marker_70de998f7e432df272379bfefc63a923.bindPopup(popup_12d5e168c4f6c7aa56e4c0b01d2216f6)
;
marker_70de998f7e432df272379bfefc63a923.setIcon(icon_fc0cdfef5e8a2a75fa38c0470343ef77);
</script>
</html> |