8323f89
| 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 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 | <!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_be15f3d68da4936e12bb72ec6d098c4e {
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_42" onclick="
var panel = document.getElementById('stats_42');
var btn = document.getElementById('btn_stats_42');
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_42" 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;
">حسن عبدالهادي بن حسين الحواج - 42</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 77</div>
<div><b>عدد الحارات:</b> 21</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• المدينة: 21</div><div>• قريه سكيكو (ارامكو): 16</div><div>• المطار: 10</div><div>• صناعية بقيق: 9</div><div>• ج23: 3</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_42_حسن_عبدالهادي_بن_حسين_الحواج.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:6px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:red;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>ربعي وسنوي</span>
</div>
<span style="color:#555;">(69)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:6px;">
<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;">(8)</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_be15f3d68da4936e12bb72ec6d098c4e" ></div>
</body>
<script>
var map_be15f3d68da4936e12bb72ec6d098c4e = L.map(
"map_be15f3d68da4936e12bb72ec6d098c4e",
{
center: [25.937616067060212, 49.704417288927885],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_555cc22b6ecfaa44c1652ccde2bd21e4 = 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_555cc22b6ecfaa44c1652ccde2bd21e4.addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var tile_layer_b4f0430a46dd779274d6155b93284372 = 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_b4f0430a46dd779274d6155b93284372.addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var tile_layer_9794403a1a18d9c106bd845d5cba8540 = 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_9794403a1a18d9c106bd845d5cba8540.addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var locate_control_760c8ad199063734dea4a6bd6a40317b = L.control.locate(
{}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var marker_14e5bd4a99e53e879d53f56e7b0c5a15 = L.marker(
[25.88573582, 49.60009213],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_e85bb9c6dbc47bb75d68bc416707ad33 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d06de1cda154abd6b22c2b9f9d34ff6b = L.popup({
"maxWidth": 320,
});
var html_0075ffd3a4263031a374cbddaceb43ef = $(`<div id="html_0075ffd3a4263031a374cbddaceb43ef" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة هامل اليامي للمقاولات<br> <b>الرقم الموحد:</b> 7006639053<br> <b>السجل التجاري:</b> 2059001035<br> <b>الحي:</b> ج23<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.88573582,49.60009213" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d06de1cda154abd6b22c2b9f9d34ff6b.setContent(html_0075ffd3a4263031a374cbddaceb43ef);
marker_14e5bd4a99e53e879d53f56e7b0c5a15.bindPopup(popup_d06de1cda154abd6b22c2b9f9d34ff6b)
;
marker_14e5bd4a99e53e879d53f56e7b0c5a15.setIcon(icon_e85bb9c6dbc47bb75d68bc416707ad33);
var marker_cb62f3c9abc5d536f572bbe6fa28c520 = L.marker(
[25.88251421, 49.60162646],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_91b6fabf22157d61073a9b5c311e395a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6214ddd4e4251afae5b6a70c72e9af71 = L.popup({
"maxWidth": 320,
});
var html_0bc1fbe980bfb92ca2609731d492f774 = $(`<div id="html_0bc1fbe980bfb92ca2609731d492f774" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة شبه الصحراء للمقاولات<br> <b>الرقم الموحد:</b> 7010455538<br> <b>السجل التجاري:</b> 2051043148<br> <b>الحي:</b> ج23<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.88251421,49.60162646" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6214ddd4e4251afae5b6a70c72e9af71.setContent(html_0bc1fbe980bfb92ca2609731d492f774);
marker_cb62f3c9abc5d536f572bbe6fa28c520.bindPopup(popup_6214ddd4e4251afae5b6a70c72e9af71)
;
marker_cb62f3c9abc5d536f572bbe6fa28c520.setIcon(icon_91b6fabf22157d61073a9b5c311e395a);
var marker_2a2569bb888041265582122d25d7dd25 = L.marker(
[25.892615269228, 49.608672660337696],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_cffd44c1ca4957a1dd8e60ee9ec35aa1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9a1be5e6762658570110b67fd8855834 = L.popup({
"maxWidth": 320,
});
var html_d0e3f097915987550f22ec643defa9d9 = $(`<div id="html_d0e3f097915987550f22ec643defa9d9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة اتحاد المقاولون الخليجية<br> <b>الرقم الموحد:</b> 7001495782<br> <b>السجل التجاري:</b> 2050049773<br> <b>الحي:</b> ج23<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.892615269228,49.608672660337696" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9a1be5e6762658570110b67fd8855834.setContent(html_d0e3f097915987550f22ec643defa9d9);
marker_2a2569bb888041265582122d25d7dd25.bindPopup(popup_9a1be5e6762658570110b67fd8855834)
;
marker_2a2569bb888041265582122d25d7dd25.setIcon(icon_cffd44c1ca4957a1dd8e60ee9ec35aa1);
var marker_18ac35e939dee493d5234917b2183158 = L.marker(
[25.91306356, 49.61221758],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_30a72e541fa7255d1ceaf8c564654d56 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3f210fed407726195876e18acb63577b = L.popup({
"maxWidth": 320,
});
var html_f80ce00e10a75b676fae1b6ab82c21aa = $(`<div id="html_f80ce00e10a75b676fae1b6ab82c21aa" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة اجيال البترول والطاقة للنقليات شركة شخص واحد<br> <b>الرقم الموحد:</b> 7012174988<br> <b>السجل التجاري:</b> 2059002841<br> <b>الحي:</b> البساتين وغرناطة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.91306356,49.61221758" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3f210fed407726195876e18acb63577b.setContent(html_f80ce00e10a75b676fae1b6ab82c21aa);
marker_18ac35e939dee493d5234917b2183158.bindPopup(popup_3f210fed407726195876e18acb63577b)
;
marker_18ac35e939dee493d5234917b2183158.setIcon(icon_30a72e541fa7255d1ceaf8c564654d56);
var marker_79a5297c19b7305280464571c893cbad = L.marker(
[25.92942231, 49.63729171],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_43cb6fb8ee3399c32e66a8fe7cdb6e38 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b26e59f889edbbd059df4f6614b3929c = L.popup({
"maxWidth": 320,
});
var html_168344cafd9e8dab180e97b064ba9752 = $(`<div id="html_168344cafd9e8dab180e97b064ba9752" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> روضة الالباب الاهلية<br> <b>الرقم الموحد:</b> 7012915661<br> <b>السجل التجاري:</b> 2059002143<br> <b>الحي:</b> حي النخيل والزهور<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92942231,49.63729171" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b26e59f889edbbd059df4f6614b3929c.setContent(html_168344cafd9e8dab180e97b064ba9752);
marker_79a5297c19b7305280464571c893cbad.bindPopup(popup_b26e59f889edbbd059df4f6614b3929c)
;
marker_79a5297c19b7305280464571c893cbad.setIcon(icon_43cb6fb8ee3399c32e66a8fe7cdb6e38);
var marker_0b5cb3b356d105e180931611af566c61 = L.marker(
[25.91884609, 49.64374092],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_f3c391c31fc31d99b021bb05050fb0cb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8c31c1a1f06af63088b5d20ea28527e3 = L.popup({
"maxWidth": 320,
});
var html_750d29f96ae77108e74420ec94d583a1 = $(`<div id="html_750d29f96ae77108e74420ec94d583a1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مركز الاظافر الناعمة للاسترخاء<br> <b>الرقم الموحد:</b> 7034049713<br> <b>السجل التجاري:</b> 2059103091<br> <b>الحي:</b> حي الروضة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.91884609,49.64374092" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8c31c1a1f06af63088b5d20ea28527e3.setContent(html_750d29f96ae77108e74420ec94d583a1);
marker_0b5cb3b356d105e180931611af566c61.bindPopup(popup_8c31c1a1f06af63088b5d20ea28527e3)
;
marker_0b5cb3b356d105e180931611af566c61.setIcon(icon_f3c391c31fc31d99b021bb05050fb0cb);
var marker_681cc111f8432604b7a8e533a8119008 = L.marker(
[25.9365121895618, 49.6482770779771],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_77aebf613e5bb4e5e1b7bc7ab8ea0953 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c8f50a42a9a3e6e664e983ccc6a18ab0 = L.popup({
"maxWidth": 320,
});
var html_66ddcec86b286e1a003d03dab0adff89 = $(`<div id="html_66ddcec86b286e1a003d03dab0adff89" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة أعمال العناية للصيانة<br> <b>الرقم الموحد:</b> 7009165684<br> <b>السجل التجاري:</b> 2059101941<br> <b>الحي:</b> الفردوس<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9365121895618,49.6482770779771" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c8f50a42a9a3e6e664e983ccc6a18ab0.setContent(html_66ddcec86b286e1a003d03dab0adff89);
marker_681cc111f8432604b7a8e533a8119008.bindPopup(popup_c8f50a42a9a3e6e664e983ccc6a18ab0)
;
marker_681cc111f8432604b7a8e533a8119008.setIcon(icon_77aebf613e5bb4e5e1b7bc7ab8ea0953);
var marker_8082a9fb681555f4f4ae6fb34650fcff = L.marker(
[25.98961655476583, 49.650837924887774],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_439c22d8ba7e5ffe3513942d642f5108 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3f9000ee3f302d40a2a41f04217e1642 = L.popup({
"maxWidth": 320,
});
var html_3f12047dccf31269552aae0614336f1a = $(`<div id="html_3f12047dccf31269552aae0614336f1a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الاداء النفطية الصناعية شركة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7035166433<br> <b>السجل التجاري:</b> 2055136678<br> <b>الحي:</b> ج37<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.98961655476583,49.650837924887774" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3f9000ee3f302d40a2a41f04217e1642.setContent(html_3f12047dccf31269552aae0614336f1a);
marker_8082a9fb681555f4f4ae6fb34650fcff.bindPopup(popup_3f9000ee3f302d40a2a41f04217e1642)
;
marker_8082a9fb681555f4f4ae6fb34650fcff.setIcon(icon_439c22d8ba7e5ffe3513942d642f5108);
var marker_2bd3104913d4ca48110021e7b3c47292 = L.marker(
[25.93002606, 49.6585603],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_48e5560fe744114ba0dcba8a1a8a7ca4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_58f8aaf6576db5a50427dd1cd2c1232d = L.popup({
"maxWidth": 320,
});
var html_db7e4119b4a44730eaa7c7ab884ad063 = $(`<div id="html_db7e4119b4a44730eaa7c7ab884ad063" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مجموعة محمد الصافي وشركاه التجارية<br> <b>الرقم الموحد:</b> 7009405098<br> <b>السجل التجاري:</b> 2059101710<br> <b>الحي:</b> المطار<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.93002606,49.6585603" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_58f8aaf6576db5a50427dd1cd2c1232d.setContent(html_db7e4119b4a44730eaa7c7ab884ad063);
marker_2bd3104913d4ca48110021e7b3c47292.bindPopup(popup_58f8aaf6576db5a50427dd1cd2c1232d)
;
marker_2bd3104913d4ca48110021e7b3c47292.setIcon(icon_48e5560fe744114ba0dcba8a1a8a7ca4);
var marker_8ebb8bfe16b1ed96a18411d74f6c7f3c = L.marker(
[25.93029736, 49.65849645],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_bed17666f5b2c12748193a1475f318d5 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2da8fddfa199f9b98938436ef71580ed = L.popup({
"maxWidth": 320,
});
var html_c3d072720768cb0ee4a4e93aa0cdab8f = $(`<div id="html_c3d072720768cb0ee4a4e93aa0cdab8f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عايض محمد خالد الهاجري للمقاولات<br> <b>الرقم الموحد:</b> 7027892798<br> <b>السجل التجاري:</b> 2059102545<br> <b>الحي:</b> المطار<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.93029736,49.65849645" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2da8fddfa199f9b98938436ef71580ed.setContent(html_c3d072720768cb0ee4a4e93aa0cdab8f);
marker_8ebb8bfe16b1ed96a18411d74f6c7f3c.bindPopup(popup_2da8fddfa199f9b98938436ef71580ed)
;
marker_8ebb8bfe16b1ed96a18411d74f6c7f3c.setIcon(icon_bed17666f5b2c12748193a1475f318d5);
var marker_0f553537fb61b530b7f6228fd5f3ee89 = L.marker(
[25.9240494177624, 49.6565691196063],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_19c64bdd612d1a7565e66bb1b13e2fed = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_44d4a6bf91373f43fc67e46758219146 = L.popup({
"maxWidth": 320,
});
var html_d9c8a19d4ac8c381b9fe8e8573dfacdb = $(`<div id="html_d9c8a19d4ac8c381b9fe8e8573dfacdb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة وفقه ناصر أحمد ال فنيس لخدمات السيارات<br> <b>الرقم الموحد:</b> 7010731177<br> <b>السجل التجاري:</b> 2059100938<br> <b>الحي:</b> المطار<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.9240494177624,49.6565691196063" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_44d4a6bf91373f43fc67e46758219146.setContent(html_d9c8a19d4ac8c381b9fe8e8573dfacdb);
marker_0f553537fb61b530b7f6228fd5f3ee89.bindPopup(popup_44d4a6bf91373f43fc67e46758219146)
;
marker_0f553537fb61b530b7f6228fd5f3ee89.setIcon(icon_19c64bdd612d1a7565e66bb1b13e2fed);
var marker_dcadc0d7da177aedb101514892b59dbb = L.marker(
[25.93383632, 49.6552651],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_1dc0c164d005174bb2043ea0c273c52b = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b6e305703b580943a9d62a28444d0501 = L.popup({
"maxWidth": 320,
});
var html_3f3824a8674e55cfe4bc365253cf75b0 = $(`<div id="html_3f3824a8674e55cfe4bc365253cf75b0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة رواسي الشرقيه للمقاولات العامة<br> <b>الرقم الموحد:</b> 7013737619<br> <b>السجل التجاري:</b> 2059001057<br> <b>الحي:</b> المطار<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.93383632,49.6552651" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b6e305703b580943a9d62a28444d0501.setContent(html_3f3824a8674e55cfe4bc365253cf75b0);
marker_dcadc0d7da177aedb101514892b59dbb.bindPopup(popup_b6e305703b580943a9d62a28444d0501)
;
marker_dcadc0d7da177aedb101514892b59dbb.setIcon(icon_1dc0c164d005174bb2043ea0c273c52b);
var marker_43034401a8baac292c5cef810a79c2f9 = L.marker(
[25.93283251, 49.65791236],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_645e78b1d983ea1740b53a78f308c0d4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3fa1a2326d24d0fdf0e5e34d8124f18c = L.popup({
"maxWidth": 320,
});
var html_1c8f345220d6552b1993b4aa486d45cd = $(`<div id="html_1c8f345220d6552b1993b4aa486d45cd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة النهضة الأولى المحدودة<br> <b>الرقم الموحد:</b> 7016038353<br> <b>السجل التجاري:</b> 2252103945<br> <b>الحي:</b> المطار<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.93283251,49.65791236" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3fa1a2326d24d0fdf0e5e34d8124f18c.setContent(html_1c8f345220d6552b1993b4aa486d45cd);
marker_43034401a8baac292c5cef810a79c2f9.bindPopup(popup_3fa1a2326d24d0fdf0e5e34d8124f18c)
;
marker_43034401a8baac292c5cef810a79c2f9.setIcon(icon_645e78b1d983ea1740b53a78f308c0d4);
var marker_46730888ff433e66864118bab696673a = L.marker(
[25.92507856, 49.65480084],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_78a0a4778790cd6b31cd199507d26dce = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9b664ebaa4abb8cfac176f77b3a43bd1 = L.popup({
"maxWidth": 320,
});
var html_8e67dda6a1b76a52ec9bcb6e720e591d = $(`<div id="html_8e67dda6a1b76a52ec9bcb6e720e591d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أسطول الشعلة للنقليات<br> <b>الرقم الموحد:</b> 7021698068<br> <b>السجل التجاري:</b> 2059102071<br> <b>الحي:</b> المطار<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92507856,49.65480084" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9b664ebaa4abb8cfac176f77b3a43bd1.setContent(html_8e67dda6a1b76a52ec9bcb6e720e591d);
marker_46730888ff433e66864118bab696673a.bindPopup(popup_9b664ebaa4abb8cfac176f77b3a43bd1)
;
marker_46730888ff433e66864118bab696673a.setIcon(icon_78a0a4778790cd6b31cd199507d26dce);
var marker_b2d23f7ddfaa501aaf72c570a9ea128c = L.marker(
[25.9325742487344, 49.6510236691686],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_0d8de0c72c0042d58eb61dfe7fe8c950 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8dd73c56376f630fff0cb9f99391a5a7 = L.popup({
"maxWidth": 320,
});
var html_aa392143f70ddbf62ae56b53e79096c4 = $(`<div id="html_aa392143f70ddbf62ae56b53e79096c4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة خالد علي آل غيثان للصيانة والنظافة<br> <b>الرقم الموحد:</b> 7011938441<br> <b>السجل التجاري:</b> 2059100536<br> <b>الحي:</b> المطار<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9325742487344,49.6510236691686" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8dd73c56376f630fff0cb9f99391a5a7.setContent(html_aa392143f70ddbf62ae56b53e79096c4);
marker_b2d23f7ddfaa501aaf72c570a9ea128c.bindPopup(popup_8dd73c56376f630fff0cb9f99391a5a7)
;
marker_b2d23f7ddfaa501aaf72c570a9ea128c.setIcon(icon_0d8de0c72c0042d58eb61dfe7fe8c950);
var marker_f1424ef768591e9899df3c43587d88e5 = L.marker(
[25.92588952, 49.65580741],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_e7db9e086b3175e96208140054464f57 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4950309ddd020279381bfd9962ea7cfc = L.popup({
"maxWidth": 320,
});
var html_215ed465f2be5da9c06dba765910a961 = $(`<div id="html_215ed465f2be5da9c06dba765910a961" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة احمد يحى ناصر اليامى للمقاولات<br> <b>الرقم الموحد:</b> 7013887117<br> <b>السجل التجاري:</b> 2059000288<br> <b>الحي:</b> المطار<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92588952,49.65580741" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4950309ddd020279381bfd9962ea7cfc.setContent(html_215ed465f2be5da9c06dba765910a961);
marker_f1424ef768591e9899df3c43587d88e5.bindPopup(popup_4950309ddd020279381bfd9962ea7cfc)
;
marker_f1424ef768591e9899df3c43587d88e5.setIcon(icon_e7db9e086b3175e96208140054464f57);
var marker_cbdd93fcffff46d2624574c17fcccdeb = L.marker(
[25.9292474958539, 49.6584686348256],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_b329455a7384fdd181a0931189b75c34 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7eec59199862f6b764d4e8f77118a7fe = L.popup({
"maxWidth": 320,
});
var html_64f63ed99fbf430c84408c05c4f9552a = $(`<div id="html_64f63ed99fbf430c84408c05c4f9552a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عيادات منار الصحه الطبي<br> <b>الرقم الموحد:</b> 7014501519<br> <b>السجل التجاري:</b> 2059000915<br> <b>الحي:</b> المطار<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.9292474958539,49.6584686348256" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7eec59199862f6b764d4e8f77118a7fe.setContent(html_64f63ed99fbf430c84408c05c4f9552a);
marker_cbdd93fcffff46d2624574c17fcccdeb.bindPopup(popup_7eec59199862f6b764d4e8f77118a7fe)
;
marker_cbdd93fcffff46d2624574c17fcccdeb.setIcon(icon_b329455a7384fdd181a0931189b75c34);
var marker_eb9ffb45a94e8a8e0cc8d8f712f7bc66 = L.marker(
[25.9346553856054, 49.6576342602365],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_2ea884d74c49c1cfa76d19ab281d8d6b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ea13a294738e714c380d672cda04fef2 = L.popup({
"maxWidth": 320,
});
var html_29aee87af33d7882a84e4c8adb07920f = $(`<div id="html_29aee87af33d7882a84e4c8adb07920f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سعد بن علي بن محمد العيسى للخدمات اللوجستية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7017087359<br> <b>السجل التجاري:</b> 2059101721<br> <b>الحي:</b> المطار<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9346553856054,49.6576342602365" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ea13a294738e714c380d672cda04fef2.setContent(html_29aee87af33d7882a84e4c8adb07920f);
marker_eb9ffb45a94e8a8e0cc8d8f712f7bc66.bindPopup(popup_ea13a294738e714c380d672cda04fef2)
;
marker_eb9ffb45a94e8a8e0cc8d8f712f7bc66.setIcon(icon_2ea884d74c49c1cfa76d19ab281d8d6b);
var marker_e05135d00b31513a9782d27af63a6584 = L.marker(
[25.921580664220212, 49.65024802623425],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_7554a9872a7cff7eb0c3364495fa251d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3ba346d2efea2d83503cb8fe3e9a73ec = L.popup({
"maxWidth": 320,
});
var html_529d7e9cddef29b005be1b971aaa7a4f = $(`<div id="html_529d7e9cddef29b005be1b971aaa7a4f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة سحاب النزهة للترفيه<br> <b>الرقم الموحد:</b> 7037260135<br> <b>السجل التجاري:</b> 2059103337<br> <b>الحي:</b> صناعية بقيق<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.921580664220212,49.65024802623425" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3ba346d2efea2d83503cb8fe3e9a73ec.setContent(html_529d7e9cddef29b005be1b971aaa7a4f);
marker_e05135d00b31513a9782d27af63a6584.bindPopup(popup_3ba346d2efea2d83503cb8fe3e9a73ec)
;
marker_e05135d00b31513a9782d27af63a6584.setIcon(icon_7554a9872a7cff7eb0c3364495fa251d);
var marker_7daa7418412903584767a46b97c30a85 = L.marker(
[25.9242028590821, 49.6552241662125],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_720e6619700b7ce871e4e53cf5efb71c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d666d35a3e3985816360a55cf391ffaa = L.popup({
"maxWidth": 320,
});
var html_e2c05aa8331b5d200c8ec863d879dd96 = $(`<div id="html_e2c05aa8331b5d200c8ec863d879dd96" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أبناء عبدالرحمن البدر للتجارة والمقاولات<br> <b>الرقم الموحد:</b> 7001767347<br> <b>السجل التجاري:</b> 2059000032<br> <b>الحي:</b> صناعية بقيق<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9242028590821,49.6552241662125" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d666d35a3e3985816360a55cf391ffaa.setContent(html_e2c05aa8331b5d200c8ec863d879dd96);
marker_7daa7418412903584767a46b97c30a85.bindPopup(popup_d666d35a3e3985816360a55cf391ffaa)
;
marker_7daa7418412903584767a46b97c30a85.setIcon(icon_720e6619700b7ce871e4e53cf5efb71c);
var marker_f992b8147675e7588e3a3257384eeb1e = L.marker(
[25.9238319442757, 49.6521075631945],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_89baf1a148062d3d3780eb224b8b22a7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_addc25c3fe5dba54e7c4d2f70c97d6e3 = L.popup({
"maxWidth": 320,
});
var html_975d9d0ae092a04643abeb70f76c6aa3 = $(`<div id="html_975d9d0ae092a04643abeb70f76c6aa3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة راشد للمقاولات<br> <b>الرقم الموحد:</b> 7011781031<br> <b>السجل التجاري:</b> 2059001422<br> <b>الحي:</b> صناعية بقيق<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9238319442757,49.6521075631945" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_addc25c3fe5dba54e7c4d2f70c97d6e3.setContent(html_975d9d0ae092a04643abeb70f76c6aa3);
marker_f992b8147675e7588e3a3257384eeb1e.bindPopup(popup_addc25c3fe5dba54e7c4d2f70c97d6e3)
;
marker_f992b8147675e7588e3a3257384eeb1e.setIcon(icon_89baf1a148062d3d3780eb224b8b22a7);
var marker_22e1e3e3ac978c67497a3a2c61f4c0a5 = L.marker(
[25.9225477705349, 49.6552057836797],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_5a6128a64ddb1d07d001898b5defe666 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c2123209a0e0072023b8d2d4bc34aeb0 = L.popup({
"maxWidth": 320,
});
var html_230196854f5c3d3cb8b16017ab3897c6 = $(`<div id="html_230196854f5c3d3cb8b16017ab3897c6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الخطوط الأفقية للمقاولات<br> <b>الرقم الموحد:</b> 7013479576<br> <b>السجل التجاري:</b> 2059002459<br> <b>الحي:</b> صناعية بقيق<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.9225477705349,49.6552057836797" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c2123209a0e0072023b8d2d4bc34aeb0.setContent(html_230196854f5c3d3cb8b16017ab3897c6);
marker_22e1e3e3ac978c67497a3a2c61f4c0a5.bindPopup(popup_c2123209a0e0072023b8d2d4bc34aeb0)
;
marker_22e1e3e3ac978c67497a3a2c61f4c0a5.setIcon(icon_5a6128a64ddb1d07d001898b5defe666);
var marker_1bcbbef413213e769cd299d8b42d895b = L.marker(
[25.923441451006, 49.6516183446592],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_22a0f984680169fc692ce3e6ca270826 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0fec197b1d27ce45d5bb4bb1c231d74b = L.popup({
"maxWidth": 320,
});
var html_19f69beccb2dfbc74cb9f871f32bfe4a = $(`<div id="html_19f69beccb2dfbc74cb9f871f32bfe4a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة البلوشي للمقاولات العامة<br> <b>الرقم الموحد:</b> 7009408126<br> <b>السجل التجاري:</b> 2059000063<br> <b>الحي:</b> صناعية بقيق<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.923441451006,49.6516183446592" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0fec197b1d27ce45d5bb4bb1c231d74b.setContent(html_19f69beccb2dfbc74cb9f871f32bfe4a);
marker_1bcbbef413213e769cd299d8b42d895b.bindPopup(popup_0fec197b1d27ce45d5bb4bb1c231d74b)
;
marker_1bcbbef413213e769cd299d8b42d895b.setIcon(icon_22a0f984680169fc692ce3e6ca270826);
var marker_57e7e955d2a9163bb95647b2fcea622a = L.marker(
[25.92255277, 49.65135182],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_2a3a5c7407f8980e68819da39e217659 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_26422c398ad3a5e72e31439da81a244f = L.popup({
"maxWidth": 320,
});
var html_5c73b78ad83809c5e11221010ad0044c = $(`<div id="html_5c73b78ad83809c5e11221010ad0044c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة آل ربيع المحدودة<br> <b>الرقم الموحد:</b> 7001633317<br> <b>السجل التجاري:</b> 2059000078<br> <b>الحي:</b> صناعية بقيق<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92255277,49.65135182" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_26422c398ad3a5e72e31439da81a244f.setContent(html_5c73b78ad83809c5e11221010ad0044c);
marker_57e7e955d2a9163bb95647b2fcea622a.bindPopup(popup_26422c398ad3a5e72e31439da81a244f)
;
marker_57e7e955d2a9163bb95647b2fcea622a.setIcon(icon_2a3a5c7407f8980e68819da39e217659);
var marker_eef84ada4f579ce0e43a0641b3a4a0e5 = L.marker(
[25.921658598824095, 49.6504166336946],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_070042dc9bc089f65ecca66d7461043f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_32d59192fb718a7e742f9b515640e9f7 = L.popup({
"maxWidth": 320,
});
var html_a3628849afe2abbc959714fbd0008c4c = $(`<div id="html_a3628849afe2abbc959714fbd0008c4c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ميج السعودية المحدودة<br> <b>الرقم الموحد:</b> 7012187154<br> <b>السجل التجاري:</b> 2059001773<br> <b>الحي:</b> صناعية بقيق<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.921658598824095,49.6504166336946" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_32d59192fb718a7e742f9b515640e9f7.setContent(html_a3628849afe2abbc959714fbd0008c4c);
marker_eef84ada4f579ce0e43a0641b3a4a0e5.bindPopup(popup_32d59192fb718a7e742f9b515640e9f7)
;
marker_eef84ada4f579ce0e43a0641b3a4a0e5.setIcon(icon_070042dc9bc089f65ecca66d7461043f);
var marker_27528135905bd252acf7c7ae07a1c7da = L.marker(
[25.923175417828695, 49.6524213775966],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_9d63dee47df6264bd5e69658796261a6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0104057f9a04b0a005e8af7075494f45 = L.popup({
"maxWidth": 320,
});
var html_6fc3dc412d372ef56ce2126397686b06 = $(`<div id="html_6fc3dc412d372ef56ce2126397686b06" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة سالم بن مانع بن محمد ال ضويعن للمقاولات<br> <b>الرقم الموحد:</b> 7013800656<br> <b>السجل التجاري:</b> 2059001153<br> <b>الحي:</b> صناعية بقيق<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.923175417828695,49.6524213775966" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0104057f9a04b0a005e8af7075494f45.setContent(html_6fc3dc412d372ef56ce2126397686b06);
marker_27528135905bd252acf7c7ae07a1c7da.bindPopup(popup_0104057f9a04b0a005e8af7075494f45)
;
marker_27528135905bd252acf7c7ae07a1c7da.setIcon(icon_9d63dee47df6264bd5e69658796261a6);
var marker_105b62c733faa0d49310d51a10cd56d1 = L.marker(
[25.9209585182703, 49.6544042648208],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_3bc03846bcbab076a4101a38d0d38984 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7d2ecc36bad079ff27124cd3600f0fc1 = L.popup({
"maxWidth": 320,
});
var html_f270d614184191a4e1e2afc3f8ccf327 = $(`<div id="html_f270d614184191a4e1e2afc3f8ccf327" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الخطوط المتنوعة لخدمات البترول<br> <b>الرقم الموحد:</b> 7012399890<br> <b>السجل التجاري:</b> 2059001195<br> <b>الحي:</b> صناعية بقيق<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9209585182703,49.6544042648208" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7d2ecc36bad079ff27124cd3600f0fc1.setContent(html_f270d614184191a4e1e2afc3f8ccf327);
marker_105b62c733faa0d49310d51a10cd56d1.bindPopup(popup_7d2ecc36bad079ff27124cd3600f0fc1)
;
marker_105b62c733faa0d49310d51a10cd56d1.setIcon(icon_3bc03846bcbab076a4101a38d0d38984);
var marker_2752dad908e12f38685b104e5bec388e = L.marker(
[25.9275831759578, 49.66585044532351],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_cc9e66b6bfbab2d6d15c82d9a26b621b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_51c9a5314cb552d4256c6c34c97e4b65 = L.popup({
"maxWidth": 320,
});
var html_be503e56042d77ef700145b18a5e5344 = $(`<div id="html_be503e56042d77ef700145b18a5e5344" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة محمد البرغش المنصوري وأولادة للتجارة والمقاولات شركة مساهمة مبسطة<br> <b>الرقم الموحد:</b> 7001457006<br> <b>السجل التجاري:</b> 2060028184<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9275831759578,49.66585044532351" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_51c9a5314cb552d4256c6c34c97e4b65.setContent(html_be503e56042d77ef700145b18a5e5344);
marker_2752dad908e12f38685b104e5bec388e.bindPopup(popup_51c9a5314cb552d4256c6c34c97e4b65)
;
marker_2752dad908e12f38685b104e5bec388e.setIcon(icon_cc9e66b6bfbab2d6d15c82d9a26b621b);
var marker_e074749152d4fea68ae5679e6890a21f = L.marker(
[25.92620887, 49.66023933],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_388bb53b22c181fceba454bcb09cb45e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3947b858c88889bd34ce65c7f6a148ad = L.popup({
"maxWidth": 320,
});
var html_2470c45d553061d8f12d75b48311275d = $(`<div id="html_2470c45d553061d8f12d75b48311275d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ايكال المتحدة للمقاولات<br> <b>الرقم الموحد:</b> 7003523821<br> <b>السجل التجاري:</b> 2059004023<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92620887,49.66023933" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3947b858c88889bd34ce65c7f6a148ad.setContent(html_2470c45d553061d8f12d75b48311275d);
marker_e074749152d4fea68ae5679e6890a21f.bindPopup(popup_3947b858c88889bd34ce65c7f6a148ad)
;
marker_e074749152d4fea68ae5679e6890a21f.setIcon(icon_388bb53b22c181fceba454bcb09cb45e);
var marker_ae4584c031aa7738c5388ad44a8d4213 = L.marker(
[25.925989833682195, 49.65877682585802],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_bc112fc258bf98f44462a4e691e19167 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_899e3a8643a9aadd31dc83717d03bd10 = L.popup({
"maxWidth": 320,
});
var html_64efd0eeddaab02f6055888d788ca122 = $(`<div id="html_64efd0eeddaab02f6055888d788ca122" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مريم سالم بن سعيد الرشيدي للمقاولات العامة<br> <b>الرقم الموحد:</b> 7034898598<br> <b>السجل التجاري:</b> 2050171117<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.925989833682195,49.65877682585802" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_899e3a8643a9aadd31dc83717d03bd10.setContent(html_64efd0eeddaab02f6055888d788ca122);
marker_ae4584c031aa7738c5388ad44a8d4213.bindPopup(popup_899e3a8643a9aadd31dc83717d03bd10)
;
marker_ae4584c031aa7738c5388ad44a8d4213.setIcon(icon_bc112fc258bf98f44462a4e691e19167);
var marker_09a97ec4faa1d3b7a1010c871ee8b51a = L.marker(
[25.92340815, 49.65802917],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_4223047d556c93313a4b93ea217ce0b1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9e8ffd2885fb5b709727cf239a721753 = L.popup({
"maxWidth": 320,
});
var html_a2c57595f4baa6816bab957d217cd0b0 = $(`<div id="html_a2c57595f4baa6816bab957d217cd0b0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة محمد المرعى الحديثه للمقاولات<br> <b>الرقم الموحد:</b> 7006404425<br> <b>السجل التجاري:</b> 2059000133<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92340815,49.65802917" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9e8ffd2885fb5b709727cf239a721753.setContent(html_a2c57595f4baa6816bab957d217cd0b0);
marker_09a97ec4faa1d3b7a1010c871ee8b51a.bindPopup(popup_9e8ffd2885fb5b709727cf239a721753)
;
marker_09a97ec4faa1d3b7a1010c871ee8b51a.setIcon(icon_4223047d556c93313a4b93ea217ce0b1);
var marker_eacff7c3c8ac4d323a39237f55d8336d = L.marker(
[25.931150525026737, 49.66132345609367],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_a912172d49ae39b8ef20e9fcf83b4486 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f51d9f4c973f21cd7c3edf47ee74f846 = L.popup({
"maxWidth": 320,
});
var html_89a931bec3769010f7e9b878288204e1 = $(`<div id="html_89a931bec3769010f7e9b878288204e1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة رود سبيشاليست للمقاولات<br> <b>الرقم الموحد:</b> 7037668477<br> <b>السجل التجاري:</b> 2059103404<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.931150525026737,49.66132345609367" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f51d9f4c973f21cd7c3edf47ee74f846.setContent(html_89a931bec3769010f7e9b878288204e1);
marker_eacff7c3c8ac4d323a39237f55d8336d.bindPopup(popup_f51d9f4c973f21cd7c3edf47ee74f846)
;
marker_eacff7c3c8ac4d323a39237f55d8336d.setIcon(icon_a912172d49ae39b8ef20e9fcf83b4486);
var marker_01b5ea48c854492bd7c8689e05d6eca5 = L.marker(
[25.92197362, 49.66382938],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_1192ecd05e4f0cd0a2bb431e3482203f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f46cf5cd2223f82603833439d63ba834 = L.popup({
"maxWidth": 320,
});
var html_caf9fad5aaa777201ea250645e7e0cf6 = $(`<div id="html_caf9fad5aaa777201ea250645e7e0cf6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة دمك للمقاولات العامة<br> <b>الرقم الموحد:</b> 7014353929<br> <b>السجل التجاري:</b> 2059100324<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92197362,49.66382938" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f46cf5cd2223f82603833439d63ba834.setContent(html_caf9fad5aaa777201ea250645e7e0cf6);
marker_01b5ea48c854492bd7c8689e05d6eca5.bindPopup(popup_f46cf5cd2223f82603833439d63ba834)
;
marker_01b5ea48c854492bd7c8689e05d6eca5.setIcon(icon_1192ecd05e4f0cd0a2bb431e3482203f);
var marker_9b5f39afaef9726627dfaed79e19fcf9 = L.marker(
[25.9186924168003, 49.6591703533652],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_8b1aa1129f0178c27800a4ee0c8fe2a4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_25c59b13465316dc369c2f9275421186 = L.popup({
"maxWidth": 320,
});
var html_81e47fcef30cadef3b708d4985d9aa62 = $(`<div id="html_81e47fcef30cadef3b708d4985d9aa62" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سالم بن علي بن سالم المري للمقاولات<br> <b>الرقم الموحد:</b> 7011554008<br> <b>السجل التجاري:</b> 2059000362<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9186924168003,49.6591703533652" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_25c59b13465316dc369c2f9275421186.setContent(html_81e47fcef30cadef3b708d4985d9aa62);
marker_9b5f39afaef9726627dfaed79e19fcf9.bindPopup(popup_25c59b13465316dc369c2f9275421186)
;
marker_9b5f39afaef9726627dfaed79e19fcf9.setIcon(icon_8b1aa1129f0178c27800a4ee0c8fe2a4);
var marker_d0b8ce2601def40016eed1f49c898a3b = L.marker(
[25.92013968, 49.65905724],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_ff6f4c3f7f9223d99fbc41f7272d4e7b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7cf6a4345ab5ac4caffbda8be9980d52 = L.popup({
"maxWidth": 320,
});
var html_b632e7aaf39f6eba52de82c11bbee748 = $(`<div id="html_b632e7aaf39f6eba52de82c11bbee748" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مجموعة الخطوط المتقدمة للمقاولات العامة<br> <b>الرقم الموحد:</b> 7007425437<br> <b>السجل التجاري:</b> 2059003151<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92013968,49.65905724" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7cf6a4345ab5ac4caffbda8be9980d52.setContent(html_b632e7aaf39f6eba52de82c11bbee748);
marker_d0b8ce2601def40016eed1f49c898a3b.bindPopup(popup_7cf6a4345ab5ac4caffbda8be9980d52)
;
marker_d0b8ce2601def40016eed1f49c898a3b.setIcon(icon_ff6f4c3f7f9223d99fbc41f7272d4e7b);
var marker_32f6bd379ff211c6190b12c4ab974063 = L.marker(
[25.93149238, 49.66265281],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_ae9550db2931b221bac69eaed5cc3945 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a08eb595e2d052846f6a3a95dd18420e = L.popup({
"maxWidth": 320,
});
var html_59793ae91883696997dfc5d5a90556d5 = $(`<div id="html_59793ae91883696997dfc5d5a90556d5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مبارك محمد حسن القحطاني لصيد الاسماك<br> <b>الرقم الموحد:</b> 7002243850<br> <b>السجل التجاري:</b> 2059100269<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.93149238,49.66265281" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a08eb595e2d052846f6a3a95dd18420e.setContent(html_59793ae91883696997dfc5d5a90556d5);
marker_32f6bd379ff211c6190b12c4ab974063.bindPopup(popup_a08eb595e2d052846f6a3a95dd18420e)
;
marker_32f6bd379ff211c6190b12c4ab974063.setIcon(icon_ae9550db2931b221bac69eaed5cc3945);
var marker_4fcd20b044789eb99d8c5e6bbbffe106 = L.marker(
[25.9249848, 49.65842931],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_64ae2c6b8850883611b46328dc039199 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e5e76556bf9fb02415f1f7202c831458 = L.popup({
"maxWidth": 320,
});
var html_82dd1bfeeebf3673a0b448371f81458b = $(`<div id="html_82dd1bfeeebf3673a0b448371f81458b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة سام السعوديه للمقاولات<br> <b>الرقم الموحد:</b> 7001992200<br> <b>السجل التجاري:</b> 2059100986<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9249848,49.65842931" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e5e76556bf9fb02415f1f7202c831458.setContent(html_82dd1bfeeebf3673a0b448371f81458b);
marker_4fcd20b044789eb99d8c5e6bbbffe106.bindPopup(popup_e5e76556bf9fb02415f1f7202c831458)
;
marker_4fcd20b044789eb99d8c5e6bbbffe106.setIcon(icon_64ae2c6b8850883611b46328dc039199);
var marker_3ed00a1cd7044acdea6426b0ab1d104c = L.marker(
[25.92669628, 49.66408077],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_22016e44967aa011b3719a58f012eba6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_598fb6a05e29ae2ede65a0fe8b750201 = L.popup({
"maxWidth": 320,
});
var html_da8ceb4a435eca3bf1a6c8c72cce7e50 = $(`<div id="html_da8ceb4a435eca3bf1a6c8c72cce7e50" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة يوسف جزاء الرشيدي للمقاولات عامة<br> <b>الرقم الموحد:</b> 7006478445<br> <b>السجل التجاري:</b> 2059001480<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92669628,49.66408077" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_598fb6a05e29ae2ede65a0fe8b750201.setContent(html_da8ceb4a435eca3bf1a6c8c72cce7e50);
marker_3ed00a1cd7044acdea6426b0ab1d104c.bindPopup(popup_598fb6a05e29ae2ede65a0fe8b750201)
;
marker_3ed00a1cd7044acdea6426b0ab1d104c.setIcon(icon_22016e44967aa011b3719a58f012eba6);
var marker_76215e16542d277fc5ede6994539ef04 = L.marker(
[25.9290954783766, 49.6613505383798],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_d1803e1ff77cdd59fdf37ba41e4360e5 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_80b284a39bdb8aa8291731a82c4f5daa = L.popup({
"maxWidth": 320,
});
var html_ba53c929fa70311ca95ba7b3272a0887 = $(`<div id="html_ba53c929fa70311ca95ba7b3272a0887" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة خالد عبيد درويش الرشيدي للمقاولات العامة<br> <b>الرقم الموحد:</b> 7013266007<br> <b>السجل التجاري:</b> 2059001503<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9290954783766,49.6613505383798" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_80b284a39bdb8aa8291731a82c4f5daa.setContent(html_ba53c929fa70311ca95ba7b3272a0887);
marker_76215e16542d277fc5ede6994539ef04.bindPopup(popup_80b284a39bdb8aa8291731a82c4f5daa)
;
marker_76215e16542d277fc5ede6994539ef04.setIcon(icon_d1803e1ff77cdd59fdf37ba41e4360e5);
var marker_a97c163ea7877b5f18022f5c7b3bbafe = L.marker(
[25.9291683890713, 49.6641448644487],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_7e603283bbf4cd60abdca57154413bc1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_626f6296f78aa9d2b5658805671ec39d = L.popup({
"maxWidth": 320,
});
var html_902c8eb47f4c052acde53953163c0bcf = $(`<div id="html_902c8eb47f4c052acde53953163c0bcf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة تملك للعقارات<br> <b>الرقم الموحد:</b> 7009162210<br> <b>السجل التجاري:</b> 2050139639<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9291683890713,49.6641448644487" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_626f6296f78aa9d2b5658805671ec39d.setContent(html_902c8eb47f4c052acde53953163c0bcf);
marker_a97c163ea7877b5f18022f5c7b3bbafe.bindPopup(popup_626f6296f78aa9d2b5658805671ec39d)
;
marker_a97c163ea7877b5f18022f5c7b3bbafe.setIcon(icon_7e603283bbf4cd60abdca57154413bc1);
var marker_da5616e8a4291280f13f207375b7af9e = L.marker(
[25.92033595, 49.66013625],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_5e2abbe82a805c0a56e10d22536c5b2c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7d48565486323718ad7664b0bd36ce71 = L.popup({
"maxWidth": 320,
});
var html_a5d1ecfe3d2e6c0d66ec344eb69c6c2b = $(`<div id="html_a5d1ecfe3d2e6c0d66ec344eb69c6c2b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة بن قريعة المحدودة<br> <b>الرقم الموحد:</b> 7009401428<br> <b>السجل التجاري:</b> 2052001304<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92033595,49.66013625" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7d48565486323718ad7664b0bd36ce71.setContent(html_a5d1ecfe3d2e6c0d66ec344eb69c6c2b);
marker_da5616e8a4291280f13f207375b7af9e.bindPopup(popup_7d48565486323718ad7664b0bd36ce71)
;
marker_da5616e8a4291280f13f207375b7af9e.setIcon(icon_5e2abbe82a805c0a56e10d22536c5b2c);
var marker_2a271a8bb19dc61cc3cd9126d1cd0041 = L.marker(
[25.92522478, 49.662728],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_f51c0c05a7ef52272a0ead6b7e8ac599 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_578319fddc01bdc4c8589004fad8014c = L.popup({
"maxWidth": 320,
});
var html_cd7e88e3afc000b99f90bc7ce6da7248 = $(`<div id="html_cd7e88e3afc000b99f90bc7ce6da7248" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة جنى القمة للمقاولات<br> <b>الرقم الموحد:</b> 7029899312<br> <b>السجل التجاري:</b> 2059102772<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92522478,49.662728" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_578319fddc01bdc4c8589004fad8014c.setContent(html_cd7e88e3afc000b99f90bc7ce6da7248);
marker_2a271a8bb19dc61cc3cd9126d1cd0041.bindPopup(popup_578319fddc01bdc4c8589004fad8014c)
;
marker_2a271a8bb19dc61cc3cd9126d1cd0041.setIcon(icon_f51c0c05a7ef52272a0ead6b7e8ac599);
var marker_64cd410336419bdd14c2ea15c3423ee0 = L.marker(
[25.9304581, 49.66473707],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_9ed2fd2d94cf4fc72fc517ca6a94f6db = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ed04a841c842d2d14640bf573c99322f = L.popup({
"maxWidth": 320,
});
var html_695ce59e9dc39771f9dadbb8b82a185f = $(`<div id="html_695ce59e9dc39771f9dadbb8b82a185f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة أعمال أهستكو للمقاولات العامة<br> <b>الرقم الموحد:</b> 7006367861<br> <b>السجل التجاري:</b> 2059000780<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9304581,49.66473707" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ed04a841c842d2d14640bf573c99322f.setContent(html_695ce59e9dc39771f9dadbb8b82a185f);
marker_64cd410336419bdd14c2ea15c3423ee0.bindPopup(popup_ed04a841c842d2d14640bf573c99322f)
;
marker_64cd410336419bdd14c2ea15c3423ee0.setIcon(icon_9ed2fd2d94cf4fc72fc517ca6a94f6db);
var marker_4f49f21a9748a82c1973a89b36e2378e = L.marker(
[25.92481376, 49.66515688],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_484cf70127d14298a97f67f6c0d70278 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d7081c7a25c090849a39f874aad2cadc = L.popup({
"maxWidth": 320,
});
var html_62eb9b7982a318e18a0561e701697eb3 = $(`<div id="html_62eb9b7982a318e18a0561e701697eb3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة تطوير المقاولات العربيه<br> <b>الرقم الموحد:</b> 7001398184<br> <b>السجل التجاري:</b> 2059001145<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92481376,49.66515688" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d7081c7a25c090849a39f874aad2cadc.setContent(html_62eb9b7982a318e18a0561e701697eb3);
marker_4f49f21a9748a82c1973a89b36e2378e.bindPopup(popup_d7081c7a25c090849a39f874aad2cadc)
;
marker_4f49f21a9748a82c1973a89b36e2378e.setIcon(icon_484cf70127d14298a97f67f6c0d70278);
var marker_df08b1f83203e9eb7ca7e66bcae3b203 = L.marker(
[25.92878497, 49.66263459],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_b10e15ee09e918a5bfecfcfa49463598 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_505ddb140b3044b51b226247dc72aab6 = L.popup({
"maxWidth": 320,
});
var html_74ce878925ee679b496264274d677324 = $(`<div id="html_74ce878925ee679b496264274d677324" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عالم السرعة للشحن الجوي<br> <b>الرقم الموحد:</b> 7029912594<br> <b>السجل التجاري:</b> 2059102774<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92878497,49.66263459" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_505ddb140b3044b51b226247dc72aab6.setContent(html_74ce878925ee679b496264274d677324);
marker_df08b1f83203e9eb7ca7e66bcae3b203.bindPopup(popup_505ddb140b3044b51b226247dc72aab6)
;
marker_df08b1f83203e9eb7ca7e66bcae3b203.setIcon(icon_b10e15ee09e918a5bfecfcfa49463598);
var marker_2914ee48003d999a01b9841578d6fa0f = L.marker(
[25.9209117505776, 49.6606251596957],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_0851194a68fc96ba4c65c532687c18d7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3a854b1d4928a14d73b1d3d2e580f0b6 = L.popup({
"maxWidth": 320,
});
var html_8039ad8287b0a69e4d3a9ba9ee99314a = $(`<div id="html_8039ad8287b0a69e4d3a9ba9ee99314a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> معرض الشال للديكور والستائر<br> <b>الرقم الموحد:</b> 7012036286<br> <b>السجل التجاري:</b> 2059003370<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9209117505776,49.6606251596957" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3a854b1d4928a14d73b1d3d2e580f0b6.setContent(html_8039ad8287b0a69e4d3a9ba9ee99314a);
marker_2914ee48003d999a01b9841578d6fa0f.bindPopup(popup_3a854b1d4928a14d73b1d3d2e580f0b6)
;
marker_2914ee48003d999a01b9841578d6fa0f.setIcon(icon_0851194a68fc96ba4c65c532687c18d7);
var marker_80f2b5855badb4a8efe2fc2252911970 = L.marker(
[25.9231898366649, 49.66372333945969],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_22f7ee42259647a7fc2a21ecc6fb8e46 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e5e3bc5f96f2ecd4abd65dfaf71bf609 = L.popup({
"maxWidth": 320,
});
var html_3feddcb3e28d1951065d38527b4d01cf = $(`<div id="html_3feddcb3e28d1951065d38527b4d01cf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الخطوط الراسية للمقاولات<br> <b>الرقم الموحد:</b> 7007268597<br> <b>السجل التجاري:</b> 2059001471<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9231898366649,49.66372333945969" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e5e3bc5f96f2ecd4abd65dfaf71bf609.setContent(html_3feddcb3e28d1951065d38527b4d01cf);
marker_80f2b5855badb4a8efe2fc2252911970.bindPopup(popup_e5e3bc5f96f2ecd4abd65dfaf71bf609)
;
marker_80f2b5855badb4a8efe2fc2252911970.setIcon(icon_22f7ee42259647a7fc2a21ecc6fb8e46);
var marker_197b4fdf7cbbb5d32c64c7129c6a1f32 = L.marker(
[25.92301718, 49.66630786],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_b35d3e3251f436214d519c0b3b1acaae = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b082e903fae5bea950352a6c4e03ad50 = L.popup({
"maxWidth": 320,
});
var html_c09e3cfbf7bd8096dd0ad42cd9705a41 = $(`<div id="html_c09e3cfbf7bd8096dd0ad42cd9705a41" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عوض عايض بالحارث للمقاولات<br> <b>الرقم الموحد:</b> 7014546670<br> <b>السجل التجاري:</b> 2059100435<br> <b>الحي:</b> المدينة<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92301718,49.66630786" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b082e903fae5bea950352a6c4e03ad50.setContent(html_c09e3cfbf7bd8096dd0ad42cd9705a41);
marker_197b4fdf7cbbb5d32c64c7129c6a1f32.bindPopup(popup_b082e903fae5bea950352a6c4e03ad50)
;
marker_197b4fdf7cbbb5d32c64c7129c6a1f32.setIcon(icon_b35d3e3251f436214d519c0b3b1acaae);
var marker_7111688b0871b710bb851af41d544cdd = L.marker(
[25.91698912, 49.67058814],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_c40a1d9c5ae4be7530ad06fa5f741e25 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6ed9759889d0c05c8f84df3701e5ea89 = L.popup({
"maxWidth": 320,
});
var html_faf0bfca1379cd305714fc406addc9c7 = $(`<div id="html_faf0bfca1379cd305714fc406addc9c7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الطاقات الذكية للاستشارات الهندسية شخص واحد<br> <b>الرقم الموحد:</b> 7018084025<br> <b>السجل التجاري:</b> 2059101992<br> <b>الحي:</b> ج12<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.91698912,49.67058814" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6ed9759889d0c05c8f84df3701e5ea89.setContent(html_faf0bfca1379cd305714fc406addc9c7);
marker_7111688b0871b710bb851af41d544cdd.bindPopup(popup_6ed9759889d0c05c8f84df3701e5ea89)
;
marker_7111688b0871b710bb851af41d544cdd.setIcon(icon_c40a1d9c5ae4be7530ad06fa5f741e25);
var marker_39dd95320589f86eba9d874e8c3c4d6f = L.marker(
[26.0283876733376, 49.46028082234],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_aca78bfd266950d54408e6828e02f7ac = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4b9a8ac3fad9144af9b3205451c0452d = L.popup({
"maxWidth": 320,
});
var html_cc3e811e9a1dd755fbf47a0200f5affc = $(`<div id="html_cc3e811e9a1dd755fbf47a0200f5affc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ماضي بن محمد بن محمد الهاجري للنقليات<br> <b>الرقم الموحد:</b> 7017784252<br> <b>السجل التجاري:</b> 2059101848<br> <b>الحي:</b> خور الذيابه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.0283876733376,49.46028082234" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4b9a8ac3fad9144af9b3205451c0452d.setContent(html_cc3e811e9a1dd755fbf47a0200f5affc);
marker_39dd95320589f86eba9d874e8c3c4d6f.bindPopup(popup_4b9a8ac3fad9144af9b3205451c0452d)
;
marker_39dd95320589f86eba9d874e8c3c4d6f.setIcon(icon_aca78bfd266950d54408e6828e02f7ac);
var marker_7b8d6a38c7fa514e31ecc44581626470 = L.marker(
[25.93757809008909, 49.43327089771629],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_536d867a46cbc094bdd7a77cfbad8b0a = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_336864efdb5dbe525066c7af6483df6e = L.popup({
"maxWidth": 320,
});
var html_337c782119ab5b88a7dea3224d26d3d2 = $(`<div id="html_337c782119ab5b88a7dea3224d26d3d2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة النوافذ المشرقة للمقاولات<br> <b>الرقم الموحد:</b> 7021975219<br> <b>السجل التجاري:</b> 2059102118<br> <b>الحي:</b> عين دار الجديده<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.93757809008909,49.43327089771629" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_336864efdb5dbe525066c7af6483df6e.setContent(html_337c782119ab5b88a7dea3224d26d3d2);
marker_7b8d6a38c7fa514e31ecc44581626470.bindPopup(popup_336864efdb5dbe525066c7af6483df6e)
;
marker_7b8d6a38c7fa514e31ecc44581626470.setIcon(icon_536d867a46cbc094bdd7a77cfbad8b0a);
var marker_0364eee511a1bc2d55a4d06e1b306814 = L.marker(
[25.94310306, 49.42983451],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_8f8700163cb156ce9a14da0262384261 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3a639b7e9df9824f203352f653b93d6a = L.popup({
"maxWidth": 320,
});
var html_d1e51d0eb3af41ae64b9b807c63f285e = $(`<div id="html_d1e51d0eb3af41ae64b9b807c63f285e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة نايتس أوف ذي شيف<br> <b>الرقم الموحد:</b> 7034777321<br> <b>السجل التجاري:</b> 2258100194<br> <b>الحي:</b> عين دار الجديده<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=25.94310306,49.42983451" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3a639b7e9df9824f203352f653b93d6a.setContent(html_d1e51d0eb3af41ae64b9b807c63f285e);
marker_0364eee511a1bc2d55a4d06e1b306814.bindPopup(popup_3a639b7e9df9824f203352f653b93d6a)
;
marker_0364eee511a1bc2d55a4d06e1b306814.setIcon(icon_8f8700163cb156ce9a14da0262384261);
var marker_05c980ac74116d506fa598abc4d67d46 = L.marker(
[25.94662745, 49.42641513],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_acd7bfd210f2dcfc57d416dedff3474e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_422f4143c24a1f509f7dcca560ee21fd = L.popup({
"maxWidth": 320,
});
var html_9b18d590a4fca3f6898e3730899bf9e2 = $(`<div id="html_9b18d590a4fca3f6898e3730899bf9e2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الانجاز الخاص للتجارة<br> <b>الرقم الموحد:</b> 7002782865<br> <b>السجل التجاري:</b> 1010230745<br> <b>الحي:</b> عين دار الجديده<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.94662745,49.42641513" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_422f4143c24a1f509f7dcca560ee21fd.setContent(html_9b18d590a4fca3f6898e3730899bf9e2);
marker_05c980ac74116d506fa598abc4d67d46.bindPopup(popup_422f4143c24a1f509f7dcca560ee21fd)
;
marker_05c980ac74116d506fa598abc4d67d46.setIcon(icon_acd7bfd210f2dcfc57d416dedff3474e);
var marker_89019d6d8dca17bcc1becdd8f46c85a4 = L.marker(
[25.92731042, 49.95181268],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_ac12dd86df94eb920b18fec3e1b2f443 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_374e216314edbeaa0f8f9e18b7b4e21a = L.popup({
"maxWidth": 320,
});
var html_cb778bdeeb764452747091d3b82808bc = $(`<div id="html_cb778bdeeb764452747091d3b82808bc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مصنع ماس الخليج للصناعة<br> <b>الرقم الموحد:</b> 7016729589<br> <b>السجل التجاري:</b> 2050132568<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92731042,49.95181268" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_374e216314edbeaa0f8f9e18b7b4e21a.setContent(html_cb778bdeeb764452747091d3b82808bc);
marker_89019d6d8dca17bcc1becdd8f46c85a4.bindPopup(popup_374e216314edbeaa0f8f9e18b7b4e21a)
;
marker_89019d6d8dca17bcc1becdd8f46c85a4.setIcon(icon_ac12dd86df94eb920b18fec3e1b2f443);
var marker_0d02b3b4579457f5306e0c5c30171f2e = L.marker(
[25.92582889, 49.95452699],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_3e3b2f8f07ffc01aff9d7d0bd437df72 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c7f7faab00031a02d3b2c62de470fae0 = L.popup({
"maxWidth": 320,
});
var html_f0870fabc5cc6e3eac424fa7ecedd3f2 = $(`<div id="html_f0870fabc5cc6e3eac424fa7ecedd3f2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سعد علي العيسى للصناعات المعدنية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7012366683<br> <b>السجل التجاري:</b> 2050105736<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92582889,49.95452699" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c7f7faab00031a02d3b2c62de470fae0.setContent(html_f0870fabc5cc6e3eac424fa7ecedd3f2);
marker_0d02b3b4579457f5306e0c5c30171f2e.bindPopup(popup_c7f7faab00031a02d3b2c62de470fae0)
;
marker_0d02b3b4579457f5306e0c5c30171f2e.setIcon(icon_3e3b2f8f07ffc01aff9d7d0bd437df72);
var marker_5c130f5623511cad2cc882d72e45eef2 = L.marker(
[25.93085452, 49.93167571],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_ba74a9ea5b79311a8762ffee4cb2940c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ac7ff4590a8034f4d20903b6981475c8 = L.popup({
"maxWidth": 320,
});
var html_3f0bb90ec621d8a7828cf7adef44eea4 = $(`<div id="html_3f0bb90ec621d8a7828cf7adef44eea4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أيجاز الخبر للغازات الصناعية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7003519167<br> <b>السجل التجاري:</b> 2050109994<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.93085452,49.93167571" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ac7ff4590a8034f4d20903b6981475c8.setContent(html_3f0bb90ec621d8a7828cf7adef44eea4);
marker_5c130f5623511cad2cc882d72e45eef2.bindPopup(popup_ac7ff4590a8034f4d20903b6981475c8)
;
marker_5c130f5623511cad2cc882d72e45eef2.setIcon(icon_ba74a9ea5b79311a8762ffee4cb2940c);
var marker_c2ae149873e46f840216e3edb179ffb4 = L.marker(
[25.9313962395649, 49.931676085501294],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_95408892edb43061ff2d1f0b2916e4db = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7debc6467c7d7d4d64861dd1b34715bc = L.popup({
"maxWidth": 320,
});
var html_67de4eccb7865ed578b41f920457afc3 = $(`<div id="html_67de4eccb7865ed578b41f920457afc3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة آفاق الغذاء شركة مساهمة سعودية مدرجة<br> <b>الرقم الموحد:</b> 7002602279<br> <b>السجل التجاري:</b> 2051220421<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9313962395649,49.931676085501294" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7debc6467c7d7d4d64861dd1b34715bc.setContent(html_67de4eccb7865ed578b41f920457afc3);
marker_c2ae149873e46f840216e3edb179ffb4.bindPopup(popup_7debc6467c7d7d4d64861dd1b34715bc)
;
marker_c2ae149873e46f840216e3edb179ffb4.setIcon(icon_95408892edb43061ff2d1f0b2916e4db);
var marker_9ddde2223e9bb14f44bd52d6513dd38c = L.marker(
[25.9316474492828, 49.9611971981772],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_9394c2c12e8743a8a7233fb6bc54884d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_34aa9a7acf4949d182b5a1c15e599dc3 = L.popup({
"maxWidth": 320,
});
var html_80eb36d9895f0b55be91d97d23310362 = $(`<div id="html_80eb36d9895f0b55be91d97d23310362" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة محمد طاحوس القحطاني للنقليات ذات مسؤلية محدوده<br> <b>الرقم الموحد:</b> 7011047003<br> <b>السجل التجاري:</b> 2050108680<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9316474492828,49.9611971981772" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_34aa9a7acf4949d182b5a1c15e599dc3.setContent(html_80eb36d9895f0b55be91d97d23310362);
marker_9ddde2223e9bb14f44bd52d6513dd38c.bindPopup(popup_34aa9a7acf4949d182b5a1c15e599dc3)
;
marker_9ddde2223e9bb14f44bd52d6513dd38c.setIcon(icon_9394c2c12e8743a8a7233fb6bc54884d);
var marker_2f46f811112850936939a80e73aa6129 = L.marker(
[25.938946, 49.9404828],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_161cf0cc2a786df41fab5afdd9604f67 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_84139a81f6b73ce70030c01cab2b713a = L.popup({
"maxWidth": 320,
});
var html_c606299a7d2a57ac378e3cf3642cf6ae = $(`<div id="html_c606299a7d2a57ac378e3cf3642cf6ae" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة قرطاس الخليج لصناعة الورق المحدودة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001807242<br> <b>السجل التجاري:</b> 2050095507<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.938946,49.9404828" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_84139a81f6b73ce70030c01cab2b713a.setContent(html_c606299a7d2a57ac378e3cf3642cf6ae);
marker_2f46f811112850936939a80e73aa6129.bindPopup(popup_84139a81f6b73ce70030c01cab2b713a)
;
marker_2f46f811112850936939a80e73aa6129.setIcon(icon_161cf0cc2a786df41fab5afdd9604f67);
var marker_e49253e0c244c572bf1de4c433da7e61 = L.marker(
[25.9314946, 49.9428594],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_0323e4850b649614ef1b4a80bfb11fdc = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cec7b5d77ae735d470050b2b93c96ed7 = L.popup({
"maxWidth": 320,
});
var html_9bb8366a7e65aa5a381172589382d508 = $(`<div id="html_9bb8366a7e65aa5a381172589382d508" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة توراي ميمبراين الشرق الاوسط المحدودة<br> <b>الرقم الموحد:</b> 7009151742<br> <b>السجل التجاري:</b> 2050103904<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9314946,49.9428594" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cec7b5d77ae735d470050b2b93c96ed7.setContent(html_9bb8366a7e65aa5a381172589382d508);
marker_e49253e0c244c572bf1de4c433da7e61.bindPopup(popup_cec7b5d77ae735d470050b2b93c96ed7)
;
marker_e49253e0c244c572bf1de4c433da7e61.setIcon(icon_0323e4850b649614ef1b4a80bfb11fdc);
var marker_b0641ef365178bf2de45f29417ff030a = L.marker(
[25.9201616560978, 49.956838291664894],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_cc816ca969693614ec54c59ba7fba388 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_075ed36918f9486a4b7f416b55b4605c = L.popup({
"maxWidth": 320,
});
var html_498cbe550856e582a88d3eb3c2f3690c = $(`<div id="html_498cbe550856e582a88d3eb3c2f3690c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة حلول طلاء الأنابيب المحدودة<br> <b>الرقم الموحد:</b> 7010478845<br> <b>السجل التجاري:</b> 2050110552<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9201616560978,49.956838291664894" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_075ed36918f9486a4b7f416b55b4605c.setContent(html_498cbe550856e582a88d3eb3c2f3690c);
marker_b0641ef365178bf2de45f29417ff030a.bindPopup(popup_075ed36918f9486a4b7f416b55b4605c)
;
marker_b0641ef365178bf2de45f29417ff030a.setIcon(icon_cc816ca969693614ec54c59ba7fba388);
var marker_fa8af76238ea49090efb8476ad48ceb3 = L.marker(
[25.93347481, 49.95034836],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_54f665ffd8eecfed8cb75a7f88fb02ae = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_06453e84086f2aac35e80b11a8556726 = L.popup({
"maxWidth": 320,
});
var html_5b1a4289d4deaff4c8212307817f2b9e = $(`<div id="html_5b1a4289d4deaff4c8212307817f2b9e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مصنع اليمامة للصناعات الحديدية والكهروميكانيكية شخص واحد<br> <b>الرقم الموحد:</b> 7017048187<br> <b>السجل التجاري:</b> 2050133883<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.93347481,49.95034836" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_06453e84086f2aac35e80b11a8556726.setContent(html_5b1a4289d4deaff4c8212307817f2b9e);
marker_fa8af76238ea49090efb8476ad48ceb3.bindPopup(popup_06453e84086f2aac35e80b11a8556726)
;
marker_fa8af76238ea49090efb8476ad48ceb3.setIcon(icon_54f665ffd8eecfed8cb75a7f88fb02ae);
var marker_23922817285602c23ac1171c19e071d6 = L.marker(
[25.9181568360695, 49.9574355160526],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_8e547908762af4fe0688be8acc048175 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a5cc4c6f5009a8db8d72b58c245b5754 = L.popup({
"maxWidth": 320,
});
var html_4f0df4381db2d59fc7c3bfbf460b9f39 = $(`<div id="html_4f0df4381db2d59fc7c3bfbf460b9f39" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة تغليف المعادن العربية الصناعية<br> <b>الرقم الموحد:</b> 7009275541<br> <b>السجل التجاري:</b> 2050092262<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9181568360695,49.9574355160526" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a5cc4c6f5009a8db8d72b58c245b5754.setContent(html_4f0df4381db2d59fc7c3bfbf460b9f39);
marker_23922817285602c23ac1171c19e071d6.bindPopup(popup_a5cc4c6f5009a8db8d72b58c245b5754)
;
marker_23922817285602c23ac1171c19e071d6.setIcon(icon_8e547908762af4fe0688be8acc048175);
var marker_60e51cd413a12a9690ea98ca830cc5ae = L.marker(
[25.9296616697617, 49.9490086994358],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_f91394b4401145ff4f0e464af49f8421 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e382a970e90d5afc476f56c89891856b = L.popup({
"maxWidth": 320,
});
var html_2c4c339a5189b016262686b2c43fc5ba = $(`<div id="html_2c4c339a5189b016262686b2c43fc5ba" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع الشركة الوطنية لمنتجات الكبريت<br> <b>الرقم الموحد:</b> 7001426365<br> <b>السجل التجاري:</b> 2050077225<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9296616697617,49.9490086994358" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e382a970e90d5afc476f56c89891856b.setContent(html_2c4c339a5189b016262686b2c43fc5ba);
marker_60e51cd413a12a9690ea98ca830cc5ae.bindPopup(popup_e382a970e90d5afc476f56c89891856b)
;
marker_60e51cd413a12a9690ea98ca830cc5ae.setIcon(icon_f91394b4401145ff4f0e464af49f8421);
var marker_2fa7f6aeb21e00dd5cd95a6138a77e42 = L.marker(
[25.92262302, 49.94907269],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_4338dbb0fa3f27180a0c22f03c101916 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7186aa0dd03612f2a4c915996b4a6ce2 = L.popup({
"maxWidth": 320,
});
var html_0796e9656cc9866f6d4ef78ede83e6a0 = $(`<div id="html_0796e9656cc9866f6d4ef78ede83e6a0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مصنع معدات النفط الديناميكية<br> <b>الرقم الموحد:</b> 7004866930<br> <b>السجل التجاري:</b> 2050118686<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.92262302,49.94907269" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7186aa0dd03612f2a4c915996b4a6ce2.setContent(html_0796e9656cc9866f6d4ef78ede83e6a0);
marker_2fa7f6aeb21e00dd5cd95a6138a77e42.bindPopup(popup_7186aa0dd03612f2a4c915996b4a6ce2)
;
marker_2fa7f6aeb21e00dd5cd95a6138a77e42.setIcon(icon_4338dbb0fa3f27180a0c22f03c101916);
var marker_0960826abf8eb0cd905d41d7b54ded08 = L.marker(
[25.9174200807367, 49.9545597388324],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_ba39b56973fe3fbe11b637cbaabaffae = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f91a6ae9819de84b9409ab95ab8e1dd3 = L.popup({
"maxWidth": 320,
});
var html_e33b867886071397fc45895c7cbc1bc4 = $(`<div id="html_e33b867886071397fc45895c7cbc1bc4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة تشجيانج إهوو لإدارة الأصول العربية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7005177535<br> <b>السجل التجاري:</b> 2050119618<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9174200807367,49.9545597388324" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f91a6ae9819de84b9409ab95ab8e1dd3.setContent(html_e33b867886071397fc45895c7cbc1bc4);
marker_0960826abf8eb0cd905d41d7b54ded08.bindPopup(popup_f91a6ae9819de84b9409ab95ab8e1dd3)
;
marker_0960826abf8eb0cd905d41d7b54ded08.setIcon(icon_ba39b56973fe3fbe11b637cbaabaffae);
var marker_89d759a2c3a4982e2cd3ff8cff29deb0 = L.marker(
[25.9201132751825, 49.951135577006895],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_4d2a12ee56f5497b312a3af739740b26 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_42259ff6402e7c4aece7a7c7ab438ea4 = L.popup({
"maxWidth": 320,
});
var html_96372fa7298cb2bf55baa4075ad1cd5f = $(`<div id="html_96372fa7298cb2bf55baa4075ad1cd5f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أو إم إس اويل فيلد للخدمات العربية المحدودة شركة الشخص الواحد<br> <b>الرقم الموحد:</b> 7001555635<br> <b>السجل التجاري:</b> 2059001809<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9201132751825,49.951135577006895" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_42259ff6402e7c4aece7a7c7ab438ea4.setContent(html_96372fa7298cb2bf55baa4075ad1cd5f);
marker_89d759a2c3a4982e2cd3ff8cff29deb0.bindPopup(popup_42259ff6402e7c4aece7a7c7ab438ea4)
;
marker_89d759a2c3a4982e2cd3ff8cff29deb0.setIcon(icon_4d2a12ee56f5497b312a3af739740b26);
var marker_f87575a3bb3089775e52eb5fa6050b54 = L.marker(
[25.926339471848905, 49.958071998469],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_7b6e6ebd7120f28731528edbf2304d7e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2055fd12bd8fa968c210ce348f058a64 = L.popup({
"maxWidth": 320,
});
var html_2efcfa2a166518836c72648ceab2f694 = $(`<div id="html_2efcfa2a166518836c72648ceab2f694" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة إيرام لإلكترونيات الطاقة<br> <b>الرقم الموحد:</b> 7004304007<br> <b>السجل التجاري:</b> 2050116445<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.926339471848905,49.958071998469" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2055fd12bd8fa968c210ce348f058a64.setContent(html_2efcfa2a166518836c72648ceab2f694);
marker_f87575a3bb3089775e52eb5fa6050b54.bindPopup(popup_2055fd12bd8fa968c210ce348f058a64)
;
marker_f87575a3bb3089775e52eb5fa6050b54.setIcon(icon_7b6e6ebd7120f28731528edbf2304d7e);
var marker_b3fab171e9bc05255cf8c03f802e4447 = L.marker(
[25.9260628587073, 49.9630394946964],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_4501e1fcf5b0d3b6cd0d189008d38847 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e93c923b95cc885d1d94496c4ddf500f = L.popup({
"maxWidth": 320,
});
var html_1e3bb3e36984ad4bfdc78d62348bcfc6 = $(`<div id="html_1e3bb3e36984ad4bfdc78d62348bcfc6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة البابطين ميتالوجالفا المحدودة<br> <b>الرقم الموحد:</b> 7008631694<br> <b>السجل التجاري:</b> 2050124210<br> <b>الحي:</b> قريه سكيكو (ارامكو)<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9260628587073,49.9630394946964" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e93c923b95cc885d1d94496c4ddf500f.setContent(html_1e3bb3e36984ad4bfdc78d62348bcfc6);
marker_b3fab171e9bc05255cf8c03f802e4447.bindPopup(popup_e93c923b95cc885d1d94496c4ddf500f)
;
marker_b3fab171e9bc05255cf8c03f802e4447.setIcon(icon_4501e1fcf5b0d3b6cd0d189008d38847);
var marker_847a709dfc94fc0a6e7303bd7b12540f = L.marker(
[26.1780921456756, 49.852348439329695],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_8a9d5fa4fc5444eafe2e4565c4217ca4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cd15fc441f5545d67813d69d3aa5cb73 = L.popup({
"maxWidth": 320,
});
var html_27edeb308ef08dc459cedcfde42df432 = $(`<div id="html_27edeb308ef08dc459cedcfde42df432" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة إي ثري إنرجي السعودية للطاقة المتجددة<br> <b>الرقم الموحد:</b> 7016895646<br> <b>السجل التجاري:</b> 2050133237<br> <b>الحي:</b> محرقه النفايات الدمام<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.1780921456756,49.852348439329695" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cd15fc441f5545d67813d69d3aa5cb73.setContent(html_27edeb308ef08dc459cedcfde42df432);
marker_847a709dfc94fc0a6e7303bd7b12540f.bindPopup(popup_cd15fc441f5545d67813d69d3aa5cb73)
;
marker_847a709dfc94fc0a6e7303bd7b12540f.setIcon(icon_8a9d5fa4fc5444eafe2e4565c4217ca4);
var marker_71c2ca09a788ca746c94478dec8e5abc = L.marker(
[26.14323292, 49.92090099],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_2d60aa92af4be036b9141cc7e8b9aeab = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_42499cbfd215723bea7290ef60034477 = L.popup({
"maxWidth": 320,
});
var html_dcd9cc4433c549522cdb35828b59160b = $(`<div id="html_dcd9cc4433c549522cdb35828b59160b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الهجان لحفر الآبار<br> <b>الرقم الموحد:</b> 7001725683<br> <b>السجل التجاري:</b> 2062021500<br> <b>الحي:</b> محطة ساسكو<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.14323292,49.92090099" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_42499cbfd215723bea7290ef60034477.setContent(html_dcd9cc4433c549522cdb35828b59160b);
marker_71c2ca09a788ca746c94478dec8e5abc.bindPopup(popup_42499cbfd215723bea7290ef60034477)
;
marker_71c2ca09a788ca746c94478dec8e5abc.setIcon(icon_2d60aa92af4be036b9141cc7e8b9aeab);
var marker_dc5130ef911df0d5fd35311ed5dd6cd4 = L.marker(
[25.90224273, 49.48560164],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_b8c1b4eb990c1d735f2d4fe0bdbaa490 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5ee6bfbf2ba4233d52459a149b56bbc5 = L.popup({
"maxWidth": 320,
});
var html_ee85d9735a4181cf59435f6f9a307d7d = $(`<div id="html_ee85d9735a4181cf59435f6f9a307d7d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة براينسا السعودية للخرسانة مسبقة الصنع شركة شخص واحد<br> <b>الرقم الموحد:</b> 7011762981<br> <b>السجل التجاري:</b> 2051035184<br> <b>الحي:</b> مصنع الاسمنت السعودى<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.90224273,49.48560164" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5ee6bfbf2ba4233d52459a149b56bbc5.setContent(html_ee85d9735a4181cf59435f6f9a307d7d);
marker_dc5130ef911df0d5fd35311ed5dd6cd4.bindPopup(popup_5ee6bfbf2ba4233d52459a149b56bbc5)
;
marker_dc5130ef911df0d5fd35311ed5dd6cd4.setIcon(icon_b8c1b4eb990c1d735f2d4fe0bdbaa490);
var marker_b89cc44d3f7c86a3ffa0c63812e44071 = L.marker(
[25.9523734, 49.49960984],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_6baf1385395f176c36b2a816caf35050 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ad05bb84142921cfedab548e25840119 = L.popup({
"maxWidth": 320,
});
var html_b10ee05f3a4339645b92e191014a6a01 = $(`<div id="html_b10ee05f3a4339645b92e191014a6a01" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عايض بن محمد الهاجري وشريكه للنقليات المحدودة<br> <b>الرقم الموحد:</b> 7001747596<br> <b>السجل التجاري:</b> 2059002018<br> <b>الحي:</b> مطربه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9523734,49.49960984" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ad05bb84142921cfedab548e25840119.setContent(html_b10ee05f3a4339645b92e191014a6a01);
marker_b89cc44d3f7c86a3ffa0c63812e44071.bindPopup(popup_ad05bb84142921cfedab548e25840119)
;
marker_b89cc44d3f7c86a3ffa0c63812e44071.setIcon(icon_6baf1385395f176c36b2a816caf35050);
var marker_aef2137d693f3f98c8dcab811ddd7bbf = L.marker(
[26.11472205, 49.82148163],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_d5e9fd9c5bd55c4115cc769d09545fd4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2427577f3770374d7451026c4933c3fe = L.popup({
"maxWidth": 320,
});
var html_8f597315efea51c3fb27952134fd557a = $(`<div id="html_8f597315efea51c3fb27952134fd557a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة سالم محمد البلوي للنقليات<br> <b>الرقم الموحد:</b> 7011212326<br> <b>السجل التجاري:</b> 2050027261<br> <b>الحي:</b> شركة جده للتقنيه الحيويه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.11472205,49.82148163" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2427577f3770374d7451026c4933c3fe.setContent(html_8f597315efea51c3fb27952134fd557a);
marker_aef2137d693f3f98c8dcab811ddd7bbf.bindPopup(popup_2427577f3770374d7451026c4933c3fe)
;
marker_aef2137d693f3f98c8dcab811ddd7bbf.setIcon(icon_d5e9fd9c5bd55c4115cc769d09545fd4);
var marker_6c7ffb45832b865926c529c664bfa050 = L.marker(
[25.95236199, 49.57099827],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_238525a8171e27739c332f33f01d653d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_80980d81c2ba6b4e040130b81323af6f = L.popup({
"maxWidth": 320,
});
var html_86dce54f2bfb8e1a53f632c423a204a3 = $(`<div id="html_86dce54f2bfb8e1a53f632c423a204a3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة التكنلوجيا الاولى الدولية<br> <b>الرقم الموحد:</b> 7011016966<br> <b>السجل التجاري:</b> 2050086378<br> <b>الحي:</b> قرحش<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.95236199,49.57099827" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_80980d81c2ba6b4e040130b81323af6f.setContent(html_86dce54f2bfb8e1a53f632c423a204a3);
marker_6c7ffb45832b865926c529c664bfa050.bindPopup(popup_80980d81c2ba6b4e040130b81323af6f)
;
marker_6c7ffb45832b865926c529c664bfa050.setIcon(icon_238525a8171e27739c332f33f01d653d);
var marker_189dd22997bad9e07aec0aa1f4d2d32d = L.marker(
[26.01887977, 49.54955822],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_c84656d102b46eb6c596aadfe69594da = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_34e91c2345286d38f80964948763f8b3 = L.popup({
"maxWidth": 320,
});
var html_77071033c82a8fea742c6348506e994c = $(`<div id="html_77071033c82a8fea742c6348506e994c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عتاد الطاقة لتعبئة وخلط المواد التعدينية المحدودة<br> <b>الرقم الموحد:</b> 7001710743<br> <b>السجل التجاري:</b> 2059001465<br> <b>الحي:</b> الثمامه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.01887977,49.54955822" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_34e91c2345286d38f80964948763f8b3.setContent(html_77071033c82a8fea742c6348506e994c);
marker_189dd22997bad9e07aec0aa1f4d2d32d.bindPopup(popup_34e91c2345286d38f80964948763f8b3)
;
marker_189dd22997bad9e07aec0aa1f4d2d32d.setIcon(icon_c84656d102b46eb6c596aadfe69594da);
var marker_21fa762d7a8137a43f8eaae420c9901b = L.marker(
[25.9462721655706, 49.5722252584682],
{
}
).addTo(map_be15f3d68da4936e12bb72ec6d098c4e);
var icon_75c6c578aae15f45edc1617e8f03a759 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ff7933094e073fef50b0c1521081f335 = L.popup({
"maxWidth": 320,
});
var html_c1b5dca57277d8fcab87b56e4796be4b = $(`<div id="html_c1b5dca57277d8fcab87b56e4796be4b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الأساطيل المتحركة الحديثة للنقليات شركة شخص واحد<br> <b>الرقم الموحد:</b> 7009422242<br> <b>السجل التجاري:</b> 2059003997<br> <b>الحي:</b> العاليه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=25.9462721655706,49.5722252584682" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ff7933094e073fef50b0c1521081f335.setContent(html_c1b5dca57277d8fcab87b56e4796be4b);
marker_21fa762d7a8137a43f8eaae420c9901b.bindPopup(popup_ff7933094e073fef50b0c1521081f335)
;
marker_21fa762d7a8137a43f8eaae420c9901b.setIcon(icon_75c6c578aae15f45edc1617e8f03a759);
</script>
</html> |