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 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 | <!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_ac50e46efe33b9bfabe930862f08f4cf {
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_23" onclick="
var panel = document.getElementById('stats_23');
var btn = document.getElementById('btn_stats_23');
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_23" 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;
">أبرار ناصر ابن ثامر المطيري - 23</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 69</div>
<div><b>عدد الحارات:</b> 12</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• ج16: 15</div><div>• الدانة: 13</div><div>• اليرموك: 11</div><div>• الواحة: 10</div><div>• التعاون: 6</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_23_أبرار_ناصر_ابن_ثامر_المطيري.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:darkblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>ج16</span>
</div>
<span style="color:#555;">(15)</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;">(13)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>اليرموك</span>
</div>
<span style="color:#555;">(11)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:lightred;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الواحة</span>
</div>
<span style="color:#555;">(10)</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;">(6)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:lightblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>البستان</span>
</div>
<span style="color:#555;">(5)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الجوهرة</span>
</div>
<span style="color:#555;">(3)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:gray;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>ج8</span>
</div>
<span style="color:#555;">(2)</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;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:lightgray;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>ميناء راس الغار العسكري</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkgreen;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الطوية</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div 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>ج1</span>
</div>
<span style="color:#555;">(1)</span>
</div>
</div>
</div>
</div>
<div style="
position: fixed;
bottom: 8px; left: 8px;
background: rgba(255,255,255,0.85);
padding: 6px 10px;
border-radius: 10px;
font-size: 13px;
direction: rtl;
z-index: 9999;
box-shadow: 0 1px 8px rgba(0,0,0,0.15);
">
تصميم وإعداد <b>نوف الناصر</b>
</div>
<div class="folium-map" id="map_ac50e46efe33b9bfabe930862f08f4cf" ></div>
</body>
<script>
var map_ac50e46efe33b9bfabe930862f08f4cf = L.map(
"map_ac50e46efe33b9bfabe930862f08f4cf",
{
center: [26.99880869649249, 49.64041815913138],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_332f32abee11ee4310f2fddf5cea2fd3 = 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_332f32abee11ee4310f2fddf5cea2fd3.addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var tile_layer_12f359b3cb3b7b9d52623223d8d96e93 = 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_12f359b3cb3b7b9d52623223d8d96e93.addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var tile_layer_29fb046e7d68c6ec85c8451ea475128b = 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_29fb046e7d68c6ec85c8451ea475128b.addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var locate_control_2af98da497fb896e106991340a7f684e = L.control.locate(
{}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var marker_6c1855df8f602a9959547871e2b60567 = L.marker(
[26.8734808, 49.80096169999999],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_c2ce1e072d499c8997ee34f5989909b6 = L.AwesomeMarkers.icon(
{
"markerColor": "lightgray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c224a55671dc3b66d74f070d6c177848 = L.popup({
"maxWidth": 320,
});
var html_f61e716a9e1e4d3e8690d1ee69a36aa0 = $(`<div id="html_f61e716a9e1e4d3e8690d1ee69a36aa0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الجبيل للمياه والكهرباء</b><br> الرقم الموحد: 7001522502<br> السجل التجاري: 2055008295<br> المنطقة: ميناء راس الغار العسكري<br> الحارة: ميناء راس الغار العسكري<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.8734808,49.80096169999999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c224a55671dc3b66d74f070d6c177848.setContent(html_f61e716a9e1e4d3e8690d1ee69a36aa0);
marker_6c1855df8f602a9959547871e2b60567.bindPopup(popup_c224a55671dc3b66d74f070d6c177848)
;
marker_6c1855df8f602a9959547871e2b60567.setIcon(icon_c2ce1e072d499c8997ee34f5989909b6);
var marker_3ae5a5d3acf437c2034e6d9934436152 = L.marker(
[27.00010995, 49.62513088],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_5e421f275caafc4c277f7012817316e9 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4c036aed042c58826f383dbe64505838 = L.popup({
"maxWidth": 320,
});
var html_415a13aa9d3fd9146b8d2371ea48cbd1 = $(`<div id="html_415a13aa9d3fd9146b8d2371ea48cbd1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مقاومة التآكل للمقاولات</b><br> الرقم الموحد: 7012432196<br> السجل التجاري: 2055022506<br> المنطقة: الجبيل<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00010995,49.62513088" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4c036aed042c58826f383dbe64505838.setContent(html_415a13aa9d3fd9146b8d2371ea48cbd1);
marker_3ae5a5d3acf437c2034e6d9934436152.bindPopup(popup_4c036aed042c58826f383dbe64505838)
;
marker_3ae5a5d3acf437c2034e6d9934436152.setIcon(icon_5e421f275caafc4c277f7012817316e9);
var marker_7375066afd104b420e0d894c9a3089dc = L.marker(
[26.99573615, 49.62094227],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_8aef2f40a9280841c529d51b2330854b = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_57a9c8ae5b260fce29ca267cf48b8a09 = L.popup({
"maxWidth": 320,
});
var html_b0a4cb6ff6514c2bea25241818ec69d3 = $(`<div id="html_b0a4cb6ff6514c2bea25241818ec69d3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سندان الدولية المحدودة</b><br> الرقم الموحد: 7001511612<br> السجل التجاري: 2055004244<br> المنطقة: الجبيل<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.99573615,49.62094227" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_57a9c8ae5b260fce29ca267cf48b8a09.setContent(html_b0a4cb6ff6514c2bea25241818ec69d3);
marker_7375066afd104b420e0d894c9a3089dc.bindPopup(popup_57a9c8ae5b260fce29ca267cf48b8a09)
;
marker_7375066afd104b420e0d894c9a3089dc.setIcon(icon_8aef2f40a9280841c529d51b2330854b);
var marker_74985b02afae069c62cd90419750cb59 = L.marker(
[26.99684731, 49.6125979],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_3ae344f8c66f320e570f7008a5fdd221 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c5f417f76f34c2be84f2271d1dad6e2a = L.popup({
"maxWidth": 320,
});
var html_e8b8c605b2edf4c95b259ecbc9905f13 = $(`<div id="html_e8b8c605b2edf4c95b259ecbc9905f13" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سمة الخليج المحدودة</b><br> الرقم الموحد: 7016465796<br> السجل التجاري: 1010617290<br> المنطقة: الجبيل<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.99684731,49.6125979" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c5f417f76f34c2be84f2271d1dad6e2a.setContent(html_e8b8c605b2edf4c95b259ecbc9905f13);
marker_74985b02afae069c62cd90419750cb59.bindPopup(popup_c5f417f76f34c2be84f2271d1dad6e2a)
;
marker_74985b02afae069c62cd90419750cb59.setIcon(icon_3ae344f8c66f320e570f7008a5fdd221);
var marker_20f25072c42f98ccaa6962b0c3d37931 = L.marker(
[26.99725050991859, 49.61862243711948],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_8fdf3e216f214169b9ab22ca7405f753 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fe01f4ecf3238195ca1e52ac324a6692 = L.popup({
"maxWidth": 320,
});
var html_bb636c61b8399ddb1e52a26dde24da1b = $(`<div id="html_bb636c61b8399ddb1e52a26dde24da1b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة حارس السعودية المحدودة</b><br> الرقم الموحد: 7001632913<br> السجل التجاري: 2055015465<br> المنطقة: الجبيل<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.99725050991859,49.61862243711948" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fe01f4ecf3238195ca1e52ac324a6692.setContent(html_bb636c61b8399ddb1e52a26dde24da1b);
marker_20f25072c42f98ccaa6962b0c3d37931.bindPopup(popup_fe01f4ecf3238195ca1e52ac324a6692)
;
marker_20f25072c42f98ccaa6962b0c3d37931.setIcon(icon_8fdf3e216f214169b9ab22ca7405f753);
var marker_a5f69d2c756175a22f9aaadd457821ff = L.marker(
[27.00041524777572, 49.62405466474593],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_8bcb7f8b57e46e861a293a8a219c425b = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f5345a815e81a67cb756e1ea052c35ca = L.popup({
"maxWidth": 320,
});
var html_ddcc3a157eab0c18dc115bfbc40d8128 = $(`<div id="html_ddcc3a157eab0c18dc115bfbc40d8128" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بيست غلف اوفرسيس المحدودة</b><br> الرقم الموحد: 7029245011<br> السجل التجاري: 2055133686<br> المنطقة: الجبيل<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00041524777572,49.62405466474593" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f5345a815e81a67cb756e1ea052c35ca.setContent(html_ddcc3a157eab0c18dc115bfbc40d8128);
marker_a5f69d2c756175a22f9aaadd457821ff.bindPopup(popup_f5345a815e81a67cb756e1ea052c35ca)
;
marker_a5f69d2c756175a22f9aaadd457821ff.setIcon(icon_8bcb7f8b57e46e861a293a8a219c425b);
var marker_dc4ff320e89a63438e90b692364318ee = L.marker(
[26.99668487134742, 49.6253007337129],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_fde35230df4c1ddc514f04661f012991 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e7ca045999ca7a3268f61218a6ce7607 = L.popup({
"maxWidth": 320,
});
var html_6d326d63bb4aae4234c4113b4ee06cae = $(`<div id="html_6d326d63bb4aae4234c4113b4ee06cae" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أوف شور لمعدات السلامة</b><br> الرقم الموحد: 7042558036<br> السجل التجاري: 2050199734<br> المنطقة: الجبيل<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.99668487134742,49.6253007337129" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e7ca045999ca7a3268f61218a6ce7607.setContent(html_6d326d63bb4aae4234c4113b4ee06cae);
marker_dc4ff320e89a63438e90b692364318ee.bindPopup(popup_e7ca045999ca7a3268f61218a6ce7607)
;
marker_dc4ff320e89a63438e90b692364318ee.setIcon(icon_fde35230df4c1ddc514f04661f012991);
var marker_ef0b9ebd027bf43e3c50558315a45144 = L.marker(
[26.99725043523346, 49.62667350657284],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_b11623e9889b5121613728db785c5037 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1265c66444c91e95e5305f7e36d36331 = L.popup({
"maxWidth": 320,
});
var html_cd69ab2921eb162788f708cc2826b34a = $(`<div id="html_cd69ab2921eb162788f708cc2826b34a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة انجينيوس نتورك للصناعة</b><br> الرقم الموحد: 7034899240<br> السجل التجاري: 1010917372<br> المنطقة: الجبيل<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.99725043523346,49.62667350657284" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1265c66444c91e95e5305f7e36d36331.setContent(html_cd69ab2921eb162788f708cc2826b34a);
marker_ef0b9ebd027bf43e3c50558315a45144.bindPopup(popup_1265c66444c91e95e5305f7e36d36331)
;
marker_ef0b9ebd027bf43e3c50558315a45144.setIcon(icon_b11623e9889b5121613728db785c5037);
var marker_fb545487a4f93e35e2021cdfd9214e6e = L.marker(
[26.99679553, 49.61762315],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_486175272bc48c2ccff69114dcc68dd2 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_07f999ab46648faff43232ac86d766af = L.popup({
"maxWidth": 320,
});
var html_6b695c6818be87d02d52d4c6575a58ba = $(`<div id="html_6b695c6818be87d02d52d4c6575a58ba" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الطاقة الناشئة للمقاولات</b><br> الرقم الموحد: 7006372556<br> السجل التجاري: 2051058656<br> المنطقة: الجبيل<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.99679553,49.61762315" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_07f999ab46648faff43232ac86d766af.setContent(html_6b695c6818be87d02d52d4c6575a58ba);
marker_fb545487a4f93e35e2021cdfd9214e6e.bindPopup(popup_07f999ab46648faff43232ac86d766af)
;
marker_fb545487a4f93e35e2021cdfd9214e6e.setIcon(icon_486175272bc48c2ccff69114dcc68dd2);
var marker_2f744ebcc9fd60097774058263bf22b0 = L.marker(
[26.9961229019524, 49.6252009277335],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_c3af31f84e8fccc15fb5d4f562583a1d = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_aa6a9c954239cc28c1b90ca01671ba31 = L.popup({
"maxWidth": 320,
});
var html_110eb6c0c8f22bd3d88f924791002e99 = $(`<div id="html_110eb6c0c8f22bd3d88f924791002e99" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة السنسنة للأعمال الصناعية والإنشاءات</b><br> الرقم الموحد: 7012349127<br> السجل التجاري: 2055124116<br> المنطقة: الجبيل<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.9961229019524,49.6252009277335" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_aa6a9c954239cc28c1b90ca01671ba31.setContent(html_110eb6c0c8f22bd3d88f924791002e99);
marker_2f744ebcc9fd60097774058263bf22b0.bindPopup(popup_aa6a9c954239cc28c1b90ca01671ba31)
;
marker_2f744ebcc9fd60097774058263bf22b0.setIcon(icon_c3af31f84e8fccc15fb5d4f562583a1d);
var marker_5801ac80d437ed988f96eb32619e28e2 = L.marker(
[26.99621636581889, 49.62313701568777],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_73cf7c0c02ace5a23dc60e3e6b6aaf78 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a0bdb0cb7071ab55c48465fe719e4df1 = L.popup({
"maxWidth": 320,
});
var html_e9c7fc6b1ac6112bc9869aa39bce3c2b = $(`<div id="html_e9c7fc6b1ac6112bc9869aa39bce3c2b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>سلزر كمتك الشرق الأوسط</b><br> الرقم الموحد: 7037993883<br> السجل التجاري: 2055140897<br> المنطقة: الجبيل<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.99621636581889,49.62313701568777" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a0bdb0cb7071ab55c48465fe719e4df1.setContent(html_e9c7fc6b1ac6112bc9869aa39bce3c2b);
marker_5801ac80d437ed988f96eb32619e28e2.bindPopup(popup_a0bdb0cb7071ab55c48465fe719e4df1)
;
marker_5801ac80d437ed988f96eb32619e28e2.setIcon(icon_73cf7c0c02ace5a23dc60e3e6b6aaf78);
var marker_a9f4bfe9e3a88b20dd72c03633269b7c = L.marker(
[26.99699658018957, 49.62413303554058],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_2289b405e40bf57fac5f16163264dae9 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0432062f4097e91ae4f4002889b0e8b4 = L.popup({
"maxWidth": 320,
});
var html_91417ecde467e42c6f435e10480c7fb4 = $(`<div id="html_91417ecde467e42c6f435e10480c7fb4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>اي ايه جي حلول للطاقة</b><br> الرقم الموحد: 7033960084<br> السجل التجاري: 2055137519<br> المنطقة: الجبيل<br> الحارة: اليرموك<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.99699658018957,49.62413303554058" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0432062f4097e91ae4f4002889b0e8b4.setContent(html_91417ecde467e42c6f435e10480c7fb4);
marker_a9f4bfe9e3a88b20dd72c03633269b7c.bindPopup(popup_0432062f4097e91ae4f4002889b0e8b4)
;
marker_a9f4bfe9e3a88b20dd72c03633269b7c.setIcon(icon_2289b405e40bf57fac5f16163264dae9);
var marker_6c8d8b033f58ce32e265f5a048bdb91b = L.marker(
[27.00262071993, 49.6225158534855],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_cbea70340af5eb3be942d133ac6ea104 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e294d73c4e82437cbf015d30dbc563df = L.popup({
"maxWidth": 320,
});
var html_2344ff13370c7c520d53a49c87154658 = $(`<div id="html_2344ff13370c7c520d53a49c87154658" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة سورجين تيك كومباني ليمتد</b><br> الرقم الموحد: 7001639819<br> السجل التجاري: 2055013025<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00262071993,49.6225158534855" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e294d73c4e82437cbf015d30dbc563df.setContent(html_2344ff13370c7c520d53a49c87154658);
marker_6c8d8b033f58ce32e265f5a048bdb91b.bindPopup(popup_e294d73c4e82437cbf015d30dbc563df)
;
marker_6c8d8b033f58ce32e265f5a048bdb91b.setIcon(icon_cbea70340af5eb3be942d133ac6ea104);
var marker_62a96142ebb41a3691f57ab88ec44a12 = L.marker(
[27.00360594, 49.6175634],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_5459f49b62cb3f25e0f776624ff2a447 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_026016fc7c79701486757f42af5ff942 = L.popup({
"maxWidth": 320,
});
var html_4b882a8477c5639f18a6fdb5c8520ada = $(`<div id="html_4b882a8477c5639f18a6fdb5c8520ada" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة هجارس العربية المحدودة</b><br> الرقم الموحد: 7030092840<br> السجل التجاري: 2055134104<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00360594,49.6175634" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_026016fc7c79701486757f42af5ff942.setContent(html_4b882a8477c5639f18a6fdb5c8520ada);
marker_62a96142ebb41a3691f57ab88ec44a12.bindPopup(popup_026016fc7c79701486757f42af5ff942)
;
marker_62a96142ebb41a3691f57ab88ec44a12.setIcon(icon_5459f49b62cb3f25e0f776624ff2a447);
var marker_136ecd0da74b8576eb8a0c30c2026e31 = L.marker(
[27.00140151, 49.62547232],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_c73a13cffebff9b8609367a2673891b4 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7ff082e08cb3486fbc5b357de739590d = L.popup({
"maxWidth": 320,
});
var html_5e2398ebc57c4df1ff9747a1dce68629 = $(`<div id="html_5e2398ebc57c4df1ff9747a1dce68629" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مطاعم سمرقند الجبيل لتقديم الوجبات</b><br> الرقم الموحد: 7012946120<br> السجل التجاري: 2055014416<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00140151,49.62547232" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7ff082e08cb3486fbc5b357de739590d.setContent(html_5e2398ebc57c4df1ff9747a1dce68629);
marker_136ecd0da74b8576eb8a0c30c2026e31.bindPopup(popup_7ff082e08cb3486fbc5b357de739590d)
;
marker_136ecd0da74b8576eb8a0c30c2026e31.setIcon(icon_c73a13cffebff9b8609367a2673891b4);
var marker_fe99c748dbc166bed5287caa9317e24f = L.marker(
[27.0123373697024, 49.6224226036152],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_aa5170aeaa2a30d4972357572daf24d5 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0ccce5f66cecb80712947215bfeebd24 = L.popup({
"maxWidth": 320,
});
var html_21a63499358cd3522f65062dad4cbe11 = $(`<div id="html_21a63499358cd3522f65062dad4cbe11" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مطاعم الشباب البخاري لتقديم</b><br> الرقم الموحد: 7007346732<br> السجل التجاري: 2055104322<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.0123373697024,49.6224226036152" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0ccce5f66cecb80712947215bfeebd24.setContent(html_21a63499358cd3522f65062dad4cbe11);
marker_fe99c748dbc166bed5287caa9317e24f.bindPopup(popup_0ccce5f66cecb80712947215bfeebd24)
;
marker_fe99c748dbc166bed5287caa9317e24f.setIcon(icon_aa5170aeaa2a30d4972357572daf24d5);
var marker_77d3b2bb0df3b19131fc9e0f1b0bc29b = L.marker(
[27.00736818, 49.61710711],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_c8295a1439af647ec43d5f248847aa9e = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_23ed5d764e465043c7f2052c55504c71 = L.popup({
"maxWidth": 320,
});
var html_f9ec3e97627c468de35b4d16aaa00f0a = $(`<div id="html_f9ec3e97627c468de35b4d16aaa00f0a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصادر الطاقة الذكية</b><br> الرقم الموحد: 7002798028<br> السجل التجاري: 2055123094<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00736818,49.61710711" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_23ed5d764e465043c7f2052c55504c71.setContent(html_f9ec3e97627c468de35b4d16aaa00f0a);
marker_77d3b2bb0df3b19131fc9e0f1b0bc29b.bindPopup(popup_23ed5d764e465043c7f2052c55504c71)
;
marker_77d3b2bb0df3b19131fc9e0f1b0bc29b.setIcon(icon_c8295a1439af647ec43d5f248847aa9e);
var marker_761ee8d3e547fecfd4f466f14d3e5342 = L.marker(
[27.00427154, 49.61775291],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_bf8d35c70d5edfa8f38a9a295f6748f7 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c22b7d37a68cacb16fd450c9a8edf613 = L.popup({
"maxWidth": 320,
});
var html_9b146f6e9940ad6dbe5eb9a4863f26e4 = $(`<div id="html_9b146f6e9940ad6dbe5eb9a4863f26e4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كريستال الدولية المحدودة</b><br> الرقم الموحد: 7009435707<br> السجل التجاري: 2055023395<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00427154,49.61775291" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c22b7d37a68cacb16fd450c9a8edf613.setContent(html_9b146f6e9940ad6dbe5eb9a4863f26e4);
marker_761ee8d3e547fecfd4f466f14d3e5342.bindPopup(popup_c22b7d37a68cacb16fd450c9a8edf613)
;
marker_761ee8d3e547fecfd4f466f14d3e5342.setIcon(icon_bf8d35c70d5edfa8f38a9a295f6748f7);
var marker_9c549ec71b15ff20387e54afbef5f068 = L.marker(
[27.00446874, 49.62171297],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_1bc6db8778ef025331c28b1a51c67f30 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_297e31f082382f6bcf022863c998ce69 = L.popup({
"maxWidth": 320,
});
var html_8b11760bd607d9876017e2838328562e = $(`<div id="html_8b11760bd607d9876017e2838328562e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة غرابي الجبيل للصناعة</b><br> الرقم الموحد: 7011354854<br> السجل التجاري: 2055022298<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00446874,49.62171297" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_297e31f082382f6bcf022863c998ce69.setContent(html_8b11760bd607d9876017e2838328562e);
marker_9c549ec71b15ff20387e54afbef5f068.bindPopup(popup_297e31f082382f6bcf022863c998ce69)
;
marker_9c549ec71b15ff20387e54afbef5f068.setIcon(icon_1bc6db8778ef025331c28b1a51c67f30);
var marker_4f3803bc700482898978bd3e323db9ba = L.marker(
[27.00433261, 49.62794267],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_d220a73a5147d09680d8c2242053e320 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_acfb98a98be863b4154de63139f5efc3 = L.popup({
"maxWidth": 320,
});
var html_8832865ae1cf5e0e1ec4a4845673f81c = $(`<div id="html_8832865ae1cf5e0e1ec4a4845673f81c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عناية الاجتياح المحدودة</b><br> الرقم الموحد: 7025564233<br> السجل التجاري: 2055131152<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00433261,49.62794267" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_acfb98a98be863b4154de63139f5efc3.setContent(html_8832865ae1cf5e0e1ec4a4845673f81c);
marker_4f3803bc700482898978bd3e323db9ba.bindPopup(popup_acfb98a98be863b4154de63139f5efc3)
;
marker_4f3803bc700482898978bd3e323db9ba.setIcon(icon_d220a73a5147d09680d8c2242053e320);
var marker_b66033a79cefc94fb789fe440c0700cd = L.marker(
[27.00803132410428, 49.62474140382923],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_6e5a658541634ccc55cd165d10363a76 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c2de1fb09f82ceee11bf673f4bb26c7e = L.popup({
"maxWidth": 320,
});
var html_4468c5d28c6e0f3515682e711fe3aa32 = $(`<div id="html_4468c5d28c6e0f3515682e711fe3aa32" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سماء المحركات المحدودة</b><br> الرقم الموحد: 7040806478<br> السجل التجاري: 2050190849<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00803132410428,49.62474140382923" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c2de1fb09f82ceee11bf673f4bb26c7e.setContent(html_4468c5d28c6e0f3515682e711fe3aa32);
marker_b66033a79cefc94fb789fe440c0700cd.bindPopup(popup_c2de1fb09f82ceee11bf673f4bb26c7e)
;
marker_b66033a79cefc94fb789fe440c0700cd.setIcon(icon_6e5a658541634ccc55cd165d10363a76);
var marker_0e02785e167315efb43ec2fa89073b05 = L.marker(
[27.00623767, 49.61711205],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_f3626352171ac01a250f7cc39dae473e = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_00ea53be014fbd6fbb59660fbbc22063 = L.popup({
"maxWidth": 320,
});
var html_81932af58385db1c2a88e291554d005f = $(`<div id="html_81932af58385db1c2a88e291554d005f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ساس جزيرة العرب للتجارة والمقاولات والخدمات الصناعية ال</b><br> الرقم الموحد: 7001710206<br> السجل التجاري: 2055014123<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00623767,49.61711205" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_00ea53be014fbd6fbb59660fbbc22063.setContent(html_81932af58385db1c2a88e291554d005f);
marker_0e02785e167315efb43ec2fa89073b05.bindPopup(popup_00ea53be014fbd6fbb59660fbbc22063)
;
marker_0e02785e167315efb43ec2fa89073b05.setIcon(icon_f3626352171ac01a250f7cc39dae473e);
var marker_642bf810222e70763d8ff9f2159e3803 = L.marker(
[27.01070985334525, 49.63109666630572],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_c9775c0e9420dc842745898506cbe4d9 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ed41c2c9e77ea3bc5614417c6378fba1 = L.popup({
"maxWidth": 320,
});
var html_5a41a2d5c5ac1a5cbcded997227a5255 = $(`<div id="html_5a41a2d5c5ac1a5cbcded997227a5255" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة خبراء جاي للمقاولات</b><br> الرقم الموحد: 7035098271<br> السجل التجاري: 2031111672<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01070985334525,49.63109666630572" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ed41c2c9e77ea3bc5614417c6378fba1.setContent(html_5a41a2d5c5ac1a5cbcded997227a5255);
marker_642bf810222e70763d8ff9f2159e3803.bindPopup(popup_ed41c2c9e77ea3bc5614417c6378fba1)
;
marker_642bf810222e70763d8ff9f2159e3803.setIcon(icon_c9775c0e9420dc842745898506cbe4d9);
var marker_3e181827c551bf0833c54bf8394f4543 = L.marker(
[27.00738714006833, 49.61979020205226],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_eaa5396e4e65da856b4239d6b9a5a5b2 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a7a6679125e2247d20b573d9749c24b0 = L.popup({
"maxWidth": 320,
});
var html_a1d5f4bbf45703f91490069d409ac4cc = $(`<div id="html_a1d5f4bbf45703f91490069d409ac4cc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ألياف الأتحاد الصناعية</b><br> الرقم الموحد: 7036371636<br> السجل التجاري: 2050175824<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00738714006833,49.61979020205226" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a7a6679125e2247d20b573d9749c24b0.setContent(html_a1d5f4bbf45703f91490069d409ac4cc);
marker_3e181827c551bf0833c54bf8394f4543.bindPopup(popup_a7a6679125e2247d20b573d9749c24b0)
;
marker_3e181827c551bf0833c54bf8394f4543.setIcon(icon_eaa5396e4e65da856b4239d6b9a5a5b2);
var marker_868b006fc8b6db8b1d7807a75466835f = L.marker(
[27.00539765165969, 49.62866664590674],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_bf69b59096a717c1f51156b82b0db385 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bd92ef168c90e1c9944cf09ced932308 = L.popup({
"maxWidth": 320,
});
var html_007060eb0e6beac458f6cd7374200b97 = $(`<div id="html_007060eb0e6beac458f6cd7374200b97" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ايه تي للمعادن</b><br> الرقم الموحد: 7038839069<br> السجل التجاري: 2055143402<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00539765165969,49.62866664590674" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bd92ef168c90e1c9944cf09ced932308.setContent(html_007060eb0e6beac458f6cd7374200b97);
marker_868b006fc8b6db8b1d7807a75466835f.bindPopup(popup_bd92ef168c90e1c9944cf09ced932308)
;
marker_868b006fc8b6db8b1d7807a75466835f.setIcon(icon_bf69b59096a717c1f51156b82b0db385);
var marker_9218401b70403f10b6f7beb42938b857 = L.marker(
[27.00660974235186, 49.62361757785693],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_3af394c336fd9eafb4b6401fd2152bf7 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4d1a8c57fccbff613fbb2e3162c3ab8b = L.popup({
"maxWidth": 320,
});
var html_98d5f7da885faa3aa2f4a3fd19363f43 = $(`<div id="html_98d5f7da885faa3aa2f4a3fd19363f43" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الديناميكية العربية المحدودة</b><br> الرقم الموحد: 7035290860<br> السجل التجاري: 2055136931<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00660974235186,49.62361757785693" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4d1a8c57fccbff613fbb2e3162c3ab8b.setContent(html_98d5f7da885faa3aa2f4a3fd19363f43);
marker_9218401b70403f10b6f7beb42938b857.bindPopup(popup_4d1a8c57fccbff613fbb2e3162c3ab8b)
;
marker_9218401b70403f10b6f7beb42938b857.setIcon(icon_3af394c336fd9eafb4b6401fd2152bf7);
var marker_5973cdc55f440c48b666dd3b42e99807 = L.marker(
[27.0123505799719, 49.6226610851799],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_71a7b248eecca6fa613bb1718d2d1725 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_30e8888984022df4c9d9cbdc2c7e68ff = L.popup({
"maxWidth": 320,
});
var html_2f2e31955f8f36399422c454f088a69b = $(`<div id="html_2f2e31955f8f36399422c454f088a69b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ادم لوجيكس لتأجير المعدات</b><br> الرقم الموحد: 7030840404<br> السجل التجاري: 2055134520<br> المنطقة: الجبيل<br> الحارة: ج16<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.0123505799719,49.6226610851799" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_30e8888984022df4c9d9cbdc2c7e68ff.setContent(html_2f2e31955f8f36399422c454f088a69b);
marker_5973cdc55f440c48b666dd3b42e99807.bindPopup(popup_30e8888984022df4c9d9cbdc2c7e68ff)
;
marker_5973cdc55f440c48b666dd3b42e99807.setIcon(icon_71a7b248eecca6fa613bb1718d2d1725);
var marker_309c1e2e1348f26f1ceac7bda85f846a = L.marker(
[27.02013669, 49.62795111],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_b2a64b5e16252e8f881a82dc11ea2135 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8ce619304de9890045781a3835bdc103 = L.popup({
"maxWidth": 320,
});
var html_32d9cb2b01282dd979d6a941b63abfa7 = $(`<div id="html_32d9cb2b01282dd979d6a941b63abfa7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تيم الانشائية للمقاولات المعمارية</b><br> الرقم الموحد: 7035033435<br> السجل التجاري: 2055136439<br> المنطقة: الجبيل<br> الحارة: الضباب<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.02013669,49.62795111" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8ce619304de9890045781a3835bdc103.setContent(html_32d9cb2b01282dd979d6a941b63abfa7);
marker_309c1e2e1348f26f1ceac7bda85f846a.bindPopup(popup_8ce619304de9890045781a3835bdc103)
;
marker_309c1e2e1348f26f1ceac7bda85f846a.setIcon(icon_b2a64b5e16252e8f881a82dc11ea2135);
var marker_4136ae60af7bd5b439d4c2f36fe81bc1 = L.marker(
[26.96567636418953, 49.63601300404394],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_7b56120ed1c5419d82f71ff141660874 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d295c6df205fc4e90fd74075d74ae4c6 = L.popup({
"maxWidth": 320,
});
var html_b4a3b84a0f322fac6442e2850d7e6c07 = $(`<div id="html_b4a3b84a0f322fac6442e2850d7e6c07" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>ميجاتيك للبناء والهندسة الخاصة المحدودة</b><br> الرقم الموحد: 7035278972<br> السجل التجاري: 2051247987<br> المنطقة: الجبيل<br> الحارة: ج8<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.96567636418953,49.63601300404394" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d295c6df205fc4e90fd74075d74ae4c6.setContent(html_b4a3b84a0f322fac6442e2850d7e6c07);
marker_4136ae60af7bd5b439d4c2f36fe81bc1.bindPopup(popup_d295c6df205fc4e90fd74075d74ae4c6)
;
marker_4136ae60af7bd5b439d4c2f36fe81bc1.setIcon(icon_7b56120ed1c5419d82f71ff141660874);
var marker_8c92c98869140a5df24b1570df011ae9 = L.marker(
[26.96416788, 49.63515247],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_df96b90ea7d1943081c15dd8287d2520 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e92a812b463fc338b908cd5762a6f68b = L.popup({
"maxWidth": 320,
});
var html_9bdebb6773d8ba3d234b384d4e1bc398 = $(`<div id="html_9bdebb6773d8ba3d234b384d4e1bc398" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الكترومك للصناعة</b><br> الرقم الموحد: 7026913983<br> السجل التجاري: 2050152077<br> المنطقة: الجبيل<br> الحارة: ج8<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.96416788,49.63515247" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e92a812b463fc338b908cd5762a6f68b.setContent(html_9bdebb6773d8ba3d234b384d4e1bc398);
marker_8c92c98869140a5df24b1570df011ae9.bindPopup(popup_e92a812b463fc338b908cd5762a6f68b)
;
marker_8c92c98869140a5df24b1570df011ae9.setIcon(icon_df96b90ea7d1943081c15dd8287d2520);
var marker_4abbfe6a2a1f238006c07c2f2de4de93 = L.marker(
[27.0030683419043, 49.6370558424954],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_fee536d805e05d3c12e0172b54b92f1c = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bd5e65621e595a3e351640f168fd68fc = L.popup({
"maxWidth": 320,
});
var html_8d10a416aaa8a3398b936be4e294ef5d = $(`<div id="html_8d10a416aaa8a3398b936be4e294ef5d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>أي تي اس كونتراكتينغ</b><br> الرقم الموحد: 7015788610<br> السجل التجاري: 2055126309<br> المنطقة: الجبيل<br> الحارة: الطوية<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.0030683419043,49.6370558424954" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bd5e65621e595a3e351640f168fd68fc.setContent(html_8d10a416aaa8a3398b936be4e294ef5d);
marker_4abbfe6a2a1f238006c07c2f2de4de93.bindPopup(popup_bd5e65621e595a3e351640f168fd68fc)
;
marker_4abbfe6a2a1f238006c07c2f2de4de93.setIcon(icon_fee536d805e05d3c12e0172b54b92f1c);
var marker_c0ae33233d976a7f14ace0dc4b57563e = L.marker(
[27.01673252, 49.64287689],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_cb83d7dfdf5079fa17583e7363a2cba2 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9c5b29c683147c02d4463c1ce3597c35 = L.popup({
"maxWidth": 320,
});
var html_f898362944281f546189fcbbd21cbde9 = $(`<div id="html_f898362944281f546189fcbbd21cbde9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شميدت إم إي لوجيستيكس</b><br> الرقم الموحد: 7010464290<br> السجل التجاري: 2055025255<br> المنطقة: الجبيل<br> الحارة: الواحة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01673252,49.64287689" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9c5b29c683147c02d4463c1ce3597c35.setContent(html_f898362944281f546189fcbbd21cbde9);
marker_c0ae33233d976a7f14ace0dc4b57563e.bindPopup(popup_9c5b29c683147c02d4463c1ce3597c35)
;
marker_c0ae33233d976a7f14ace0dc4b57563e.setIcon(icon_cb83d7dfdf5079fa17583e7363a2cba2);
var marker_1222933ce026ab4a6d71dd7891883753 = L.marker(
[27.01339869, 49.6411079],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_691ab49e16bcb083e9c89460306d874a = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c5caaa04aa85f0ebab21f19fe0fe9d1a = L.popup({
"maxWidth": 320,
});
var html_9a375f9ce800a3200bce426bedac2ca2 = $(`<div id="html_9a375f9ce800a3200bce426bedac2ca2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كايتون ناتي الخنيني المحدودة</b><br> الرقم الموحد: 7001527592<br> السجل التجاري: 2055008484<br> المنطقة: الجبيل<br> الحارة: الواحة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01339869,49.6411079" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c5caaa04aa85f0ebab21f19fe0fe9d1a.setContent(html_9a375f9ce800a3200bce426bedac2ca2);
marker_1222933ce026ab4a6d71dd7891883753.bindPopup(popup_c5caaa04aa85f0ebab21f19fe0fe9d1a)
;
marker_1222933ce026ab4a6d71dd7891883753.setIcon(icon_691ab49e16bcb083e9c89460306d874a);
var marker_ca433857efa33f4d64697da637608479 = L.marker(
[27.01589363, 49.63417885],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_aff19925f0f20df8d961bc7566bc3507 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c5026b7b7a064481784868d161a12d26 = L.popup({
"maxWidth": 320,
});
var html_c3632e291d8edd4562feb34591f0f38b = $(`<div id="html_c3632e291d8edd4562feb34591f0f38b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة صدارة للكيميائيات</b><br> الرقم الموحد: 7001688857<br> السجل التجاري: 2055014427<br> المنطقة: الجبيل<br> الحارة: الواحة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01589363,49.63417885" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c5026b7b7a064481784868d161a12d26.setContent(html_c3632e291d8edd4562feb34591f0f38b);
marker_ca433857efa33f4d64697da637608479.bindPopup(popup_c5026b7b7a064481784868d161a12d26)
;
marker_ca433857efa33f4d64697da637608479.setIcon(icon_aff19925f0f20df8d961bc7566bc3507);
var marker_776ef547c366ee939a59990c11d81a5d = L.marker(
[27.0222896, 49.642078],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_5c146d866e1989d7a68cece6ab1d3a80 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_87cb67caf575967f0b3dcf695a3e55ad = L.popup({
"maxWidth": 320,
});
var html_7d7092f827b40cb3bfeccbe6385cdbb5 = $(`<div id="html_7d7092f827b40cb3bfeccbe6385cdbb5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سامسونج إي اند ايه العربية المحدودة</b><br> الرقم الموحد: 7001401251<br> السجل التجاري: 2055014964<br> المنطقة: الجبيل<br> الحارة: الواحة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.0222896,49.642078" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_87cb67caf575967f0b3dcf695a3e55ad.setContent(html_7d7092f827b40cb3bfeccbe6385cdbb5);
marker_776ef547c366ee939a59990c11d81a5d.bindPopup(popup_87cb67caf575967f0b3dcf695a3e55ad)
;
marker_776ef547c366ee939a59990c11d81a5d.setIcon(icon_5c146d866e1989d7a68cece6ab1d3a80);
var marker_723723a724813d4d13fc2dc4860c62b9 = L.marker(
[27.01959326, 49.63774412],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_a85f29af33f6ea9865b29a6a795af751 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6675a99159d61c6b040e4577eadeb4af = L.popup({
"maxWidth": 320,
});
var html_991c54203af460618840bec79d23c8f1 = $(`<div id="html_991c54203af460618840bec79d23c8f1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة خالد احمد الخنيني وشريكه المحدودة</b><br> الرقم الموحد: 7001477558<br> السجل التجاري: 2055005848<br> المنطقة: الجبيل<br> الحارة: الواحة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01959326,49.63774412" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6675a99159d61c6b040e4577eadeb4af.setContent(html_991c54203af460618840bec79d23c8f1);
marker_723723a724813d4d13fc2dc4860c62b9.bindPopup(popup_6675a99159d61c6b040e4577eadeb4af)
;
marker_723723a724813d4d13fc2dc4860c62b9.setIcon(icon_a85f29af33f6ea9865b29a6a795af751);
var marker_27fc8a6f5d26b7d968538b78bb7baedb = L.marker(
[27.01627375188572, 49.64024002440986],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_b8d460af4a67100d87c47453260dbc7f = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8ad1ca1a37c69770ed575128b75ee37d = L.popup({
"maxWidth": 320,
});
var html_b17b1d932da2a776c853824037a3dd70 = $(`<div id="html_b17b1d932da2a776c853824037a3dd70" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بيسكو العربية المحدودة</b><br> الرقم الموحد: 7048841675<br> السجل التجاري: 2055161182<br> المنطقة: الجبيل<br> الحارة: الواحة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01627375188572,49.64024002440986" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8ad1ca1a37c69770ed575128b75ee37d.setContent(html_b17b1d932da2a776c853824037a3dd70);
marker_27fc8a6f5d26b7d968538b78bb7baedb.bindPopup(popup_8ad1ca1a37c69770ed575128b75ee37d)
;
marker_27fc8a6f5d26b7d968538b78bb7baedb.setIcon(icon_b8d460af4a67100d87c47453260dbc7f);
var marker_87ac2a8d59a50b56de7088feec04ab44 = L.marker(
[27.0198783, 49.64256071],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_7a49e761a0340b5ec38b5de1bd9db16e = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c9d97c24900f6540608b12833ffff243 = L.popup({
"maxWidth": 320,
});
var html_c2cc14b9d0b0f90a7bbe7661f0253b89 = $(`<div id="html_c2cc14b9d0b0f90a7bbe7661f0253b89" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أكيو كونو للعازل المحدودة</b><br> الرقم الموحد: 7001552392<br> السجل التجاري: 2055009639<br> المنطقة: الجبيل<br> الحارة: الواحة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.0198783,49.64256071" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c9d97c24900f6540608b12833ffff243.setContent(html_c2cc14b9d0b0f90a7bbe7661f0253b89);
marker_87ac2a8d59a50b56de7088feec04ab44.bindPopup(popup_c9d97c24900f6540608b12833ffff243)
;
marker_87ac2a8d59a50b56de7088feec04ab44.setIcon(icon_7a49e761a0340b5ec38b5de1bd9db16e);
var marker_c53c990db2e1460af550c1437818e90e = L.marker(
[27.01403015, 49.64054399],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_ccd58720007d9fdca2ff762c585db941 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_158168f2f8bbbfbcc6f0adf4e923fd98 = L.popup({
"maxWidth": 320,
});
var html_1a8c439388d2a3dfd548d26855a1a967 = $(`<div id="html_1a8c439388d2a3dfd548d26855a1a967" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اينجيكون الخنيني المحدودة</b><br> الرقم الموحد: 7021281691<br> السجل التجاري: 2055129618<br> المنطقة: الجبيل<br> الحارة: الواحة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01403015,49.64054399" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_158168f2f8bbbfbcc6f0adf4e923fd98.setContent(html_1a8c439388d2a3dfd548d26855a1a967);
marker_c53c990db2e1460af550c1437818e90e.bindPopup(popup_158168f2f8bbbfbcc6f0adf4e923fd98)
;
marker_c53c990db2e1460af550c1437818e90e.setIcon(icon_ccd58720007d9fdca2ff762c585db941);
var marker_2c9da4c5e71ff8b59cb51ae627be47eb = L.marker(
[27.02239145, 49.64228697],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_3f5544d66a90a288b2117ba8e30e41e3 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_98cbc4a4e6e03d57194609cd427e11d2 = L.popup({
"maxWidth": 320,
});
var html_084f5cbfcedfc742d16b5a8de76bd0ca = $(`<div id="html_084f5cbfcedfc742d16b5a8de76bd0ca" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اركيدون السعودية للمقاولات</b><br> الرقم الموحد: 7023943074<br> السجل التجاري: 2055130751<br> المنطقة: الجبيل<br> الحارة: الواحة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.02239145,49.64228697" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_98cbc4a4e6e03d57194609cd427e11d2.setContent(html_084f5cbfcedfc742d16b5a8de76bd0ca);
marker_2c9da4c5e71ff8b59cb51ae627be47eb.bindPopup(popup_98cbc4a4e6e03d57194609cd427e11d2)
;
marker_2c9da4c5e71ff8b59cb51ae627be47eb.setIcon(icon_3f5544d66a90a288b2117ba8e30e41e3);
var marker_916d627602630b3b58fefdfd5d5a9b45 = L.marker(
[27.02233671902448, 49.64223630908971],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_b0cfa80a66bc71e613db2c0a0e49a6fb = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6541b458294fc46335323e15cec3a928 = L.popup({
"maxWidth": 320,
});
var html_fd5bb3947cbb49c066061c34c149e9ee = $(`<div id="html_fd5bb3947cbb49c066061c34c149e9ee" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>جاما العربية للتجارة ش ذ م م</b><br> الرقم الموحد: 7025968210<br> السجل التجاري: 2055131436<br> المنطقة: الجبيل<br> الحارة: الواحة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.02233671902448,49.64223630908971" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6541b458294fc46335323e15cec3a928.setContent(html_fd5bb3947cbb49c066061c34c149e9ee);
marker_916d627602630b3b58fefdfd5d5a9b45.bindPopup(popup_6541b458294fc46335323e15cec3a928)
;
marker_916d627602630b3b58fefdfd5d5a9b45.setIcon(icon_b0cfa80a66bc71e613db2c0a0e49a6fb);
var marker_8e4ca170055de5d8f55aa6f0e718c9e1 = L.marker(
[26.99609498202894, 49.64436632455723],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_b830d50a2c594066d482bbbadd24e73b = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4a2f5059ac2a72d22008c3f6587639fc = L.popup({
"maxWidth": 320,
});
var html_31ec7b055714053eaa1876fe5ba4c4e2 = $(`<div id="html_31ec7b055714053eaa1876fe5ba4c4e2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ماراثون العالمية للمقاولات</b><br> الرقم الموحد: 7034194600<br> السجل التجاري: 2055137384<br> المنطقة: الجبيل<br> الحارة: البستان<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.99609498202894,49.64436632455723" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4a2f5059ac2a72d22008c3f6587639fc.setContent(html_31ec7b055714053eaa1876fe5ba4c4e2);
marker_8e4ca170055de5d8f55aa6f0e718c9e1.bindPopup(popup_4a2f5059ac2a72d22008c3f6587639fc)
;
marker_8e4ca170055de5d8f55aa6f0e718c9e1.setIcon(icon_b830d50a2c594066d482bbbadd24e73b);
var marker_d72ab3e24c7c79af43b5131547613bca = L.marker(
[27.00097602, 49.64370822],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_6d3803a3eb6d24b5edc33abbe3b84c0b = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_39ffdc213d669123ac343fe8aaa10135 = L.popup({
"maxWidth": 320,
});
var html_c633000b2106afb8ab23c481ca7a004d = $(`<div id="html_c633000b2106afb8ab23c481ca7a004d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كاسر الاسعار للكماليات</b><br> الرقم الموحد: 7007902054<br> السجل التجاري: 2055026260<br> المنطقة: الجبيل<br> الحارة: البستان<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00097602,49.64370822" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_39ffdc213d669123ac343fe8aaa10135.setContent(html_c633000b2106afb8ab23c481ca7a004d);
marker_d72ab3e24c7c79af43b5131547613bca.bindPopup(popup_39ffdc213d669123ac343fe8aaa10135)
;
marker_d72ab3e24c7c79af43b5131547613bca.setIcon(icon_6d3803a3eb6d24b5edc33abbe3b84c0b);
var marker_fda63a5fcc6597d1e30deaefe712add6 = L.marker(
[26.99614751958244, 49.64439284589578],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_f34e0a686ffaace22adc26ff07b770e4 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_409b3e37469abdf1a508d5eabfe3b20e = L.popup({
"maxWidth": 320,
});
var html_a945ba0fb82241cc9297c6e2c7d71182 = $(`<div id="html_a945ba0fb82241cc9297c6e2c7d71182" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة شعلة ساس الدولية المحدودة</b><br> الرقم الموحد: 7007831469<br> السجل التجاري: 2055026158<br> المنطقة: الجبيل<br> الحارة: البستان<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.99614751958244,49.64439284589578" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_409b3e37469abdf1a508d5eabfe3b20e.setContent(html_a945ba0fb82241cc9297c6e2c7d71182);
marker_fda63a5fcc6597d1e30deaefe712add6.bindPopup(popup_409b3e37469abdf1a508d5eabfe3b20e)
;
marker_fda63a5fcc6597d1e30deaefe712add6.setIcon(icon_f34e0a686ffaace22adc26ff07b770e4);
var marker_0749ff644cc7081af69bea2f80fafb7e = L.marker(
[26.9927762287273, 49.6446408884091],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_a410a31f7a59b4ab0b16098efc8218bf = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8cb577b1d1d43022bf7ddeed6af29abc = L.popup({
"maxWidth": 320,
});
var html_748ca8fc8edef14e0f529772e11c7218 = $(`<div id="html_748ca8fc8edef14e0f529772e11c7218" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة إنسبكتوريت انترناشونال السعودية العربية المحدودة</b><br> الرقم الموحد: 7011967648<br> السجل التجاري: 2055006990<br> المنطقة: الجبيل<br> الحارة: البستان<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.9927762287273,49.6446408884091" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8cb577b1d1d43022bf7ddeed6af29abc.setContent(html_748ca8fc8edef14e0f529772e11c7218);
marker_0749ff644cc7081af69bea2f80fafb7e.bindPopup(popup_8cb577b1d1d43022bf7ddeed6af29abc)
;
marker_0749ff644cc7081af69bea2f80fafb7e.setIcon(icon_a410a31f7a59b4ab0b16098efc8218bf);
var marker_4179590c874a01f05ea6241e6de367cc = L.marker(
[26.99606471576224, 49.64417201153768],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_6afec22603ce7439fdcb4fd340f135c5 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_214d62867fbf7a3f152944130579eec8 = L.popup({
"maxWidth": 320,
});
var html_9db5fd9f87e5e19c881d7413da24e357 = $(`<div id="html_9db5fd9f87e5e19c881d7413da24e357" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة انلايت كونتراكتينغ المحدودة</b><br> الرقم الموحد: 7038566605<br> السجل التجاري: 2055142115<br> المنطقة: الجبيل<br> الحارة: البستان<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.99606471576224,49.64417201153768" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_214d62867fbf7a3f152944130579eec8.setContent(html_9db5fd9f87e5e19c881d7413da24e357);
marker_4179590c874a01f05ea6241e6de367cc.bindPopup(popup_214d62867fbf7a3f152944130579eec8)
;
marker_4179590c874a01f05ea6241e6de367cc.setIcon(icon_6afec22603ce7439fdcb4fd340f135c5);
var marker_af6609dd8af7d4e34f3a45bf430ad0c6 = L.marker(
[26.98485702480074, 49.64604031294584],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_d7c07bc72ed6233e45923b6e149d0145 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_00c9c0298c89bc2cad828e3816e626c3 = L.popup({
"maxWidth": 320,
});
var html_c9d4942c16ccef49bd6a709cce5d9524 = $(`<div id="html_c9d4942c16ccef49bd6a709cce5d9524" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مدرسة بركة الرائعة للتعليم</b><br> الرقم الموحد: 7037506628<br> السجل التجاري: 2055140014<br> المنطقة: الجبيل<br> الحارة: التعاون<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.98485702480074,49.64604031294584" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_00c9c0298c89bc2cad828e3816e626c3.setContent(html_c9d4942c16ccef49bd6a709cce5d9524);
marker_af6609dd8af7d4e34f3a45bf430ad0c6.bindPopup(popup_00c9c0298c89bc2cad828e3816e626c3)
;
marker_af6609dd8af7d4e34f3a45bf430ad0c6.setIcon(icon_d7c07bc72ed6233e45923b6e149d0145);
var marker_b28ba8a925246fd1c9ae6c4a7fa3c070 = L.marker(
[26.98159216620492, 49.64680872781446],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_8bc7a7b1339a10987e923a3a6b968386 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a2b12089cc35a7d6277c9135ed936f5b = L.popup({
"maxWidth": 320,
});
var html_c20d01775e6e2635425c4907771e6ed4 = $(`<div id="html_c20d01775e6e2635425c4907771e6ed4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة لايم لايت برودكشن للتجارة</b><br> الرقم الموحد: 7041269361<br> السجل التجاري: 1009082629<br> المنطقة: الجبيل<br> الحارة: التعاون<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.98159216620492,49.64680872781446" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a2b12089cc35a7d6277c9135ed936f5b.setContent(html_c20d01775e6e2635425c4907771e6ed4);
marker_b28ba8a925246fd1c9ae6c4a7fa3c070.bindPopup(popup_a2b12089cc35a7d6277c9135ed936f5b)
;
marker_b28ba8a925246fd1c9ae6c4a7fa3c070.setIcon(icon_8bc7a7b1339a10987e923a3a6b968386);
var marker_4be3126a7ee8d4627c86ddf1855a3d89 = L.marker(
[26.97367270716227, 49.64756439439952],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_efbca87dcb9c5dd7e2020a661f5d2811 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dda4187361d1b1c1b4f06617050efcd8 = L.popup({
"maxWidth": 320,
});
var html_25de1e53c9bdcd80bd51bc6c3f52ec51 = $(`<div id="html_25de1e53c9bdcd80bd51bc6c3f52ec51" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة راس امبيشن الدولية للمقاولات</b><br> الرقم الموحد: 7016074903<br> السجل التجاري: 2055126668<br> المنطقة: الجبيل<br> الحارة: التعاون<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.97367270716227,49.64756439439952" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dda4187361d1b1c1b4f06617050efcd8.setContent(html_25de1e53c9bdcd80bd51bc6c3f52ec51);
marker_4be3126a7ee8d4627c86ddf1855a3d89.bindPopup(popup_dda4187361d1b1c1b4f06617050efcd8)
;
marker_4be3126a7ee8d4627c86ddf1855a3d89.setIcon(icon_efbca87dcb9c5dd7e2020a661f5d2811);
var marker_e78b0109e1e1e3071d0302b315a7d9d5 = L.marker(
[26.9883635760882, 49.6452463263822],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_99b528198c62c43995b6591a655ac876 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bfd106a7fcf4a3b64b3761d61d2139a4 = L.popup({
"maxWidth": 320,
});
var html_87375832c6d579d46ae5f4f228d39520 = $(`<div id="html_87375832c6d579d46ae5f4f228d39520" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة خدمات المضيئة العربية للمقاولات</b><br> الرقم الموحد: 7009692471<br> السجل التجاري: 2055104671<br> المنطقة: الجبيل<br> الحارة: التعاون<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.9883635760882,49.6452463263822" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bfd106a7fcf4a3b64b3761d61d2139a4.setContent(html_87375832c6d579d46ae5f4f228d39520);
marker_e78b0109e1e1e3071d0302b315a7d9d5.bindPopup(popup_bfd106a7fcf4a3b64b3761d61d2139a4)
;
marker_e78b0109e1e1e3071d0302b315a7d9d5.setIcon(icon_99b528198c62c43995b6591a655ac876);
var marker_b465f0c881ea3bdacb2aea1c4c5962ea = L.marker(
[26.99028097236922, 49.64538498296704],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_3b3ed96564c03835a0cdff86461f78fd = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c33f0de8348048a029c85ead0f2758e3 = L.popup({
"maxWidth": 320,
});
var html_1cda85cfbe5b4b620cc8972e98921c5a = $(`<div id="html_1cda85cfbe5b4b620cc8972e98921c5a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بلاديون لتقنية المعلومات المحدودة</b><br> الرقم الموحد: 7001871933<br> السجل التجاري: 2055023388<br> المنطقة: الجبيل<br> الحارة: التعاون<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.99028097236922,49.64538498296704" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c33f0de8348048a029c85ead0f2758e3.setContent(html_1cda85cfbe5b4b620cc8972e98921c5a);
marker_b465f0c881ea3bdacb2aea1c4c5962ea.bindPopup(popup_c33f0de8348048a029c85ead0f2758e3)
;
marker_b465f0c881ea3bdacb2aea1c4c5962ea.setIcon(icon_3b3ed96564c03835a0cdff86461f78fd);
var marker_a7077f5bbc9ea30037bb1ed805c61d51 = L.marker(
[26.9763183590001, 49.647277832],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_68925644ad25df61ddbb14a203e934bd = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5f19dd40239869c872d3b132dc70ef2f = L.popup({
"maxWidth": 320,
});
var html_3e5d7d68c9885b4a42b218fb631f3e9d = $(`<div id="html_3e5d7d68c9885b4a42b218fb631f3e9d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أماكو العربية للمقاولات</b><br> الرقم الموحد: 7011476186<br> السجل التجاري: 2055003404<br> المنطقة: الجبيل<br> الحارة: التعاون<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.9763183590001,49.647277832" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5f19dd40239869c872d3b132dc70ef2f.setContent(html_3e5d7d68c9885b4a42b218fb631f3e9d);
marker_a7077f5bbc9ea30037bb1ed805c61d51.bindPopup(popup_5f19dd40239869c872d3b132dc70ef2f)
;
marker_a7077f5bbc9ea30037bb1ed805c61d51.setIcon(icon_68925644ad25df61ddbb14a203e934bd);
var marker_f1697c1d5e353e64bfaf70a6abae4e09 = L.marker(
[26.96705779, 49.64074175],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_cf3fcc66a91f1ca409387fb559c192ce = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_36842542f3f649348a84bf536d06bd61 = L.popup({
"maxWidth": 320,
});
var html_d0e82d303f6c4cf1580100ddc48749b4 = $(`<div id="html_d0e82d303f6c4cf1580100ddc48749b4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة لؤلؤة العرب الدولية للمقاولات</b><br> الرقم الموحد: 7034003611<br> السجل التجاري: 2051248360<br> المنطقة: الجبيل<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.96705779,49.64074175" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_36842542f3f649348a84bf536d06bd61.setContent(html_d0e82d303f6c4cf1580100ddc48749b4);
marker_f1697c1d5e353e64bfaf70a6abae4e09.bindPopup(popup_36842542f3f649348a84bf536d06bd61)
;
marker_f1697c1d5e353e64bfaf70a6abae4e09.setIcon(icon_cf3fcc66a91f1ca409387fb559c192ce);
var marker_bfc2ab65a50e2cbe60f2d4c8b4233e48 = L.marker(
[26.963110256849, 49.648686654314],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_809aeca554cef29da9d506764bfdc2d9 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7e24dca9be858995f5d858bb6e4c6abd = L.popup({
"maxWidth": 320,
});
var html_b79adab90c0e7b3b55b5f0cdfa2d16df = $(`<div id="html_b79adab90c0e7b3b55b5f0cdfa2d16df" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ساندتك جنرال كونتركتینغ السعودیة</b><br> الرقم الموحد: 7014114230<br> السجل التجاري: 2055024845<br> المنطقة: الجبيل<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.963110256849,49.648686654314" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7e24dca9be858995f5d858bb6e4c6abd.setContent(html_b79adab90c0e7b3b55b5f0cdfa2d16df);
marker_bfc2ab65a50e2cbe60f2d4c8b4233e48.bindPopup(popup_7e24dca9be858995f5d858bb6e4c6abd)
;
marker_bfc2ab65a50e2cbe60f2d4c8b4233e48.setIcon(icon_809aeca554cef29da9d506764bfdc2d9);
var marker_ef4c3adfb5a064b218e46dc51274139a = L.marker(
[26.96489737865404, 49.64874016354162],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_522229be7ed9213a9d408e6f781ad25a = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5dcdbb3c6a4f8216e95d37dc1ca547ed = L.popup({
"maxWidth": 320,
});
var html_dc530c50a5e856d888d7a6f17d6f0279 = $(`<div id="html_dc530c50a5e856d888d7a6f17d6f0279" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة آيس عالمي للمقاولات</b><br> الرقم الموحد: 7035169262<br> السجل التجاري: 2055136683<br> المنطقة: الجبيل<br> الحارة: الجوهرة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.96489737865404,49.64874016354162" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5dcdbb3c6a4f8216e95d37dc1ca547ed.setContent(html_dc530c50a5e856d888d7a6f17d6f0279);
marker_ef4c3adfb5a064b218e46dc51274139a.bindPopup(popup_5dcdbb3c6a4f8216e95d37dc1ca547ed)
;
marker_ef4c3adfb5a064b218e46dc51274139a.setIcon(icon_522229be7ed9213a9d408e6f781ad25a);
var marker_eed0838fde2bca17e418879fcce51ac4 = L.marker(
[27.01926169, 49.64424676],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_caba6280083b31a7e99527099d426c7d = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c0033f7072ddd789fc895e9274250027 = L.popup({
"maxWidth": 320,
});
var html_62d3622b52aac22b5151b36d6d2a46d8 = $(`<div id="html_62d3622b52aac22b5151b36d6d2a46d8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مركز مايو لطب الاسنان</b><br> الرقم الموحد: 7012916081<br> السجل التجاري: 2055012943<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01926169,49.64424676" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c0033f7072ddd789fc895e9274250027.setContent(html_62d3622b52aac22b5151b36d6d2a46d8);
marker_eed0838fde2bca17e418879fcce51ac4.bindPopup(popup_c0033f7072ddd789fc895e9274250027)
;
marker_eed0838fde2bca17e418879fcce51ac4.setIcon(icon_caba6280083b31a7e99527099d426c7d);
var marker_e12442f7e39687bf9e36c86a927ca0da = L.marker(
[27.01672633148144, 49.65193379670382],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_7205dcd58a3592302db72e0094cb9812 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8b87569b95f0a213ed95015d0cb385e0 = L.popup({
"maxWidth": 320,
});
var html_7f3676c64a98116347b2a406531426e5 = $(`<div id="html_7f3676c64a98116347b2a406531426e5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة هارتفورد ستيم بويلر إنترناشونال</b><br> الرقم الموحد: 7034959549<br> السجل التجاري: 2055136315<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01672633148144,49.65193379670382" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8b87569b95f0a213ed95015d0cb385e0.setContent(html_7f3676c64a98116347b2a406531426e5);
marker_e12442f7e39687bf9e36c86a927ca0da.bindPopup(popup_8b87569b95f0a213ed95015d0cb385e0)
;
marker_e12442f7e39687bf9e36c86a927ca0da.setIcon(icon_7205dcd58a3592302db72e0094cb9812);
var marker_ea9803f6ce8a38045005e7b86da636d0 = L.marker(
[27.01655802, 49.65233053],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_ecca0faf3a9b7202581e544c109dd92f = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1c6b83ca6c6e0bde024e7836c4a29a00 = L.popup({
"maxWidth": 320,
});
var html_33db9bd8f348b8e174e2089f299fd2fe = $(`<div id="html_33db9bd8f348b8e174e2089f299fd2fe" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركه طلال محمد الفريجي للتجارة</b><br> الرقم الموحد: 7012410440<br> السجل التجاري: 4700009270<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01655802,49.65233053" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1c6b83ca6c6e0bde024e7836c4a29a00.setContent(html_33db9bd8f348b8e174e2089f299fd2fe);
marker_ea9803f6ce8a38045005e7b86da636d0.bindPopup(popup_1c6b83ca6c6e0bde024e7836c4a29a00)
;
marker_ea9803f6ce8a38045005e7b86da636d0.setIcon(icon_ecca0faf3a9b7202581e544c109dd92f);
var marker_bd958075a5e7aeddfe9c64118d3d087b = L.marker(
[27.01905779, 49.64302249],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_d65072008f3c6e406f08ff8c3c4056f2 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b790d846b63e53d03440093fb8ad4088 = L.popup({
"maxWidth": 320,
});
var html_a8fb04255b2689b9540a132351bd2dcd = $(`<div id="html_a8fb04255b2689b9540a132351bd2dcd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركه توقيت الخليج للمقاولات</b><br> الرقم الموحد: 7014520519<br> السجل التجاري: 2055100000<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01905779,49.64302249" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b790d846b63e53d03440093fb8ad4088.setContent(html_a8fb04255b2689b9540a132351bd2dcd);
marker_bd958075a5e7aeddfe9c64118d3d087b.bindPopup(popup_b790d846b63e53d03440093fb8ad4088)
;
marker_bd958075a5e7aeddfe9c64118d3d087b.setIcon(icon_d65072008f3c6e406f08ff8c3c4056f2);
var marker_838c7d189a7909c19ac0be0f7539a95e = L.marker(
[27.00964768, 49.65365966],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_17c0d988d6ff87c3ee73f353189c5b3b = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9f02b2306efa2a99a2be30baf778899a = L.popup({
"maxWidth": 320,
});
var html_f9d32c6de79ddb8d1349b48514880f78 = $(`<div id="html_f9d32c6de79ddb8d1349b48514880f78" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة وقت الخبراء للمقاولات العامة</b><br> الرقم الموحد: 7016578119<br> السجل التجاري: 2055127218<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00964768,49.65365966" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9f02b2306efa2a99a2be30baf778899a.setContent(html_f9d32c6de79ddb8d1349b48514880f78);
marker_838c7d189a7909c19ac0be0f7539a95e.bindPopup(popup_9f02b2306efa2a99a2be30baf778899a)
;
marker_838c7d189a7909c19ac0be0f7539a95e.setIcon(icon_17c0d988d6ff87c3ee73f353189c5b3b);
var marker_f0ee14e3be8057fcfb9d392b38e44444 = L.marker(
[27.009003029309, 49.6514269498832],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_f6f417c0e12c8f60a3cf05f5034a3f4b = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_931d53e19e0d44f255a24869d9bc9450 = L.popup({
"maxWidth": 320,
});
var html_b10e18aacb549ad52d8b91eeba4a53f5 = $(`<div id="html_b10e18aacb549ad52d8b91eeba4a53f5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة وسام البحر المتوسط للمقاولات</b><br> الرقم الموحد: 7011787699<br> السجل التجاري: 2055006542<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.009003029309,49.6514269498832" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_931d53e19e0d44f255a24869d9bc9450.setContent(html_b10e18aacb549ad52d8b91eeba4a53f5);
marker_f0ee14e3be8057fcfb9d392b38e44444.bindPopup(popup_931d53e19e0d44f255a24869d9bc9450)
;
marker_f0ee14e3be8057fcfb9d392b38e44444.setIcon(icon_f6f417c0e12c8f60a3cf05f5034a3f4b);
var marker_46584f1dbde45d9e4bf6ecd5c6dc271b = L.marker(
[27.00594308, 49.65489539],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_03867e538c133dda7f2f61bb05b084d4 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_def849ddfd08431be2a72e47057c0237 = L.popup({
"maxWidth": 320,
});
var html_a8a30def71b5e0a876d8f3e40470af76 = $(`<div id="html_a8a30def71b5e0a876d8f3e40470af76" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نايف خليفه الشمري للمقاولات</b><br> الرقم الموحد: 7014958800<br> السجل التجاري: 2055006992<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00594308,49.65489539" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_def849ddfd08431be2a72e47057c0237.setContent(html_a8a30def71b5e0a876d8f3e40470af76);
marker_46584f1dbde45d9e4bf6ecd5c6dc271b.bindPopup(popup_def849ddfd08431be2a72e47057c0237)
;
marker_46584f1dbde45d9e4bf6ecd5c6dc271b.setIcon(icon_03867e538c133dda7f2f61bb05b084d4);
var marker_b0f8cd939e144df14eeb314a08675e18 = L.marker(
[27.0128826339864, 49.6539876531424],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_58d49919113da1a9578cf8bbfd639307 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_75bf3102deb84f347829c23dfcb7cafa = L.popup({
"maxWidth": 320,
});
var html_41242dd99777b13a227bad7e6ffd8e39 = $(`<div id="html_41242dd99777b13a227bad7e6ffd8e39" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مرب للمقاولات</b><br> الرقم الموحد: 7006641406<br> السجل التجاري: 2055010242<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.0128826339864,49.6539876531424" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_75bf3102deb84f347829c23dfcb7cafa.setContent(html_41242dd99777b13a227bad7e6ffd8e39);
marker_b0f8cd939e144df14eeb314a08675e18.bindPopup(popup_75bf3102deb84f347829c23dfcb7cafa)
;
marker_b0f8cd939e144df14eeb314a08675e18.setIcon(icon_58d49919113da1a9578cf8bbfd639307);
var marker_fe3a7ab7ea3ba9da276008c79ff00822 = L.marker(
[27.0056542, 49.65277298],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_cc07f2dcf964b29ef92c8a0b33f20a00 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6d889278d5eefc8a60a597672b2520ef = L.popup({
"maxWidth": 320,
});
var html_788049da37a2ced3b974f8f2d58b9931 = $(`<div id="html_788049da37a2ced3b974f8f2d58b9931" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة متلوك كونستراكشن العربية المحدودة</b><br> الرقم الموحد: 7021219857<br> السجل التجاري: 2055129561<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.0056542,49.65277298" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6d889278d5eefc8a60a597672b2520ef.setContent(html_788049da37a2ced3b974f8f2d58b9931);
marker_fe3a7ab7ea3ba9da276008c79ff00822.bindPopup(popup_6d889278d5eefc8a60a597672b2520ef)
;
marker_fe3a7ab7ea3ba9da276008c79ff00822.setIcon(icon_cc07f2dcf964b29ef92c8a0b33f20a00);
var marker_9b11cac17af6dfbc3a6925c5cad49054 = L.marker(
[27.0134764365671, 49.653882150147],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_7a2056cfbb819f19fc5527c7b291e47b = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a3f099fa828f604cb211642815109b80 = L.popup({
"maxWidth": 320,
});
var html_cbcb457a7d7617da223b3af6b7e34f5a = $(`<div id="html_cbcb457a7d7617da223b3af6b7e34f5a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ليفل العربية المحدودة</b><br> الرقم الموحد: 7035222806<br> السجل التجاري: 2051247789<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.0134764365671,49.653882150147" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a3f099fa828f604cb211642815109b80.setContent(html_cbcb457a7d7617da223b3af6b7e34f5a);
marker_9b11cac17af6dfbc3a6925c5cad49054.bindPopup(popup_a3f099fa828f604cb211642815109b80)
;
marker_9b11cac17af6dfbc3a6925c5cad49054.setIcon(icon_7a2056cfbb819f19fc5527c7b291e47b);
var marker_8cc846705fd1fe4efffc3cc16346b15d = L.marker(
[27.00912996, 49.64785593],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_50811bf37c22d4246f352796293aaa92 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_47bc450092e998404d6876b63c1416c2 = L.popup({
"maxWidth": 320,
});
var html_29346c13d7a394087e7e0dffdd64bc05 = $(`<div id="html_29346c13d7a394087e7e0dffdd64bc05" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فنار العربية الدولية</b><br> الرقم الموحد: 7011016370<br> السجل التجاري: 2055007418<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.00912996,49.64785593" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_47bc450092e998404d6876b63c1416c2.setContent(html_29346c13d7a394087e7e0dffdd64bc05);
marker_8cc846705fd1fe4efffc3cc16346b15d.bindPopup(popup_47bc450092e998404d6876b63c1416c2)
;
marker_8cc846705fd1fe4efffc3cc16346b15d.setIcon(icon_50811bf37c22d4246f352796293aaa92);
var marker_156686ac3a99b799da7d89c5f7addfa7 = L.marker(
[27.01859823903435, 49.64329418604063],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_40608c45a929d6d54824cc29af397f6a = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_12de997e1b68f54779d58d39513c9670 = L.popup({
"maxWidth": 320,
});
var html_440ee30d06d28c8ecccfb913c7d7098c = $(`<div id="html_440ee30d06d28c8ecccfb913c7d7098c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سافین العربیة للمقاولات</b><br> الرقم الموحد: 7038474313<br> السجل التجاري: 2055141792<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01859823903435,49.64329418604063" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_12de997e1b68f54779d58d39513c9670.setContent(html_440ee30d06d28c8ecccfb913c7d7098c);
marker_156686ac3a99b799da7d89c5f7addfa7.bindPopup(popup_12de997e1b68f54779d58d39513c9670)
;
marker_156686ac3a99b799da7d89c5f7addfa7.setIcon(icon_40608c45a929d6d54824cc29af397f6a);
var marker_05f8f7c927eaa0fafc9628567a1387ca = L.marker(
[27.01508846, 49.64644221],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_4492551e99d9d3a4db349627a8857fc8 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8dfa4f696e3eb0d6341ad9ed03a78848 = L.popup({
"maxWidth": 320,
});
var html_b7ebef793121da08d8a57da03239b198 = $(`<div id="html_b7ebef793121da08d8a57da03239b198" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة زكيا للمقاولات العامة</b><br> الرقم الموحد: 7014567080<br> السجل التجاري: 2055012185<br> المنطقة: الجبيل<br> الحارة: الدانة<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=27.01508846,49.64644221" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8dfa4f696e3eb0d6341ad9ed03a78848.setContent(html_b7ebef793121da08d8a57da03239b198);
marker_05f8f7c927eaa0fafc9628567a1387ca.bindPopup(popup_8dfa4f696e3eb0d6341ad9ed03a78848)
;
marker_05f8f7c927eaa0fafc9628567a1387ca.setIcon(icon_4492551e99d9d3a4db349627a8857fc8);
var marker_0501b8f2230a3a644abdea6abe6395df = L.marker(
[26.89765824, 49.77475098],
{
}
).addTo(map_ac50e46efe33b9bfabe930862f08f4cf);
var icon_ca4bd3f99c0018b49b5bfdde14ec7e60 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c63d0ab758678e9cfa97411655651356 = L.popup({
"maxWidth": 320,
});
var html_086e29cb5c9ced57034244f135a6b0e1 = $(`<div id="html_086e29cb5c9ced57034244f135a6b0e1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جزلة لتحلية المياه شركة مساهمة سعودية مقفلة</b><br> الرقم الموحد: 7008130937<br> السجل التجاري: 2055128822<br> المنطقة: محطه التحليه<br> الحارة: ج1<br> <b>اسم الباحث:</b> أبرار ناصر ابن ثامر المطيري<br> <a href="https://www.google.com/maps?q=26.89765824,49.77475098" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c63d0ab758678e9cfa97411655651356.setContent(html_086e29cb5c9ced57034244f135a6b0e1);
marker_0501b8f2230a3a644abdea6abe6395df.bindPopup(popup_c63d0ab758678e9cfa97411655651356)
;
marker_0501b8f2230a3a644abdea6abe6395df.setIcon(icon_ca4bd3f99c0018b49b5bfdde14ec7e60);
</script>
</html> |