8ec69c7
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 | <!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_99dfe56902c916914afa25a048f94345 {
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_24" onclick="
var panel = document.getElementById('stats_24');
var btn = document.getElementById('btn_stats_24');
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_24" 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;
">محاسن سلطان عبدالله الأحمد - 24</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 68</div>
<div><b>عدد الحارات:</b> 3</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• المرقاب: 27</div><div>• الدانة: 25</div><div>• طيبة: 16</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_24_محاسن_سلطان_عبدالله_الأحمد.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:purple;
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:darkred;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الدانة</span>
</div>
<span style="color:#555;">(25)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:pink;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>طيبة</span>
</div>
<span style="color:#555;">(16)</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_99dfe56902c916914afa25a048f94345" ></div>
</body>
<script>
var map_99dfe56902c916914afa25a048f94345 = L.map(
"map_99dfe56902c916914afa25a048f94345",
{
center: [27.001114792140797, 49.65178851922061],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_6429e003f69e6f7cc0195e5dd8860f83 = 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_6429e003f69e6f7cc0195e5dd8860f83.addTo(map_99dfe56902c916914afa25a048f94345);
var tile_layer_65c5cce467d666ce6063d558ee58ca52 = 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_65c5cce467d666ce6063d558ee58ca52.addTo(map_99dfe56902c916914afa25a048f94345);
var tile_layer_b62b9f14bda4e9471debb184f7b86ee8 = 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_b62b9f14bda4e9471debb184f7b86ee8.addTo(map_99dfe56902c916914afa25a048f94345);
var locate_control_b88eec3bd6953ae9b255f36138c4bdb5 = L.control.locate(
{}
).addTo(map_99dfe56902c916914afa25a048f94345);
var marker_32788fd615905902a71d728c44e2b213 = L.marker(
[27.00556995129737, 49.65272114233949],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_f4379996951976a7a6ada62d69a5554c = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d9e5029fd679331f2a2b5a06ae22cd06 = L.popup({
"maxWidth": 320,
});
var html_5278e1ee1121b85d6736c07c126b436a = $(`<div id="html_5278e1ee1121b85d6736c07c126b436a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جيباس العربية للمقاولات</b><br> الرقم الموحد: 7039864942<br> السجل التجاري: 2055147161<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00556995129737,49.65272114233949" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d9e5029fd679331f2a2b5a06ae22cd06.setContent(html_5278e1ee1121b85d6736c07c126b436a);
marker_32788fd615905902a71d728c44e2b213.bindPopup(popup_d9e5029fd679331f2a2b5a06ae22cd06)
;
marker_32788fd615905902a71d728c44e2b213.setIcon(icon_f4379996951976a7a6ada62d69a5554c);
var marker_15c27017d73aa9b5c17f9ae7de7ef892 = L.marker(
[27.00887665195827, 49.6458040320173],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_3ac70e0fab753602a3a420eb9c492a06 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d60b7ad380c6b180fcaeef453b1032a5 = L.popup({
"maxWidth": 320,
});
var html_8e1beb60d2660da9434d305f084f035f = $(`<div id="html_8e1beb60d2660da9434d305f084f035f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جلف العربية انجينيرنغ اند بروجيكت</b><br> الرقم الموحد: 7034124615<br> السجل التجاري: 2055137945<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00887665195827,49.6458040320173" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d60b7ad380c6b180fcaeef453b1032a5.setContent(html_8e1beb60d2660da9434d305f084f035f);
marker_15c27017d73aa9b5c17f9ae7de7ef892.bindPopup(popup_d60b7ad380c6b180fcaeef453b1032a5)
;
marker_15c27017d73aa9b5c17f9ae7de7ef892.setIcon(icon_3ac70e0fab753602a3a420eb9c492a06);
var marker_97ec843cf92aea4fa0b850934ab4bd22 = L.marker(
[27.01516871, 49.64530493],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_59dfa2b4aa64f50e1e11af3426e4851b = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dd20611ec27696d24aa3a0e3f186ea8c = L.popup({
"maxWidth": 320,
});
var html_4e06bf7b3721b808717557aec6b1d40c = $(`<div id="html_4e06bf7b3721b808717557aec6b1d40c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ثقة العرب للتجارة</b><br> الرقم الموحد: 7006712686<br> السجل التجاري: 2055017827<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.01516871,49.64530493" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dd20611ec27696d24aa3a0e3f186ea8c.setContent(html_4e06bf7b3721b808717557aec6b1d40c);
marker_97ec843cf92aea4fa0b850934ab4bd22.bindPopup(popup_dd20611ec27696d24aa3a0e3f186ea8c)
;
marker_97ec843cf92aea4fa0b850934ab4bd22.setIcon(icon_59dfa2b4aa64f50e1e11af3426e4851b);
var marker_cddec33472f4d5400d3bf37ac70187cc = L.marker(
[27.01327799, 49.64762593],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_a2fc4181d89312a157440141bfbb0871 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5b1fdbd384dea4241e3429e90c1c36c3 = L.popup({
"maxWidth": 320,
});
var html_d5b60d4ed0986c44268040b1b90d667d = $(`<div id="html_d5b60d4ed0986c44268040b1b90d667d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تقنية المنطقة التجارية</b><br> الرقم الموحد: 7014068816<br> السجل التجاري: 2055012994<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.01327799,49.64762593" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5b1fdbd384dea4241e3429e90c1c36c3.setContent(html_d5b60d4ed0986c44268040b1b90d667d);
marker_cddec33472f4d5400d3bf37ac70187cc.bindPopup(popup_5b1fdbd384dea4241e3429e90c1c36c3)
;
marker_cddec33472f4d5400d3bf37ac70187cc.setIcon(icon_a2fc4181d89312a157440141bfbb0871);
var marker_f2d95f3ff3d335204b697b31065b9f85 = L.marker(
[27.00897299966666, 49.64609261602163],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_c70c9172d1dd4122b326a5015873fe70 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0a1dbcf7d240084b844086c473d5c9ce = L.popup({
"maxWidth": 320,
});
var html_3f9b2ea66644de84f0ea37963971d66c = $(`<div id="html_3f9b2ea66644de84f0ea37963971d66c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تضاريس باك السعودية المحدودة</b><br> الرقم الموحد: 7021903971<br> السجل التجاري: 2055130086<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00897299966666,49.64609261602163" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0a1dbcf7d240084b844086c473d5c9ce.setContent(html_3f9b2ea66644de84f0ea37963971d66c);
marker_f2d95f3ff3d335204b697b31065b9f85.bindPopup(popup_0a1dbcf7d240084b844086c473d5c9ce)
;
marker_f2d95f3ff3d335204b697b31065b9f85.setIcon(icon_c70c9172d1dd4122b326a5015873fe70);
var marker_2677c537c91d21b6da7ac999041740da = L.marker(
[27.00954117, 49.65470849],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_45267cc650d54655226ed3fea6542253 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_141a031a266c38c1393a22cee4d0b5a0 = L.popup({
"maxWidth": 320,
});
var html_f9f6552528c1ad4f838bb5607a3761e9 = $(`<div id="html_f9f6552528c1ad4f838bb5607a3761e9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بلوجلز العربية للمقاولات</b><br> الرقم الموحد: 7027477400<br> السجل التجاري: 2055132380<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00954117,49.65470849" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_141a031a266c38c1393a22cee4d0b5a0.setContent(html_f9f6552528c1ad4f838bb5607a3761e9);
marker_2677c537c91d21b6da7ac999041740da.bindPopup(popup_141a031a266c38c1393a22cee4d0b5a0)
;
marker_2677c537c91d21b6da7ac999041740da.setIcon(icon_45267cc650d54655226ed3fea6542253);
var marker_265a1420afa53cb33dd01fc611aceb4e = L.marker(
[27.01144434, 49.65113426],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_b674c544df4942803e91b818a8409252 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f8c501562147b595c3b43de11ec03c14 = L.popup({
"maxWidth": 320,
});
var html_816d6b41a150d10028b2bebf6a1cc58a = $(`<div id="html_816d6b41a150d10028b2bebf6a1cc58a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بلو ثروت العربیة المحدودة</b><br> الرقم الموحد: 7035173694<br> السجل التجاري: 2055136692<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.01144434,49.65113426" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f8c501562147b595c3b43de11ec03c14.setContent(html_816d6b41a150d10028b2bebf6a1cc58a);
marker_265a1420afa53cb33dd01fc611aceb4e.bindPopup(popup_f8c501562147b595c3b43de11ec03c14)
;
marker_265a1420afa53cb33dd01fc611aceb4e.setIcon(icon_b674c544df4942803e91b818a8409252);
var marker_2c4a5978dab9427b11d3c51131d207ce = L.marker(
[27.00586628, 49.6551144],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_690d247c10ea9dd0bc016a0fe95d8d33 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_326fe0cc63de210122737ca6e08e100e = L.popup({
"maxWidth": 320,
});
var html_6a8a50758ede1a2ba494cfb4f761d51e = $(`<div id="html_6a8a50758ede1a2ba494cfb4f761d51e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أيه أين أيى للمقاولات</b><br> الرقم الموحد: 7012112772<br> السجل التجاري: 2050028492<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00586628,49.6551144" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_326fe0cc63de210122737ca6e08e100e.setContent(html_6a8a50758ede1a2ba494cfb4f761d51e);
marker_2c4a5978dab9427b11d3c51131d207ce.bindPopup(popup_326fe0cc63de210122737ca6e08e100e)
;
marker_2c4a5978dab9427b11d3c51131d207ce.setIcon(icon_690d247c10ea9dd0bc016a0fe95d8d33);
var marker_a4c2f952d158217aab7b9a35887b74e1 = L.marker(
[27.0092596, 49.64388901],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_13a5ca4f825a9b11af11dae12e00421a = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fcb417588baa55288138d9577f2bd85b = L.popup({
"maxWidth": 320,
});
var html_8ce940018a7818ec6cc0fc8ac7cb86f1 = $(`<div id="html_8ce940018a7818ec6cc0fc8ac7cb86f1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أصباغ همبل العربية السعودية</b><br> الرقم الموحد: 7000014154<br> السجل التجاري: 2050002792<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.0092596,49.64388901" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fcb417588baa55288138d9577f2bd85b.setContent(html_8ce940018a7818ec6cc0fc8ac7cb86f1);
marker_a4c2f952d158217aab7b9a35887b74e1.bindPopup(popup_fcb417588baa55288138d9577f2bd85b)
;
marker_a4c2f952d158217aab7b9a35887b74e1.setIcon(icon_13a5ca4f825a9b11af11dae12e00421a);
var marker_1ef5e5208cfef32c4ccb68d11dce9fbf = L.marker(
[27.00418578, 49.64974976],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_f93095582a1321834a7b5ee87a2765e2 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e81b4070607c63aeafb7804a623db48d = L.popup({
"maxWidth": 320,
});
var html_5a4b82114db7983b14cb865d453502fd = $(`<div id="html_5a4b82114db7983b14cb865d453502fd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الواحة لأنظمة تحلية ومعالجة المياه</b><br> الرقم الموحد: 7013225821<br> السجل التجاري: 2055008030<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00418578,49.64974976" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e81b4070607c63aeafb7804a623db48d.setContent(html_5a4b82114db7983b14cb865d453502fd);
marker_1ef5e5208cfef32c4ccb68d11dce9fbf.bindPopup(popup_e81b4070607c63aeafb7804a623db48d)
;
marker_1ef5e5208cfef32c4ccb68d11dce9fbf.setIcon(icon_f93095582a1321834a7b5ee87a2765e2);
var marker_e4e1a754a47a1dcbf8cba13b8b29db84 = L.marker(
[27.016621, 49.65178495],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_79f95e3cd78179018485eb081dbff9b6 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_95a9cdb3d7f8813590b9e6df205a21d8 = L.popup({
"maxWidth": 320,
});
var html_b232a9e24c319cd4e1310dbe93802039 = $(`<div id="html_b232a9e24c319cd4e1310dbe93802039" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة النظام العربي للمقاولات العامة</b><br> الرقم الموحد: 7012058058<br> السجل التجاري: 2055007907<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.016621,49.65178495" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_95a9cdb3d7f8813590b9e6df205a21d8.setContent(html_b232a9e24c319cd4e1310dbe93802039);
marker_e4e1a754a47a1dcbf8cba13b8b29db84.bindPopup(popup_95a9cdb3d7f8813590b9e6df205a21d8)
;
marker_e4e1a754a47a1dcbf8cba13b8b29db84.setIcon(icon_79f95e3cd78179018485eb081dbff9b6);
var marker_dcb4ee7d541f711381c6e1f2dcb1dc26 = L.marker(
[27.0145949513826, 49.6453033088831],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_38f491dfeb0b98ae6e54999f4a5fd405 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_26707bf6da66e0368890bc98275e1847 = L.popup({
"maxWidth": 320,
});
var html_0d2316d3436fa74f80373af1fc0035a1 = $(`<div id="html_0d2316d3436fa74f80373af1fc0035a1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة النصيب العربية التجارية</b><br> الرقم الموحد: 7011937880<br> السجل التجاري: 2055015214<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.0145949513826,49.6453033088831" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_26707bf6da66e0368890bc98275e1847.setContent(html_0d2316d3436fa74f80373af1fc0035a1);
marker_dcb4ee7d541f711381c6e1f2dcb1dc26.bindPopup(popup_26707bf6da66e0368890bc98275e1847)
;
marker_dcb4ee7d541f711381c6e1f2dcb1dc26.setIcon(icon_38f491dfeb0b98ae6e54999f4a5fd405);
var marker_ae6821d5f77305a2f8672217266c70be = L.marker(
[27.01537273, 49.64309689],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_b2ab6a2586a2c1b4ce56d073e975cbed = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_998268efd503a7361e5710d23d1d0390 = L.popup({
"maxWidth": 320,
});
var html_e32e08b73933213ebe10cf75398254d7 = $(`<div id="html_e32e08b73933213ebe10cf75398254d7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المواهب الفنية للمقاولات العامة شركة شخص واحد</b><br> الرقم الموحد: 7013636332<br> السجل التجاري: 2055003454<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.01537273,49.64309689" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_998268efd503a7361e5710d23d1d0390.setContent(html_e32e08b73933213ebe10cf75398254d7);
marker_ae6821d5f77305a2f8672217266c70be.bindPopup(popup_998268efd503a7361e5710d23d1d0390)
;
marker_ae6821d5f77305a2f8672217266c70be.setIcon(icon_b2ab6a2586a2c1b4ce56d073e975cbed);
var marker_3ad7634f59485a94ff59709aac8fe03d = L.marker(
[27.01499228, 49.65187996],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_15e9928d14af5893308b9cee0956f598 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_66ac2c36ba623f88b66455fc8a1d99c3 = L.popup({
"maxWidth": 320,
});
var html_f2ec9b0fa77b3803c7e584d3c9088f68 = $(`<div id="html_f2ec9b0fa77b3803c7e584d3c9088f68" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المنطقة الذهبية للمقاولات العامة</b><br> الرقم الموحد: 7011478075<br> السجل التجاري: 2055018781<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.01499228,49.65187996" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_66ac2c36ba623f88b66455fc8a1d99c3.setContent(html_f2ec9b0fa77b3803c7e584d3c9088f68);
marker_3ad7634f59485a94ff59709aac8fe03d.bindPopup(popup_66ac2c36ba623f88b66455fc8a1d99c3)
;
marker_3ad7634f59485a94ff59709aac8fe03d.setIcon(icon_15e9928d14af5893308b9cee0956f598);
var marker_2ae2545908538d253e28e21b6e549bf9 = L.marker(
[27.01477037, 49.65189869],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_ba43765130d36eb105bfb7cc1df352fb = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7a3209a6f482c1a3f04574f5a70d9bf3 = L.popup({
"maxWidth": 320,
});
var html_518601184f390461ea5635283b16ec71 = $(`<div id="html_518601184f390461ea5635283b16ec71" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المعتقد للمقاولات</b><br> الرقم الموحد: 7006569086<br> السجل التجاري: 2055011212<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.01477037,49.65189869" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7a3209a6f482c1a3f04574f5a70d9bf3.setContent(html_518601184f390461ea5635283b16ec71);
marker_2ae2545908538d253e28e21b6e549bf9.bindPopup(popup_7a3209a6f482c1a3f04574f5a70d9bf3)
;
marker_2ae2545908538d253e28e21b6e549bf9.setIcon(icon_ba43765130d36eb105bfb7cc1df352fb);
var marker_f91817ca4ad18f94dea2a671edc9f7d4 = L.marker(
[27.00927880297341, 49.6479816455394],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_a6b5899d0937d8abda2854938a0e5789 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9a5a0d431e0042b54c870054aa71be54 = L.popup({
"maxWidth": 320,
});
var html_037ef8132109d69e66c6885e4fd2979a = $(`<div id="html_037ef8132109d69e66c6885e4fd2979a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة البلاتين كونتركتنغ المحدودة</b><br> الرقم الموحد: 7031945152<br> السجل التجاري: 2055135229<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00927880297341,49.6479816455394" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9a5a0d431e0042b54c870054aa71be54.setContent(html_037ef8132109d69e66c6885e4fd2979a);
marker_f91817ca4ad18f94dea2a671edc9f7d4.bindPopup(popup_9a5a0d431e0042b54c870054aa71be54)
;
marker_f91817ca4ad18f94dea2a671edc9f7d4.setIcon(icon_a6b5899d0937d8abda2854938a0e5789);
var marker_ad1086a881ae3516a19879be6cc7f4c1 = L.marker(
[27.01677104, 49.65189292],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_b578a595c677a9183e9a8aef01366f0e = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c4cd4d103dbdf33cd2aa3fc004a8f18c = L.popup({
"maxWidth": 320,
});
var html_267394b1821c3d35f52d3ae23420133a = $(`<div id="html_267394b1821c3d35f52d3ae23420133a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الأخضر العالمية للهندسة والمقاولات</b><br> الرقم الموحد: 7015256014<br> السجل التجاري: 2055125706<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.01677104,49.65189292" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c4cd4d103dbdf33cd2aa3fc004a8f18c.setContent(html_267394b1821c3d35f52d3ae23420133a);
marker_ad1086a881ae3516a19879be6cc7f4c1.bindPopup(popup_c4cd4d103dbdf33cd2aa3fc004a8f18c)
;
marker_ad1086a881ae3516a19879be6cc7f4c1.setIcon(icon_b578a595c677a9183e9a8aef01366f0e);
var marker_b840742e503210366669d40faf44738a = L.marker(
[27.01489944, 49.6431793],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_e87a4c711877d65e3592907de89a2efb = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7259253734e44399d4eebc5e0eabe2aa = L.popup({
"maxWidth": 320,
});
var html_d2271c01be25b279b9ab325870d7844c = $(`<div id="html_d2271c01be25b279b9ab325870d7844c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الاعوان العالمية للمقاولات</b><br> الرقم الموحد: 7006480680<br> السجل التجاري: 2055007817<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.01489944,49.6431793" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7259253734e44399d4eebc5e0eabe2aa.setContent(html_d2271c01be25b279b9ab325870d7844c);
marker_b840742e503210366669d40faf44738a.bindPopup(popup_7259253734e44399d4eebc5e0eabe2aa)
;
marker_b840742e503210366669d40faf44738a.setIcon(icon_e87a4c711877d65e3592907de89a2efb);
var marker_c7185a543721b526d4ab7b8cb4b774b2 = L.marker(
[27.01329796, 49.65416731],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_debe3c29a9f6b1fd4ffe58d5ce97544b = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_548bd791722bd3df6a1ae67c6fba77cb = L.popup({
"maxWidth": 320,
});
var html_0fb380849a5b562990a372580aef3b5d = $(`<div id="html_0fb380849a5b562990a372580aef3b5d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الابداع المستقل للمقاولات العامة</b><br> الرقم الموحد: 7013751693<br> السجل التجاري: 2055011426<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.01329796,49.65416731" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_548bd791722bd3df6a1ae67c6fba77cb.setContent(html_0fb380849a5b562990a372580aef3b5d);
marker_c7185a543721b526d4ab7b8cb4b774b2.bindPopup(popup_548bd791722bd3df6a1ae67c6fba77cb)
;
marker_c7185a543721b526d4ab7b8cb4b774b2.setIcon(icon_debe3c29a9f6b1fd4ffe58d5ce97544b);
var marker_e6e15c1028b6c828c833d65f40051071 = L.marker(
[27.0064794888357, 49.6513233889405],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_0be2563f9bd68a86aaac60072c11a927 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_af471aef611425dc4796edf7e800f761 = L.popup({
"maxWidth": 320,
});
var html_55007c9afa017bba616b773a5c7db39b = $(`<div id="html_55007c9afa017bba616b773a5c7db39b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الا محدودة التجارية</b><br> الرقم الموحد: 7014530328<br> السجل التجاري: 2055010305<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.0064794888357,49.6513233889405" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_af471aef611425dc4796edf7e800f761.setContent(html_55007c9afa017bba616b773a5c7db39b);
marker_e6e15c1028b6c828c833d65f40051071.bindPopup(popup_af471aef611425dc4796edf7e800f761)
;
marker_e6e15c1028b6c828c833d65f40051071.setIcon(icon_0be2563f9bd68a86aaac60072c11a927);
var marker_6264383d1918cc19068cb263cf381b26 = L.marker(
[27.01537339, 49.64511441],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_23512680237b31b2cf67b3f79b28cd16 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8cc645ac5670f9f91fd0442526d7a0e0 = L.popup({
"maxWidth": 320,
});
var html_de86a1ed650dfeea191e859bbeaec8f0 = $(`<div id="html_de86a1ed650dfeea191e859bbeaec8f0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة افكار العولمه التجارية</b><br> الرقم الموحد: 7015553030<br> السجل التجاري: 2055126009<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.01537339,49.64511441" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8cc645ac5670f9f91fd0442526d7a0e0.setContent(html_de86a1ed650dfeea191e859bbeaec8f0);
marker_6264383d1918cc19068cb263cf381b26.bindPopup(popup_8cc645ac5670f9f91fd0442526d7a0e0)
;
marker_6264383d1918cc19068cb263cf381b26.setIcon(icon_23512680237b31b2cf67b3f79b28cd16);
var marker_196c93c56459546b6a8531676684f4cd = L.marker(
[27.00924632, 49.65359974],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_a1465f61ade46c4b10a42f78a3403006 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6ef5a081287526b4f290f65c03a6e01c = L.popup({
"maxWidth": 320,
});
var html_5425cb623f05cbf107fa4e19c53ce21c = $(`<div id="html_5425cb623f05cbf107fa4e19c53ce21c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اساسات الطوية للمقاولات العامة</b><br> الرقم الموحد: 7007772226<br> السجل التجاري: 2055004663<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00924632,49.65359974" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6ef5a081287526b4f290f65c03a6e01c.setContent(html_5425cb623f05cbf107fa4e19c53ce21c);
marker_196c93c56459546b6a8531676684f4cd.bindPopup(popup_6ef5a081287526b4f290f65c03a6e01c)
;
marker_196c93c56459546b6a8531676684f4cd.setIcon(icon_a1465f61ade46c4b10a42f78a3403006);
var marker_eb0ef6eccf8fcbff4e21b726eab73a7d = L.marker(
[27.0091148881411, 49.6481796082923],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_3d302e0e3c05ac07b95a81df85f32808 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_269e381a3819818c54c676c157eae361 = L.popup({
"maxWidth": 320,
});
var html_6b00456fb4659eaa5bca5a74d96d6445 = $(`<div id="html_6b00456fb4659eaa5bca5a74d96d6445" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اركين للمقاولات</b><br> الرقم الموحد: 7040921848<br> السجل التجاري: 2055147976<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.0091148881411,49.6481796082923" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_269e381a3819818c54c676c157eae361.setContent(html_6b00456fb4659eaa5bca5a74d96d6445);
marker_eb0ef6eccf8fcbff4e21b726eab73a7d.bindPopup(popup_269e381a3819818c54c676c157eae361)
;
marker_eb0ef6eccf8fcbff4e21b726eab73a7d.setIcon(icon_3d302e0e3c05ac07b95a81df85f32808);
var marker_a6a31f816615874be81ec595efd14aed = L.marker(
[27.0166488239462, 49.65185770226964],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_83900cd49c6a5b08058b4daf39fff2ba = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9c525308c9f16d2fc1a15756a5945044 = L.popup({
"maxWidth": 320,
});
var html_8a697ef0047bc71cc6508d14cc9382e8 = $(`<div id="html_8a697ef0047bc71cc6508d14cc9382e8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اتحاد الزرقاء للمقاولات</b><br> الرقم الموحد: 7033892683<br> السجل التجاري: 2055136205<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.0166488239462,49.65185770226964" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9c525308c9f16d2fc1a15756a5945044.setContent(html_8a697ef0047bc71cc6508d14cc9382e8);
marker_a6a31f816615874be81ec595efd14aed.bindPopup(popup_9c525308c9f16d2fc1a15756a5945044)
;
marker_a6a31f816615874be81ec595efd14aed.setIcon(icon_83900cd49c6a5b08058b4daf39fff2ba);
var marker_5ccb248e771971f0f856e972f5eb8f7b = L.marker(
[27.01334478373789, 49.64801237315717],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_5481c7dcc319ba064e0e5848b82081d5 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a6abc907ed29ad5baa98646b8e48bd6a = L.popup({
"maxWidth": 320,
});
var html_fd468241d09065ed3f938c0d5b3798df = $(`<div id="html_fd468241d09065ed3f938c0d5b3798df" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ابداع الجبيل للمقاولات العامة</b><br> الرقم الموحد: 7013996306<br> السجل التجاري: 2055013513<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.01334478373789,49.64801237315717" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a6abc907ed29ad5baa98646b8e48bd6a.setContent(html_fd468241d09065ed3f938c0d5b3798df);
marker_5ccb248e771971f0f856e972f5eb8f7b.bindPopup(popup_a6abc907ed29ad5baa98646b8e48bd6a)
;
marker_5ccb248e771971f0f856e972f5eb8f7b.setIcon(icon_5481c7dcc319ba064e0e5848b82081d5);
var marker_49f5e18dc413880303b226c9adecd25a = L.marker(
[26.9970623867026, 49.6516983505851],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_d76fe653d38b740c86744d4c11809f22 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9e7838df7caf63d755a7d34ba37053f9 = L.popup({
"maxWidth": 320,
});
var html_ef97028296d5f52880fec3274ecc9c7a = $(`<div id="html_ef97028296d5f52880fec3274ecc9c7a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة هيبة الشرق للانشاءات المحدوده</b><br> الرقم الموحد: 7009420618<br> السجل التجاري: 2055025059<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.9970623867026,49.6516983505851" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9e7838df7caf63d755a7d34ba37053f9.setContent(html_ef97028296d5f52880fec3274ecc9c7a);
marker_49f5e18dc413880303b226c9adecd25a.bindPopup(popup_9e7838df7caf63d755a7d34ba37053f9)
;
marker_49f5e18dc413880303b226c9adecd25a.setIcon(icon_d76fe653d38b740c86744d4c11809f22);
var marker_0de3f4caa469ee2fb982e2e9cf0ef131 = L.marker(
[26.9923125662612, 49.6529984677299],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_4a0d46696e6066249e13f7683d6cafe8 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b38ffa466a3b65a96f2d01b89f781b65 = L.popup({
"maxWidth": 320,
});
var html_a77d32ea7aafc8ef50380e01a65bfbd2 = $(`<div id="html_a77d32ea7aafc8ef50380e01a65bfbd2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصنع حليف البيئة المحدودة</b><br> الرقم الموحد: 7007886448<br> السجل التجاري: 2055026236<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.9923125662612,49.6529984677299" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b38ffa466a3b65a96f2d01b89f781b65.setContent(html_a77d32ea7aafc8ef50380e01a65bfbd2);
marker_0de3f4caa469ee2fb982e2e9cf0ef131.bindPopup(popup_b38ffa466a3b65a96f2d01b89f781b65)
;
marker_0de3f4caa469ee2fb982e2e9cf0ef131.setIcon(icon_4a0d46696e6066249e13f7683d6cafe8);
var marker_6e40e8333abd59c484106992332a0b82 = L.marker(
[27.00037296, 49.65406923],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_8ca39952adc1c6b1c491c773c1e576a9 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_481bbbaecbba1a0c8c1cc1c2c2da81e6 = L.popup({
"maxWidth": 320,
});
var html_4a7fb2d1934a02bafb69a2ce30da1ff4 = $(`<div id="html_4a7fb2d1934a02bafb69a2ce30da1ff4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كريستال المروج للمقاولات</b><br> الرقم الموحد: 7006498781<br> السجل التجاري: 2055005283<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00037296,49.65406923" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_481bbbaecbba1a0c8c1cc1c2c2da81e6.setContent(html_4a7fb2d1934a02bafb69a2ce30da1ff4);
marker_6e40e8333abd59c484106992332a0b82.bindPopup(popup_481bbbaecbba1a0c8c1cc1c2c2da81e6)
;
marker_6e40e8333abd59c484106992332a0b82.setIcon(icon_8ca39952adc1c6b1c491c773c1e576a9);
var marker_44cd3e3702188c4e435262b9be50bd68 = L.marker(
[27.00301224, 49.64637994],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_302b8d45737b6117e28aa58ba29f84b4 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e47e8e14d739336c7bf7598d4b3afca7 = L.popup({
"maxWidth": 320,
});
var html_85260c5de79817d72ebab4b769afc3bd = $(`<div id="html_85260c5de79817d72ebab4b769afc3bd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فيه جميع انحاء العالم للمقاولات</b><br> الرقم الموحد: 7023670206<br> السجل التجاري: 2055130577<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00301224,49.64637994" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e47e8e14d739336c7bf7598d4b3afca7.setContent(html_85260c5de79817d72ebab4b769afc3bd);
marker_44cd3e3702188c4e435262b9be50bd68.bindPopup(popup_e47e8e14d739336c7bf7598d4b3afca7)
;
marker_44cd3e3702188c4e435262b9be50bd68.setIcon(icon_302b8d45737b6117e28aa58ba29f84b4);
var marker_1cb3e0ec138030a071137383a4a4869c = L.marker(
[27.0019685387968, 49.6540076905401],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_736f42309cba1d10e08d60ec7cf1055e = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d77235d1554fc322ad03fe52bd1ae503 = L.popup({
"maxWidth": 320,
});
var html_86501a05cb2cd522438ea198ea1a44c1 = $(`<div id="html_86501a05cb2cd522438ea198ea1a44c1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فيزيكو السعودية للتجارة المحدودة</b><br> الرقم الموحد: 7001866693<br> السجل التجاري: 2055023018<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.0019685387968,49.6540076905401" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d77235d1554fc322ad03fe52bd1ae503.setContent(html_86501a05cb2cd522438ea198ea1a44c1);
marker_1cb3e0ec138030a071137383a4a4869c.bindPopup(popup_d77235d1554fc322ad03fe52bd1ae503)
;
marker_1cb3e0ec138030a071137383a4a4869c.setIcon(icon_736f42309cba1d10e08d60ec7cf1055e);
var marker_3635934f63d8c6d28b608f322a858d82 = L.marker(
[27.0020243017437, 49.6544182506642],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_af581ba7794db003b1fd1da0485fecfd = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7390168c9b25d6e0fd91216cd0d1b472 = L.popup({
"maxWidth": 320,
});
var html_07b8eda65436e3b3f617785894b264de = $(`<div id="html_07b8eda65436e3b3f617785894b264de" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة علي عايش آل جميع للمقاولات</b><br> الرقم الموحد: 7006781046<br> السجل التجاري: 2055103006<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.0020243017437,49.6544182506642" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7390168c9b25d6e0fd91216cd0d1b472.setContent(html_07b8eda65436e3b3f617785894b264de);
marker_3635934f63d8c6d28b608f322a858d82.bindPopup(popup_7390168c9b25d6e0fd91216cd0d1b472)
;
marker_3635934f63d8c6d28b608f322a858d82.setIcon(icon_af581ba7794db003b1fd1da0485fecfd);
var marker_767e9f464f2b310677887c4f0fe310e8 = L.marker(
[26.9988710156065, 49.658923126674],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_48622f77c4e8ee0f418f047fe1e2da60 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f1664f3f1be158ab79105dd27a4f6eab = L.popup({
"maxWidth": 320,
});
var html_b7277c653b8e61f6af15cfc52b8932d6 = $(`<div id="html_b7277c653b8e61f6af15cfc52b8932d6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة علوم الارتقاء للمقاولات العامة</b><br> الرقم الموحد: 7015105351<br> السجل التجاري: 2055023916<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.9988710156065,49.658923126674" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f1664f3f1be158ab79105dd27a4f6eab.setContent(html_b7277c653b8e61f6af15cfc52b8932d6);
marker_767e9f464f2b310677887c4f0fe310e8.bindPopup(popup_f1664f3f1be158ab79105dd27a4f6eab)
;
marker_767e9f464f2b310677887c4f0fe310e8.setIcon(icon_48622f77c4e8ee0f418f047fe1e2da60);
var marker_efb29564d27274edeb76f19c2f5723a6 = L.marker(
[27.00370809, 49.65125674],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_a8115fdc156ce26d57b429eaf80e7c95 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c0c74f0ebd84dff064d896306a5f1534 = L.popup({
"maxWidth": 320,
});
var html_e10b7f427313a27cd5a533dc3a1220ec = $(`<div id="html_e10b7f427313a27cd5a533dc3a1220ec" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عطاء المستقبل للمقاولات</b><br> الرقم الموحد: 7013700047<br> السجل التجاري: 2055008133<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00370809,49.65125674" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c0c74f0ebd84dff064d896306a5f1534.setContent(html_e10b7f427313a27cd5a533dc3a1220ec);
marker_efb29564d27274edeb76f19c2f5723a6.bindPopup(popup_c0c74f0ebd84dff064d896306a5f1534)
;
marker_efb29564d27274edeb76f19c2f5723a6.setIcon(icon_a8115fdc156ce26d57b429eaf80e7c95);
var marker_f13546baa090102039f7e3fa12e2f289 = L.marker(
[27.00295013, 49.64603454],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_da9f0f6654eaacafb412e0063a8a091a = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5d679a9f683d562ec85864bee989b70e = L.popup({
"maxWidth": 320,
});
var html_0363b287f7579e61158f8fe3eb4e2eaf = $(`<div id="html_0363b287f7579e61158f8fe3eb4e2eaf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة طريق الصخرة العربية المحدودة</b><br> الرقم الموحد: 7010810666<br> السجل التجاري: 2055121951<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00295013,49.64603454" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5d679a9f683d562ec85864bee989b70e.setContent(html_0363b287f7579e61158f8fe3eb4e2eaf);
marker_f13546baa090102039f7e3fa12e2f289.bindPopup(popup_5d679a9f683d562ec85864bee989b70e)
;
marker_f13546baa090102039f7e3fa12e2f289.setIcon(icon_da9f0f6654eaacafb412e0063a8a091a);
var marker_34cd8e8263d23a0d103e17bed92d41b4 = L.marker(
[26.9987686055635, 49.6579991420535],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_2e7a9a62c6cdb62ac8cc4932d893bd89 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3eb9796f7922e7ed6a40152d5252c617 = L.popup({
"maxWidth": 320,
});
var html_09c0b3ef2396f21ea2e356cfc622e0ff = $(`<div id="html_09c0b3ef2396f21ea2e356cfc622e0ff" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة صقر سليمان صقر الخالدي للصيانة والتشطيب</b><br> الرقم الموحد: 7013279018<br> السجل التجاري: 2055003276<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.9987686055635,49.6579991420535" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3eb9796f7922e7ed6a40152d5252c617.setContent(html_09c0b3ef2396f21ea2e356cfc622e0ff);
marker_34cd8e8263d23a0d103e17bed92d41b4.bindPopup(popup_3eb9796f7922e7ed6a40152d5252c617)
;
marker_34cd8e8263d23a0d103e17bed92d41b4.setIcon(icon_2e7a9a62c6cdb62ac8cc4932d893bd89);
var marker_f897c805dd81cdfd12a429bf15559683 = L.marker(
[27.00280945, 49.64607376],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_fffafd972a0fef0845bca0a428970b01 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_608cfdac570526b311d069ceb5256907 = L.popup({
"maxWidth": 320,
});
var html_cc24666bab08bb63a8993dfbd6fdca85 = $(`<div id="html_cc24666bab08bb63a8993dfbd6fdca85" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة شارق الصناعية للتجارة والمقاولات</b><br> الرقم الموحد: 7009424131<br> السجل التجاري: 2055009873<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00280945,49.64607376" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_608cfdac570526b311d069ceb5256907.setContent(html_cc24666bab08bb63a8993dfbd6fdca85);
marker_f897c805dd81cdfd12a429bf15559683.bindPopup(popup_608cfdac570526b311d069ceb5256907)
;
marker_f897c805dd81cdfd12a429bf15559683.setIcon(icon_fffafd972a0fef0845bca0a428970b01);
var marker_ce94e3a3190b3fa802ce6a0dab1df857 = L.marker(
[27.00202721819791, 49.65444233683431],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_0e4bbf7313701773ca700345d08d338c = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fbf4ee57ebb9e5086638712b38b3d53c = L.popup({
"maxWidth": 320,
});
var html_cec2b18ce92a0553982ac8ec1652096f = $(`<div id="html_cec2b18ce92a0553982ac8ec1652096f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دقة الابتكار المحدودة</b><br> الرقم الموحد: 7049029049<br> السجل التجاري: 2055161804<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00202721819791,49.65444233683431" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fbf4ee57ebb9e5086638712b38b3d53c.setContent(html_cec2b18ce92a0553982ac8ec1652096f);
marker_ce94e3a3190b3fa802ce6a0dab1df857.bindPopup(popup_fbf4ee57ebb9e5086638712b38b3d53c)
;
marker_ce94e3a3190b3fa802ce6a0dab1df857.setIcon(icon_0e4bbf7313701773ca700345d08d338c);
var marker_ef6c22e417b24b10a15cec7db988e45c = L.marker(
[26.9950724261921, 49.6456357224894],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_7a1c09c0a568cf6edf628bffd0cbe6c0 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6ce0912d9d4405522935eac119686846 = L.popup({
"maxWidth": 320,
});
var html_1e81056bbe692f285440c9e39ed35027 = $(`<div id="html_1e81056bbe692f285440c9e39ed35027" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دال العربية للمقاولات العامة</b><br> الرقم الموحد: 7012513599<br> السجل التجاري: 2055009861<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.9950724261921,49.6456357224894" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6ce0912d9d4405522935eac119686846.setContent(html_1e81056bbe692f285440c9e39ed35027);
marker_ef6c22e417b24b10a15cec7db988e45c.bindPopup(popup_6ce0912d9d4405522935eac119686846)
;
marker_ef6c22e417b24b10a15cec7db988e45c.setIcon(icon_7a1c09c0a568cf6edf628bffd0cbe6c0);
var marker_72f9cf218bafd40defc6cd9c73a6d6ed = L.marker(
[26.9974831509357, 49.659924724335],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_4f9951c7ea9741de7cb30617d2b419c7 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c38a69936f8372904e955166a0320e91 = L.popup({
"maxWidth": 320,
});
var html_014c4e7a11bd2021229291513dc2c071 = $(`<div id="html_014c4e7a11bd2021229291513dc2c071" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تين التجاريه</b><br> الرقم الموحد: 7006781335<br> السجل التجاري: 2055022568<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.9974831509357,49.659924724335" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c38a69936f8372904e955166a0320e91.setContent(html_014c4e7a11bd2021229291513dc2c071);
marker_72f9cf218bafd40defc6cd9c73a6d6ed.bindPopup(popup_c38a69936f8372904e955166a0320e91)
;
marker_72f9cf218bafd40defc6cd9c73a6d6ed.setIcon(icon_4f9951c7ea9741de7cb30617d2b419c7);
var marker_2b7737a99b193458f0a12d878d1b4ada = L.marker(
[27.00290869658476, 49.64633487398093],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_5055d319fb58b04c33625f94a03595c0 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_787d3a62b4c81e20291fbba3d235ef2f = L.popup({
"maxWidth": 320,
});
var html_6740655d336e2515e1ae8421604e0737 = $(`<div id="html_6740655d336e2515e1ae8421604e0737" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بوفارريتس العربية للمقاولات</b><br> الرقم الموحد: 7033646972<br> السجل التجاري: 1010855901<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00290869658476,49.64633487398093" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_787d3a62b4c81e20291fbba3d235ef2f.setContent(html_6740655d336e2515e1ae8421604e0737);
marker_2b7737a99b193458f0a12d878d1b4ada.bindPopup(popup_787d3a62b4c81e20291fbba3d235ef2f)
;
marker_2b7737a99b193458f0a12d878d1b4ada.setIcon(icon_5055d319fb58b04c33625f94a03595c0);
var marker_f480e6da3d43464f600aad9897b20513 = L.marker(
[27.0019058756044, 49.6544380692075],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_ec7dbdf58ba8ed302b4ce12968de6cb9 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4d17b9e950ac19a27d71d899bd255cda = L.popup({
"maxWidth": 320,
});
var html_ec33340c1004a5cf080aa3f458e118d8 = $(`<div id="html_ec33340c1004a5cf080aa3f458e118d8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بريغاد آيكونيك المحدودة</b><br> الرقم الموحد: 7036161961<br> السجل التجاري: 2055144446<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.0018458756044,49.6544380692075" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4d17b9e950ac19a27d71d899bd255cda.setContent(html_ec33340c1004a5cf080aa3f458e118d8);
marker_f480e6da3d43464f600aad9897b20513.bindPopup(popup_4d17b9e950ac19a27d71d899bd255cda)
;
marker_f480e6da3d43464f600aad9897b20513.setIcon(icon_ec7dbdf58ba8ed302b4ce12968de6cb9);
var marker_339c9b6c69359b4a61b8dd31e9c12b8a = L.marker(
[26.99716487, 49.65658346],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_bf78083fa7b917883e1fd4f34974d4b6 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9d86b44ea6f963f0adb986912d58bb3c = L.popup({
"maxWidth": 320,
});
var html_85518a893e9d049ed03f149e42500c45 = $(`<div id="html_85518a893e9d049ed03f149e42500c45" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أشعة زرقاء للمقاولات شركة شحص واحد</b><br> الرقم الموحد: 7030748870<br> السجل التجاري: 2055134461<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.99716487,49.65658346" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9d86b44ea6f963f0adb986912d58bb3c.setContent(html_85518a893e9d049ed03f149e42500c45);
marker_339c9b6c69359b4a61b8dd31e9c12b8a.bindPopup(popup_9d86b44ea6f963f0adb986912d58bb3c)
;
marker_339c9b6c69359b4a61b8dd31e9c12b8a.setIcon(icon_bf78083fa7b917883e1fd4f34974d4b6);
var marker_9f1e0831efea3560cdb91964b93b1eb2 = L.marker(
[27.00360396, 49.65118514],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_52b59f59fe3541d7a2fc6cef78e03210 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7acc3e01f260922499ad4afc1e41475e = L.popup({
"maxWidth": 320,
});
var html_7e57dab6232660d7154399771f7f01a5 = $(`<div id="html_7e57dab6232660d7154399771f7f01a5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اير برودكتس القدرة للطاقة</b><br> الرقم الموحد: 7024088242<br> السجل التجاري: 2052103006<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00360396,49.65118514" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7acc3e01f260922499ad4afc1e41475e.setContent(html_7e57dab6232660d7154399771f7f01a5);
marker_9f1e0831efea3560cdb91964b93b1eb2.bindPopup(popup_7acc3e01f260922499ad4afc1e41475e)
;
marker_9f1e0831efea3560cdb91964b93b1eb2.setIcon(icon_52b59f59fe3541d7a2fc6cef78e03210);
var marker_d4f22a1b7b03760cc77db15576e3bd23 = L.marker(
[26.99687512239142, 49.64536088462863],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_560f83b5e68c11a2f2e94341d8853c72 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3e453ec91e42628523a9d3add6ecd9e6 = L.popup({
"maxWidth": 320,
});
var html_3a3b7f18f493ac73e77b5eeb5957cea2 = $(`<div id="html_3a3b7f18f493ac73e77b5eeb5957cea2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الوادي السريع للمقاولات المحدودة</b><br> الرقم الموحد: 7001647861<br> السجل التجاري: 2055013024<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.99687512239142,49.64536088462863" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3e453ec91e42628523a9d3add6ecd9e6.setContent(html_3a3b7f18f493ac73e77b5eeb5957cea2);
marker_d4f22a1b7b03760cc77db15576e3bd23.bindPopup(popup_3e453ec91e42628523a9d3add6ecd9e6)
;
marker_d4f22a1b7b03760cc77db15576e3bd23.setIcon(icon_560f83b5e68c11a2f2e94341d8853c72);
var marker_4a41d469cd41ee5fe710cab3336220bd = L.marker(
[27.0029921, 49.6460932],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_114b52c49e44d7c51ada09c81f29409b = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_70436089cd3a6d1abe5e426602fa5c37 = L.popup({
"maxWidth": 320,
});
var html_ce9f98aa90c8bb0d29f0397b5bf8224d = $(`<div id="html_ce9f98aa90c8bb0d29f0397b5bf8224d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة العون العربية للمقاولات</b><br> الرقم الموحد: 7001534614<br> السجل التجاري: 2055011013<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.0029921,49.6460932" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_70436089cd3a6d1abe5e426602fa5c37.setContent(html_ce9f98aa90c8bb0d29f0397b5bf8224d);
marker_4a41d469cd41ee5fe710cab3336220bd.bindPopup(popup_70436089cd3a6d1abe5e426602fa5c37)
;
marker_4a41d469cd41ee5fe710cab3336220bd.setIcon(icon_114b52c49e44d7c51ada09c81f29409b);
var marker_c8a72c56e31f8e417909dc871b97154a = L.marker(
[27.0040788948359, 49.6578178679099],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_d0cd1b6dd2b091e55ab4747a6f32d4b6 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7582a73eb9e7696512eb56d0e16cd227 = L.popup({
"maxWidth": 320,
});
var html_ad501a8830f6fc9f4752c13ad4a9f478 = $(`<div id="html_ad501a8830f6fc9f4752c13ad4a9f478" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الجودي العربية للمقاولات والاعمال</b><br> الرقم الموحد: 7011025637<br> السجل التجاري: 2055005989<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.0040788948359,49.6578178679099" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7582a73eb9e7696512eb56d0e16cd227.setContent(html_ad501a8830f6fc9f4752c13ad4a9f478);
marker_c8a72c56e31f8e417909dc871b97154a.bindPopup(popup_7582a73eb9e7696512eb56d0e16cd227)
;
marker_c8a72c56e31f8e417909dc871b97154a.setIcon(icon_d0cd1b6dd2b091e55ab4747a6f32d4b6);
var marker_cdcdec805d13ba69608d41c66489f6ac = L.marker(
[27.001785875604398, 49.6544380692075],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_9773b0f53ecf55f431613d6e42693ed8 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_af853955631065ac2e276382fa1a7453 = L.popup({
"maxWidth": 320,
});
var html_fac5dcdfbf2a237a83caadb0de035c91 = $(`<div id="html_fac5dcdfbf2a237a83caadb0de035c91" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الجناح العالمي للمقاولات العامة</b><br> الرقم الموحد: 7013801126<br> السجل التجاري: 2055009422<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.0018458756044,49.6544380692075" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_af853955631065ac2e276382fa1a7453.setContent(html_fac5dcdfbf2a237a83caadb0de035c91);
marker_cdcdec805d13ba69608d41c66489f6ac.bindPopup(popup_af853955631065ac2e276382fa1a7453)
;
marker_cdcdec805d13ba69608d41c66489f6ac.setIcon(icon_9773b0f53ecf55f431613d6e42693ed8);
var marker_90fd74c14deb28d6f72181f6099aac17 = L.marker(
[26.99872284, 49.6582419],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_99a349333ec4b60f4f8bf8069a1aa108 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e7a2eef5336102ff926a1e8eed03cac1 = L.popup({
"maxWidth": 320,
});
var html_17bf5df2b27c0c905e41f131be6df6d1 = $(`<div id="html_17bf5df2b27c0c905e41f131be6df6d1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الأسس البنائية الدولية للمقاولات</b><br> الرقم الموحد: 7023305662<br> السجل التجاري: 2055130331<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.99872284,49.6582419" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e7a2eef5336102ff926a1e8eed03cac1.setContent(html_17bf5df2b27c0c905e41f131be6df6d1);
marker_90fd74c14deb28d6f72181f6099aac17.bindPopup(popup_e7a2eef5336102ff926a1e8eed03cac1)
;
marker_90fd74c14deb28d6f72181f6099aac17.setIcon(icon_99a349333ec4b60f4f8bf8069a1aa108);
var marker_05db6e358e7baa202e46159737972607 = L.marker(
[26.99238664, 49.65368063],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_903cc159bc248b8d1a6fb627ee7756d4 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5d1d0ab345285a45316f0f5bc0ebf289 = L.popup({
"maxWidth": 320,
});
var html_ff20de3ee0093b3a58d8fc7c427bf21f = $(`<div id="html_ff20de3ee0093b3a58d8fc7c427bf21f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اتحاد المفتشين للفحص والخدمات</b><br> الرقم الموحد: 7001880264<br> السجل التجاري: 2055019393<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.99238664,49.65368063" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5d1d0ab345285a45316f0f5bc0ebf289.setContent(html_ff20de3ee0093b3a58d8fc7c427bf21f);
marker_05db6e358e7baa202e46159737972607.bindPopup(popup_5d1d0ab345285a45316f0f5bc0ebf289)
;
marker_05db6e358e7baa202e46159737972607.setIcon(icon_903cc159bc248b8d1a6fb627ee7756d4);
var marker_d86d0b77afcff85f566ab52c75c55c3f = L.marker(
[26.99477977, 49.64705629],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_42f4ad4b74af8f301e126ad5029db72f = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7523630ef6065f80290a4fe4b8fe5805 = L.popup({
"maxWidth": 320,
});
var html_9404a54839eec6b8fa083c203e3bf2f0 = $(`<div id="html_9404a54839eec6b8fa083c203e3bf2f0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ابداع الفنون للمقاولات</b><br> الرقم الموحد: 7028772130<br> السجل التجاري: 2055133296<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.99477977,49.64705629" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7523630ef6065f80290a4fe4b8fe5805.setContent(html_9404a54839eec6b8fa083c203e3bf2f0);
marker_d86d0b77afcff85f566ab52c75c55c3f.bindPopup(popup_7523630ef6065f80290a4fe4b8fe5805)
;
marker_d86d0b77afcff85f566ab52c75c55c3f.setIcon(icon_42f4ad4b74af8f301e126ad5029db72f);
var marker_e74d1abff3925e98c637e68ad60be579 = L.marker(
[26.99387966904856, 49.64540285411015],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_6eb0d267b5b362c7ea0858319d3c6bd6 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cdacb473244af5c7d26afd24da951265 = L.popup({
"maxWidth": 320,
});
var html_ac9d9912dd0b329b92d557039915366b = $(`<div id="html_ac9d9912dd0b329b92d557039915366b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>خبراء الانارة والتصميم للتجارة</b><br> الرقم الموحد: 7003765562<br> السجل التجاري: 1010555308<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.99387966904856,49.64540285411015" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cdacb473244af5c7d26afd24da951265.setContent(html_ac9d9912dd0b329b92d557039915366b);
marker_e74d1abff3925e98c637e68ad60be579.bindPopup(popup_cdacb473244af5c7d26afd24da951265)
;
marker_e74d1abff3925e98c637e68ad60be579.setIcon(icon_6eb0d267b5b362c7ea0858319d3c6bd6);
var marker_8adb14c2e11251a06bb7fb1c8d2a79a5 = L.marker(
[27.00409248, 49.65725124],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_808bd0a2e5bb1a154dd2f8e5af0bf85b = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_17b51cf9b2d1ffafa9805e838f9930ea = L.popup({
"maxWidth": 320,
});
var html_942a7e9d238a26824811b35c95f9d995 = $(`<div id="html_942a7e9d238a26824811b35c95f9d995" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>بريميتالز تكنولوجيز العربية السعودية جي</b><br> الرقم الموحد: 7000575568<br> السجل التجاري: 2055024145<br> المنطقة: الجبيل<br> الحارة: المرقاب<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=27.00409248,49.65725124" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_17b51cf9b2d1ffafa9805e838f9930ea.setContent(html_942a7e9d238a26824811b35c95f9d995);
marker_8adb14c2e11251a06bb7fb1c8d2a79a5.bindPopup(popup_17b51cf9b2d1ffafa9805e838f9930ea)
;
marker_8adb14c2e11251a06bb7fb1c8d2a79a5.setIcon(icon_808bd0a2e5bb1a154dd2f8e5af0bf85b);
var marker_9866648f1b8dc23e30d8ae9c311d7023 = L.marker(
[26.99090494, 49.65254086],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_89f851ab8138c0d7c8e86b52aca9f696 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d7d25b652143c467ce117d51985111df = L.popup({
"maxWidth": 320,
});
var html_84ca88c780506929db9024d671782098 = $(`<div id="html_84ca88c780506929db9024d671782098" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع نيو اندستريز (نوكسفيل) انك</b><br> الرقم الموحد: 7011042756<br> السجل التجاري: 2055024439<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.99090494,49.65254086" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d7d25b652143c467ce117d51985111df.setContent(html_84ca88c780506929db9024d671782098);
marker_9866648f1b8dc23e30d8ae9c311d7023.bindPopup(popup_d7d25b652143c467ce117d51985111df)
;
marker_9866648f1b8dc23e30d8ae9c311d7023.setIcon(icon_89f851ab8138c0d7c8e86b52aca9f696);
var marker_c1d0ce2ab8cfba7768ccb7189b0c8fdd = L.marker(
[26.98012274, 49.65554502],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_976740220c936f4e1476d06d2c261da8 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b4cf58c89ead03db071c05ded7176a12 = L.popup({
"maxWidth": 320,
});
var html_231225e0e355fb17f14f7001639140b8 = $(`<div id="html_231225e0e355fb17f14f7001639140b8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة شاينا جيو انجنيرنج</b><br> الرقم الموحد: 7001682918<br> السجل التجاري: 2055014114<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.98012274,49.65554502" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b4cf58c89ead03db071c05ded7176a12.setContent(html_231225e0e355fb17f14f7001639140b8);
marker_c1d0ce2ab8cfba7768ccb7189b0c8fdd.bindPopup(popup_b4cf58c89ead03db071c05ded7176a12)
;
marker_c1d0ce2ab8cfba7768ccb7189b0c8fdd.setIcon(icon_976740220c936f4e1476d06d2c261da8);
var marker_090b0fe208fe3b9551214aad32058b37 = L.marker(
[26.9907714, 49.66228755],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_cb0fc8e3d9c3b92101ab356cc5bb0e7b = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bb1d43847d9d8a8ee06571433317930f = L.popup({
"maxWidth": 320,
});
var html_9500e6875d5562d082c508e12dee31ff = $(`<div id="html_9500e6875d5562d082c508e12dee31ff" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نجمة الجبيل للمقاولات العامة</b><br> الرقم الموحد: 7018038229<br> السجل التجاري: 2055129493<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.9907714,49.66228755" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bb1d43847d9d8a8ee06571433317930f.setContent(html_9500e6875d5562d082c508e12dee31ff);
marker_090b0fe208fe3b9551214aad32058b37.bindPopup(popup_bb1d43847d9d8a8ee06571433317930f)
;
marker_090b0fe208fe3b9551214aad32058b37.setIcon(icon_cb0fc8e3d9c3b92101ab356cc5bb0e7b);
var marker_7d2287dacbb53a824d2ffd377eed2bea = L.marker(
[26.98004643, 49.64868826],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_5309789cbbb58e475f08151a295e2e05 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9d1667d9ba3dfedd783795fe450c8789 = L.popup({
"maxWidth": 320,
});
var html_05ff569ce359b755ae69062fb7d89238 = $(`<div id="html_05ff569ce359b755ae69062fb7d89238" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ناجكو العربيةللمقاولات</b><br> الرقم الموحد: 7033765657<br> السجل التجاري: 2055135987<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.98004643,49.64868826" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9d1667d9ba3dfedd783795fe450c8789.setContent(html_05ff569ce359b755ae69062fb7d89238);
marker_7d2287dacbb53a824d2ffd377eed2bea.bindPopup(popup_9d1667d9ba3dfedd783795fe450c8789)
;
marker_7d2287dacbb53a824d2ffd377eed2bea.setIcon(icon_5309789cbbb58e475f08151a295e2e05);
var marker_31fbd2241a9aaa3de7682e232762786e = L.marker(
[26.99165590641545, 49.65386948886621],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_1538b14376d5c78050942266f116831e = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_add3c640daf105f26f4f551523f7d8ef = L.popup({
"maxWidth": 320,
});
var html_00ec0b2cd2b32450fcc2a05acfa1c0bd = $(`<div id="html_00ec0b2cd2b32450fcc2a05acfa1c0bd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مونتريال المحدودة</b><br> الرقم الموحد: 7040740453<br> السجل التجاري: 2055146996<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.99165590641545,49.65386948886621" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_add3c640daf105f26f4f551523f7d8ef.setContent(html_00ec0b2cd2b32450fcc2a05acfa1c0bd);
marker_31fbd2241a9aaa3de7682e232762786e.bindPopup(popup_add3c640daf105f26f4f551523f7d8ef)
;
marker_31fbd2241a9aaa3de7682e232762786e.setIcon(icon_1538b14376d5c78050942266f116831e);
var marker_25be47de0d9014846d1501a60e100efe = L.marker(
[26.98129637, 49.64753727],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_fe0bbc936a8261b3ae1a3597e8abcaea = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7a16bfec506b3c93b62e839fac21ab55 = L.popup({
"maxWidth": 320,
});
var html_28be416cfb24735cc01390c3403ee2c2 = $(`<div id="html_28be416cfb24735cc01390c3403ee2c2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة محطة الفاضلي لتوليد الطاقة المزدوج</b><br> الرقم الموحد: 7003718736<br> السجل التجاري: 2055025539<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.98129637,49.64753727" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7a16bfec506b3c93b62e839fac21ab55.setContent(html_28be416cfb24735cc01390c3403ee2c2);
marker_25be47de0d9014846d1501a60e100efe.bindPopup(popup_7a16bfec506b3c93b62e839fac21ab55)
;
marker_25be47de0d9014846d1501a60e100efe.setIcon(icon_fe0bbc936a8261b3ae1a3597e8abcaea);
var marker_8347b045427e2eeb10b2b1883eacaaa2 = L.marker(
[26.98966802, 49.65490526],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_f3c03f326f1fc2dab63f3e646422b0f2 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f4f1e92776276f34da4640bcd16c0cd9 = L.popup({
"maxWidth": 320,
});
var html_6722d7bf8e18529ee4800e81ee212a21 = $(`<div id="html_6722d7bf8e18529ee4800e81ee212a21" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مباني الصروح للمقاولات المحدودة</b><br> الرقم الموحد: 7012864026<br> السجل التجاري: 2050089384<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.98966802,49.65490526" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f4f1e92776276f34da4640bcd16c0cd9.setContent(html_6722d7bf8e18529ee4800e81ee212a21);
marker_8347b045427e2eeb10b2b1883eacaaa2.bindPopup(popup_f4f1e92776276f34da4640bcd16c0cd9)
;
marker_8347b045427e2eeb10b2b1883eacaaa2.setIcon(icon_f3c03f326f1fc2dab63f3e646422b0f2);
var marker_b964504e7e8920938190986c5a94930e = L.marker(
[26.99068588, 49.66223639],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_7de41596a1300e47895f15941d6427de = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_90b26a7b9b92122a8774c662a7782558 = L.popup({
"maxWidth": 320,
});
var html_acef266ba8787620e475a89a13b0e24e = $(`<div id="html_acef266ba8787620e475a89a13b0e24e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كوريا رينتال لتأجير المعدات</b><br> الرقم الموحد: 7001860878<br> السجل التجاري: 2055023032<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.99068588,49.66223639" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_90b26a7b9b92122a8774c662a7782558.setContent(html_acef266ba8787620e475a89a13b0e24e);
marker_b964504e7e8920938190986c5a94930e.bindPopup(popup_90b26a7b9b92122a8774c662a7782558)
;
marker_b964504e7e8920938190986c5a94930e.setIcon(icon_7de41596a1300e47895f15941d6427de);
var marker_fa62ecd69d1f4ddb2596298a5efdc5ea = L.marker(
[26.98953679, 49.65496291],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_ef1444048d4fe89926829d8745433406 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_125b1f67c3f5f0e581670b4b7bad1a47 = L.popup({
"maxWidth": 320,
});
var html_0e93262230f4dc4a724365b6e583f118 = $(`<div id="html_0e93262230f4dc4a724365b6e583f118" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فقط رائع المحدودة</b><br> الرقم الموحد: 7028654783<br> السجل التجاري: 2055133198<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.98953679,49.65496291" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_125b1f67c3f5f0e581670b4b7bad1a47.setContent(html_0e93262230f4dc4a724365b6e583f118);
marker_fa62ecd69d1f4ddb2596298a5efdc5ea.bindPopup(popup_125b1f67c3f5f0e581670b4b7bad1a47)
;
marker_fa62ecd69d1f4ddb2596298a5efdc5ea.setIcon(icon_ef1444048d4fe89926829d8745433406);
var marker_eaecd8b4212febba8e508a5800be4b58 = L.marker(
[26.9878661468101, 49.6464212042833],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_0709179d1a47d5f79eb7e4713145307b = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_117e0e5fdce66933830eaedfd9f509c6 = L.popup({
"maxWidth": 320,
});
var html_20212b2682b2f4fe65c7ebd14341f5e2 = $(`<div id="html_20212b2682b2f4fe65c7ebd14341f5e2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عبيد الله بركه الحربي للمقاولات</b><br> الرقم الموحد: 7013592170<br> السجل التجاري: 2055103373<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.9878661468101,49.6464212042833" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_117e0e5fdce66933830eaedfd9f509c6.setContent(html_20212b2682b2f4fe65c7ebd14341f5e2);
marker_eaecd8b4212febba8e508a5800be4b58.bindPopup(popup_117e0e5fdce66933830eaedfd9f509c6)
;
marker_eaecd8b4212febba8e508a5800be4b58.setIcon(icon_0709179d1a47d5f79eb7e4713145307b);
var marker_6e9d176d02f79788b8b3bea1318333e5 = L.marker(
[26.99075196901393, 49.66244311071932],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_6d4f10b8df0072859a5eff21debf0168 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ccee1684d50e27eaf8805851cc13b72b = L.popup({
"maxWidth": 320,
});
var html_4cebba6bb162167580945bf2a8a5d9ce = $(`<div id="html_4cebba6bb162167580945bf2a8a5d9ce" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة شينبو السعودية العربية المحدودة</b><br> الرقم الموحد: 7009042347<br> السجل التجاري: 2051232653<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.99075196901393,49.66244311071932" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ccee1684d50e27eaf8805851cc13b72b.setContent(html_4cebba6bb162167580945bf2a8a5d9ce);
marker_6e9d176d02f79788b8b3bea1318333e5.bindPopup(popup_ccee1684d50e27eaf8805851cc13b72b)
;
marker_6e9d176d02f79788b8b3bea1318333e5.setIcon(icon_6d4f10b8df0072859a5eff21debf0168);
var marker_693629727425a391c741aec4d9335558 = L.marker(
[26.98220064, 49.6552356],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_35664661a313e3f0926b14344554b68c = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e8968343d88b57ed55b2eb24f5d0aab1 = L.popup({
"maxWidth": 320,
});
var html_f5fc072f3107382721c899d25f6e4ca3 = $(`<div id="html_f5fc072f3107382721c899d25f6e4ca3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة شكو المحدودة</b><br> الرقم الموحد: 7013093336<br> السجل التجاري: 2055012282<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.98220064,49.6552356" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e8968343d88b57ed55b2eb24f5d0aab1.setContent(html_f5fc072f3107382721c899d25f6e4ca3);
marker_693629727425a391c741aec4d9335558.bindPopup(popup_e8968343d88b57ed55b2eb24f5d0aab1)
;
marker_693629727425a391c741aec4d9335558.setIcon(icon_35664661a313e3f0926b14344554b68c);
var marker_40eae62aa9956115bba7d7fae59ffbb6 = L.marker(
[26.9862316628139, 49.655190390293],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_2eaec85566787eda25d5db313d94eae3 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1cde3777fdf4c62e8102d831c769bfbe = L.popup({
"maxWidth": 320,
});
var html_622237b95511b14b359788e0600356c6 = $(`<div id="html_622237b95511b14b359788e0600356c6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة شرارة العربية للمقاولات</b><br> الرقم الموحد: 7009714895<br> السجل التجاري: 2055104688<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.9862316628139,49.655190390293" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1cde3777fdf4c62e8102d831c769bfbe.setContent(html_622237b95511b14b359788e0600356c6);
marker_40eae62aa9956115bba7d7fae59ffbb6.bindPopup(popup_1cde3777fdf4c62e8102d831c769bfbe)
;
marker_40eae62aa9956115bba7d7fae59ffbb6.setIcon(icon_2eaec85566787eda25d5db313d94eae3);
var marker_b10ba108b6bf9b28f399b8da0f650192 = L.marker(
[26.98967703338258, 49.65523391962051],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_815c45d7cc703f1a581343697d2990a2 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3045ba80247cdbcbfd93e4d16a63673e = L.popup({
"maxWidth": 320,
});
var html_003a1ab0e8ac18a8afd44464f5eb18d9 = $(`<div id="html_003a1ab0e8ac18a8afd44464f5eb18d9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سيفلاند سولوشن المحدودة شخص واحد</b><br> الرقم الموحد: 7037174591<br> السجل التجاري: 2055139085<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.98967703338258,49.65523391962051" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3045ba80247cdbcbfd93e4d16a63673e.setContent(html_003a1ab0e8ac18a8afd44464f5eb18d9);
marker_b10ba108b6bf9b28f399b8da0f650192.bindPopup(popup_3045ba80247cdbcbfd93e4d16a63673e)
;
marker_b10ba108b6bf9b28f399b8da0f650192.setIcon(icon_815c45d7cc703f1a581343697d2990a2);
var marker_99d3cd3571aaeff95b93bb0fbd6ed089 = L.marker(
[26.9810784311296, 49.6601629448085],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_8b5a56279a0e3081556cc1754057ada7 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f19eec43a4bf851a58b9c90814e78eb4 = L.popup({
"maxWidth": 320,
});
var html_7dadc295430ad2d92d5e7a20bc52d308 = $(`<div id="html_7dadc295430ad2d92d5e7a20bc52d308" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سشميدت اند كليمنس العربية</b><br> الرقم الموحد: 7001597165<br> السجل التجاري: 2055010695<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.9810784311296,49.6601629448085" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f19eec43a4bf851a58b9c90814e78eb4.setContent(html_7dadc295430ad2d92d5e7a20bc52d308);
marker_99d3cd3571aaeff95b93bb0fbd6ed089.bindPopup(popup_f19eec43a4bf851a58b9c90814e78eb4)
;
marker_99d3cd3571aaeff95b93bb0fbd6ed089.setIcon(icon_8b5a56279a0e3081556cc1754057ada7);
var marker_7f9d6b7ec46fd1dafc9310306d3e9e0d = L.marker(
[26.98672189, 49.65519586],
{
}
).addTo(map_99dfe56902c916914afa25a048f94345);
var icon_75e0624617c7babd7deadc9c55ccb4c9 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0cc7b246a82e56e5c3a80f0e1bf51093 = L.popup({
"maxWidth": 320,
});
var html_34e3d709882ac16a87a2d224b7a30b30 = $(`<div id="html_34e3d709882ac16a87a2d224b7a30b30" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بسمات المحدودة</b><br> الرقم الموحد: 7004171943<br> السجل التجاري: 2055123409<br> المنطقة: الجبيل<br> الحارة: طيبة<br> <b>اسم الباحث:</b> محاسن سلطان عبدالله الأحمد<br> <a href="https://www.google.com/maps?q=26.98672189,49.65519586" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0cc7b246a82e56e5c3a80f0e1bf51093.setContent(html_34e3d709882ac16a87a2d224b7a30b30);
marker_7f9d6b7ec46fd1dafc9310306d3e9e0d.bindPopup(popup_0cc7b246a82e56e5c3a80f0e1bf51093)
;
marker_7f9d6b7ec46fd1dafc9310306d3e9e0d.setIcon(icon_75e0624617c7babd7deadc9c55ccb4c9);
</script>
</html> |