8ec69c7
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 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 | <!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_ebf05b5cadf9ac784b4ef7d5f2f423ae {
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_22" onclick="
var panel = document.getElementById('stats_22');
var btn = document.getElementById('btn_stats_22');
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_22" 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;
">خديجة حسين هنبوبه - 22</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 64</div>
<div><b>عدد الحارات:</b> 30</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• ج19: 7</div><div>• النابية: 5</div><div>• منطقة المستودعات: 5</div><div>• الاوجام: 4</div><div>• الصناعية: 4</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_22_خديجة_حسين_هنبوبه.pdf" target="_blank" style="
display:block;
text-align:center;
background:#16a34a;
color:#fff;
text-decoration:none;
padding:10px 12px;
border-radius:12px;
font-weight:700;
margin-bottom:14px;
">تصدير بيانات هذه الخريطة PDF</a>
<div style="font-weight:bold; margin-bottom:6px;">تلوين حسب الحارة</div>
<div style="font-size:13px;">
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:orange;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>ج19</span>
</div>
<span style="color:#555;">(7)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:purple;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>النابية</span>
</div>
<span style="color:#555;">(5)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:green;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>منطقة المستودعات</span>
</div>
<span style="color:#555;">(5)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkpurple;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الاوجام</span>
</div>
<span style="color:#555;">(4)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:red;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الصناعية</span>
</div>
<span style="color:#555;">(4)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkred;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الزهور</span>
</div>
<span style="color:#555;">(4)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:orange;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>المنتزة</span>
</div>
<span style="color:#555;">(3)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:red;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>البديع</span>
</div>
<span style="color:#555;">(3)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:red;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الاندلس</span>
</div>
<span style="color:#555;">(2)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkred;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الروضة</span>
</div>
<span style="color:#555;">(2)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:lightred;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>ج90</span>
</div>
<span style="color:#555;">(2)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:black;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الفيحاء</span>
</div>
<span style="color:#555;">(2)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:beige;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الإسكان</span>
</div>
<span style="color:#555;">(2)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>ج33</span>
</div>
<span style="color:#555;">(2)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>قرطبة</span>
</div>
<span style="color:#555;">(2)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkgreen;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الجميمة</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:orange;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>مزارع الجعيمه</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>غرب النابية</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>كورنيش رأس تنورة</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:lightblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>مزارع جزيرة فويعيه</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:red;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الرويحه</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:purple;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>مزارع غرب القطيف</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:lightgreen;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الديرة</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الجراري</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:lightblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>البستان</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الصفا</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkpurple;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الجواهر</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:darkred;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الدانة</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:black;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>بديعة البصري</span>
</div>
<span style="color:#555;">(1)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:lightblue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>الزهراء</span>
</div>
<span style="color:#555;">(1)</span>
</div>
</div>
</div>
</div>
<div style="
position: fixed;
bottom: 8px; left: 8px;
background: rgba(255,255,255,0.85);
padding: 6px 10px;
border-radius: 10px;
font-size: 13px;
direction: rtl;
z-index: 9999;
box-shadow: 0 1px 8px rgba(0,0,0,0.15);
">
تصميم وإعداد <b>نوف الناصر</b>
</div>
<div class="folium-map" id="map_ebf05b5cadf9ac784b4ef7d5f2f423ae" ></div>
</body>
<script>
var map_ebf05b5cadf9ac784b4ef7d5f2f423ae = L.map(
"map_ebf05b5cadf9ac784b4ef7d5f2f423ae",
{
center: [26.5650897287925, 50.001825450831504],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_7c7cb3c70e94c1816650e100a2464057 = 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_7c7cb3c70e94c1816650e100a2464057.addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var tile_layer_c55fc84fd5c5824ef77b9e0866fa5f01 = 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_c55fc84fd5c5824ef77b9e0866fa5f01.addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var tile_layer_9a0f1ab432faf5c57a6e86e8a1e718c1 = 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_9a0f1ab432faf5c57a6e86e8a1e718c1.addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var locate_control_345022e763b9f565c6831180cde0cdb5 = L.control.locate(
{}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var marker_9ed15f9fbcae78e8f90d92e29cd056f7 = L.marker(
[26.53571146, 49.92567883],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_bb243fc0d3e0eea148f26663811910c2 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a4d1ef91016eeab1f1081fb1b81d9930 = L.popup({
"maxWidth": 320,
});
var html_44d5a167b596379d8789704a1e3c1474 = $(`<div id="html_44d5a167b596379d8789704a1e3c1474" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مسا البيئة للمقاولات</b><br> الرقم الموحد: 7014754837<br> السجل التجاري: 2057000187<br> المنطقة: مزارع غرب القطيف<br> الحارة: مزارع غرب القطيف<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.53571146,49.92567883" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a4d1ef91016eeab1f1081fb1b81d9930.setContent(html_44d5a167b596379d8789704a1e3c1474);
marker_9ed15f9fbcae78e8f90d92e29cd056f7.bindPopup(popup_a4d1ef91016eeab1f1081fb1b81d9930)
;
marker_9ed15f9fbcae78e8f90d92e29cd056f7.setIcon(icon_bb243fc0d3e0eea148f26663811910c2);
var marker_bc6457a623fe197462cbd72ee1546598 = L.marker(
[26.75220455, 50.02759703],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_172bda7982667c16c20264033dd64f26 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_acf0c5e8ad81e401689d0dd356fa4658 = L.popup({
"maxWidth": 320,
});
var html_9cc891eab4d7a4ba2bb87a75bc104404 = $(`<div id="html_9cc891eab4d7a4ba2bb87a75bc104404" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فرع شركة الصناعات الهندسية الثقيلة وبناء السفن</b><br> الرقم الموحد: 7025593125<br> السجل التجاري: 2057474180<br> المنطقة: كورنيش رأس تنورة<br> الحارة: كورنيش رأس تنورة<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.75220455,50.02759703" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_acf0c5e8ad81e401689d0dd356fa4658.setContent(html_9cc891eab4d7a4ba2bb87a75bc104404);
marker_bc6457a623fe197462cbd72ee1546598.bindPopup(popup_acf0c5e8ad81e401689d0dd356fa4658)
;
marker_bc6457a623fe197462cbd72ee1546598.setIcon(icon_172bda7982667c16c20264033dd64f26);
var marker_f2e3c705de363832456f026944fc7309 = L.marker(
[26.81135056, 49.81340308],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_63052e4a3d5b77da9bf44f690727357d = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0424f665beaa06fc4921541f64fceb8c = L.popup({
"maxWidth": 320,
});
var html_1b5357f8c048b8e2393c590effe21931 = $(`<div id="html_1b5357f8c048b8e2393c590effe21931" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عبدالله ناس وشركاه</b><br> الرقم الموحد: 7001378319<br> السجل التجاري: 2055004127<br> المنطقة: مزارع جزيرة فويعيه<br> الحارة: مزارع جزيرة فويعيه<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.81135056,49.81340308" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0424f665beaa06fc4921541f64fceb8c.setContent(html_1b5357f8c048b8e2393c590effe21931);
marker_f2e3c705de363832456f026944fc7309.bindPopup(popup_0424f665beaa06fc4921541f64fceb8c)
;
marker_f2e3c705de363832456f026944fc7309.setIcon(icon_63052e4a3d5b77da9bf44f690727357d);
var marker_7acc6b197f61febaadaa0aed747545cc = L.marker(
[26.7550031580001, 49.914627415],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_8b94f405006363590f0598b64cd0b255 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_85f98f307cef2a4b60a2b1a80799ad02 = L.popup({
"maxWidth": 320,
});
var html_f471ed50566b6c5b886408ee176a8f71 = $(`<div id="html_f471ed50566b6c5b886408ee176a8f71" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الطريق السليم للمقاولات</b><br> الرقم الموحد: 7008059714<br> السجل التجاري: 2051031675<br> المنطقة: مزارع الجعيمه<br> الحارة: مزارع الجعيمه<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.7550031580001,49.914627415" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_85f98f307cef2a4b60a2b1a80799ad02.setContent(html_f471ed50566b6c5b886408ee176a8f71);
marker_7acc6b197f61febaadaa0aed747545cc.bindPopup(popup_85f98f307cef2a4b60a2b1a80799ad02)
;
marker_7acc6b197f61febaadaa0aed747545cc.setIcon(icon_8b94f405006363590f0598b64cd0b255);
var marker_43dbe40d57bb42ca9098261f22e1ff93 = L.marker(
[26.6262232, 49.82409026],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_f1d2dcfe34d5ff835e57dea7fb54f3ae = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f047c22bd6aed53219a00f1458c26947 = L.popup({
"maxWidth": 320,
});
var html_dc8c932e5b3c64fbfa59957f4d845daf = $(`<div id="html_dc8c932e5b3c64fbfa59957f4d845daf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة المتكاملة اللوجستية شركة شخص واحد</b><br> الرقم الموحد: 7032150422<br> السجل التجاري: 2051245072<br> المنطقة: الرويحه<br> الحارة: الرويحه<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.6262232,49.82409026" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f047c22bd6aed53219a00f1458c26947.setContent(html_dc8c932e5b3c64fbfa59957f4d845daf);
marker_43dbe40d57bb42ca9098261f22e1ff93.bindPopup(popup_f047c22bd6aed53219a00f1458c26947)
;
marker_43dbe40d57bb42ca9098261f22e1ff93.setIcon(icon_f1d2dcfe34d5ff835e57dea7fb54f3ae);
var marker_9b93c386f7462489cef1c96d9bb51dc9 = L.marker(
[26.51490397, 49.97839012],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_fbda966582c37f99a1d7e975c942e708 = L.AwesomeMarkers.icon(
{
"markerColor": "beige",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d2fc8be198c2a6fc3eba14a5199c3f5f = L.popup({
"maxWidth": 320,
});
var html_5e09633193e1f89b12b8f35be952b434 = $(`<div id="html_5e09633193e1f89b12b8f35be952b434" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مطعم ومطبخ السندباد للوجبات السريعة</b><br> الرقم الموحد: 7006212299<br> السجل التجاري: 2053022272<br> المنطقة: الجش<br> الحارة: الإسكان<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.51490397,49.97839012" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d2fc8be198c2a6fc3eba14a5199c3f5f.setContent(html_5e09633193e1f89b12b8f35be952b434);
marker_9b93c386f7462489cef1c96d9bb51dc9.bindPopup(popup_d2fc8be198c2a6fc3eba14a5199c3f5f)
;
marker_9b93c386f7462489cef1c96d9bb51dc9.setIcon(icon_fbda966582c37f99a1d7e975c942e708);
var marker_44018ce9f03ed1657adb9b9fae14e12d = L.marker(
[26.5528032158385, 49.9584932406253],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_98bcc95d82a40a627a5df104d6dd9afa = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ae2dbc595d44dc919cac86688a9e9da9 = L.popup({
"maxWidth": 320,
});
var html_f168b507e1890b059b240bb714e883e8 = $(`<div id="html_f168b507e1890b059b240bb714e883e8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصنع آفاق القرن للصناعات المعدنية</b><br> الرقم الموحد: 7001515456<br> السجل التجاري: 2053028583<br> المنطقة: الجاروديه<br> الحارة: البديع<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.5528032158385,49.9584932406253" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ae2dbc595d44dc919cac86688a9e9da9.setContent(html_f168b507e1890b059b240bb714e883e8);
marker_44018ce9f03ed1657adb9b9fae14e12d.bindPopup(popup_ae2dbc595d44dc919cac86688a9e9da9)
;
marker_44018ce9f03ed1657adb9b9fae14e12d.setIcon(icon_98bcc95d82a40a627a5df104d6dd9afa);
var marker_359b5d02c3c068b2cc44b88fb4c97908 = L.marker(
[26.55490446, 49.95851999],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_acf943aac11a03d086ee79dac92dddc1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fd78f0332c9db2bead13679f3fcb1a92 = L.popup({
"maxWidth": 320,
});
var html_5cacc18189314a7d193829d73706d643 = $(`<div id="html_5cacc18189314a7d193829d73706d643" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة رائد احمد العوامي للنجارة</b><br> الرقم الموحد: 7005022459<br> السجل التجاري: 2053112770<br> المنطقة: الجاروديه<br> الحارة: البديع<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.55490446,49.95851999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fd78f0332c9db2bead13679f3fcb1a92.setContent(html_5cacc18189314a7d193829d73706d643);
marker_359b5d02c3c068b2cc44b88fb4c97908.bindPopup(popup_fd78f0332c9db2bead13679f3fcb1a92)
;
marker_359b5d02c3c068b2cc44b88fb4c97908.setIcon(icon_acf943aac11a03d086ee79dac92dddc1);
var marker_e46e09b4b5f3c432a2809f93cac2778a = L.marker(
[26.54845768320086, 49.9584851259435],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_ff8b3988170a3f8d62d8ba9eac5dabea = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b88825af196d74651b211fc6adc2b8eb = L.popup({
"maxWidth": 320,
});
var html_72585b629861cb6fb9588b2fb0f954a9 = $(`<div id="html_72585b629861cb6fb9588b2fb0f954a9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الهواء النقي للغازات الصناعية</b><br> الرقم الموحد: 7033853750<br> السجل التجاري: 4030502312<br> المنطقة: الجاروديه<br> الحارة: البديع<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.54845768320086,49.9584851259435" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b88825af196d74651b211fc6adc2b8eb.setContent(html_72585b629861cb6fb9588b2fb0f954a9);
marker_e46e09b4b5f3c432a2809f93cac2778a.bindPopup(popup_b88825af196d74651b211fc6adc2b8eb)
;
marker_e46e09b4b5f3c432a2809f93cac2778a.setIcon(icon_ff8b3988170a3f8d62d8ba9eac5dabea);
var marker_c57b2d1ba6695fb305dffba3eb42450d = L.marker(
[26.51513237, 49.97743501],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_4f9f45ed7042fcc9208836df2778526c = L.AwesomeMarkers.icon(
{
"markerColor": "beige",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_94ab0fe8146b445945384fbf070e4a38 = L.popup({
"maxWidth": 320,
});
var html_88e6f29e083792f729120d6ef39754de = $(`<div id="html_88e6f29e083792f729120d6ef39754de" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اخر سما للمقاولات العامة</b><br> الرقم الموحد: 7003624256<br> السجل التجاري: 2050110145<br> المنطقة: الجش<br> الحارة: الإسكان<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.51513237,49.97743501" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_94ab0fe8146b445945384fbf070e4a38.setContent(html_88e6f29e083792f729120d6ef39754de);
marker_c57b2d1ba6695fb305dffba3eb42450d.bindPopup(popup_94ab0fe8146b445945384fbf070e4a38)
;
marker_c57b2d1ba6695fb305dffba3eb42450d.setIcon(icon_4f9f45ed7042fcc9208836df2778526c);
var marker_383d04b7308d96bc1c2420417f76488e = L.marker(
[26.47716316, 50.01134227],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_b1100053a47963a57a2cd2946d275d3d = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0cf982facc54cbc92f769a718b80e50c = L.popup({
"maxWidth": 320,
});
var html_15e3aa2d19f2a19625681a94534cbff1 = $(`<div id="html_15e3aa2d19f2a19625681a94534cbff1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مشاتل الريان الزراعية</b><br> الرقم الموحد: 7012665167<br> السجل التجاري: 2053029968<br> المنطقة: سيهات<br> الحارة: ج90<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.47716316,50.01134227" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0cf982facc54cbc92f769a718b80e50c.setContent(html_15e3aa2d19f2a19625681a94534cbff1);
marker_383d04b7308d96bc1c2420417f76488e.bindPopup(popup_0cf982facc54cbc92f769a718b80e50c)
;
marker_383d04b7308d96bc1c2420417f76488e.setIcon(icon_b1100053a47963a57a2cd2946d275d3d);
var marker_dbb7b59786da58e8eb5651663a31ef21 = L.marker(
[26.48022402, 50.01570576],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_aea15b7eb211bf5b0577efcdd102ce4c = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ffd95e9b5bb2e27d7f98930bdab4d3b4 = L.popup({
"maxWidth": 320,
});
var html_ff13a498d1604be33cb70b2bc41dcffe = $(`<div id="html_ff13a498d1604be33cb70b2bc41dcffe" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كارينا العربية المحدودة للمداخن</b><br> الرقم الموحد: 7000881891<br> السجل التجاري: 2051023204<br> المنطقة: سيهات<br> الحارة: ج90<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.48022402,50.01570576" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ffd95e9b5bb2e27d7f98930bdab4d3b4.setContent(html_ff13a498d1604be33cb70b2bc41dcffe);
marker_dbb7b59786da58e8eb5651663a31ef21.bindPopup(popup_ffd95e9b5bb2e27d7f98930bdab4d3b4)
;
marker_dbb7b59786da58e8eb5651663a31ef21.setIcon(icon_aea15b7eb211bf5b0577efcdd102ce4c);
var marker_6ff4a205e3f76258cee5c1e0192ad996 = L.marker(
[26.5767302, 49.9279123],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_76bca3ef7f85bfed3616f104e7de261a = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_929ff4b7523e6154a36c271ff9867684 = L.popup({
"maxWidth": 320,
});
var html_796bac606e8bbd9192bcfd369dd02e69 = $(`<div id="html_796bac606e8bbd9192bcfd369dd02e69" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مكامن أوف شور السعودية</b><br> الرقم الموحد: 7001684096<br> السجل التجاري: 2050077238<br> المنطقة: الاوجام<br> الحارة: الاوجام<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.5767302,49.9279123" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_929ff4b7523e6154a36c271ff9867684.setContent(html_796bac606e8bbd9192bcfd369dd02e69);
marker_6ff4a205e3f76258cee5c1e0192ad996.bindPopup(popup_929ff4b7523e6154a36c271ff9867684)
;
marker_6ff4a205e3f76258cee5c1e0192ad996.setIcon(icon_76bca3ef7f85bfed3616f104e7de261a);
var marker_55ea73bfeec0e5b4ef592cb59c1a07f6 = L.marker(
[26.57148871, 49.94609351],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_83d5ddc8b5bf8cf0412ea001d775c71f = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_47552b62fdd149ecd45285ea5fcc056f = L.popup({
"maxWidth": 320,
});
var html_e9749a040d396168f0da9b7c6193ead4 = $(`<div id="html_e9749a040d396168f0da9b7c6193ead4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ليل وقمر للمقاولات</b><br> الرقم الموحد: 7012665282<br> السجل التجاري: 2053014754<br> المنطقة: الاوجام<br> الحارة: الاوجام<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.57148871,49.94609351" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_47552b62fdd149ecd45285ea5fcc056f.setContent(html_e9749a040d396168f0da9b7c6193ead4);
marker_55ea73bfeec0e5b4ef592cb59c1a07f6.bindPopup(popup_47552b62fdd149ecd45285ea5fcc056f)
;
marker_55ea73bfeec0e5b4ef592cb59c1a07f6.setIcon(icon_83d5ddc8b5bf8cf0412ea001d775c71f);
var marker_23cd93f9315a9961f999a9012a6ef3b5 = L.marker(
[26.57157522, 49.94612736],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_1c27dd17bdb9cecb26151cacad5045ba = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_262155fb840398ee99b1eede63f8a634 = L.popup({
"maxWidth": 320,
});
var html_332dc90c1a319cb97921ba92e5f9e80f = $(`<div id="html_332dc90c1a319cb97921ba92e5f9e80f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة صبح وخير للمقاولات</b><br> الرقم الموحد: 7009167219<br> السجل التجاري: 2050105039<br> المنطقة: الاوجام<br> الحارة: الاوجام<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.57157522,49.94612736" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_262155fb840398ee99b1eede63f8a634.setContent(html_332dc90c1a319cb97921ba92e5f9e80f);
marker_23cd93f9315a9961f999a9012a6ef3b5.bindPopup(popup_262155fb840398ee99b1eede63f8a634)
;
marker_23cd93f9315a9961f999a9012a6ef3b5.setIcon(icon_1c27dd17bdb9cecb26151cacad5045ba);
var marker_6cca5d152f66a3fb64139b2b0bd574f8 = L.marker(
[26.57156807, 49.94606151],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_3037d4dbd11fa86039c60cb9107fa493 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e5588fc084050c387c42d1554ad5b3d7 = L.popup({
"maxWidth": 320,
});
var html_bd3e37e5ed5769d9b9654b6857a9efaf = $(`<div id="html_bd3e37e5ed5769d9b9654b6857a9efaf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة صباح الخيرات للمقاولات العامة</b><br> الرقم الموحد: 7014948421<br> السجل التجاري: 2053024877<br> المنطقة: الاوجام<br> الحارة: الاوجام<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.57156807,49.94606151" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e5588fc084050c387c42d1554ad5b3d7.setContent(html_bd3e37e5ed5769d9b9654b6857a9efaf);
marker_6cca5d152f66a3fb64139b2b0bd574f8.bindPopup(popup_e5588fc084050c387c42d1554ad5b3d7)
;
marker_6cca5d152f66a3fb64139b2b0bd574f8.setIcon(icon_3037d4dbd11fa86039c60cb9107fa493);
var marker_383372d7154e8aec24ca9ce00f43b891 = L.marker(
[26.46711548, 50.00502786],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_6ecf655107322302783c886345d7c237 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1f6eb16176a30d4cac5db568e7ce7415 = L.popup({
"maxWidth": 320,
});
var html_14c86d8a8d74d20ecb499ed0c6854133 = $(`<div id="html_14c86d8a8d74d20ecb499ed0c6854133" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جي تي سي اللوجستية</b><br> الرقم الموحد: 7001645493<br> السجل التجاري: 2050100615<br> المنطقة: النابيه<br> الحارة: غرب النابية<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.46711548,50.00502786" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1f6eb16176a30d4cac5db568e7ce7415.setContent(html_14c86d8a8d74d20ecb499ed0c6854133);
marker_383372d7154e8aec24ca9ce00f43b891.bindPopup(popup_1f6eb16176a30d4cac5db568e7ce7415)
;
marker_383372d7154e8aec24ca9ce00f43b891.setIcon(icon_6ecf655107322302783c886345d7c237);
var marker_73786803fa5b1064882678ab09bb0eeb = L.marker(
[26.49973926, 50.03071593],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_0c6c6454594baede8dc9fc444d304742 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4145a4f5c9d080f93ca19dcd41853d37 = L.popup({
"maxWidth": 320,
});
var html_675ccde6f2227edd9be663cf677e3eeb = $(`<div id="html_675ccde6f2227edd9be663cf677e3eeb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصنع مخابز رغيف السلطان للحلويات شركة شخص واحد</b><br> الرقم الموحد: 7006759539<br> السجل التجاري: 2053017909<br> المنطقة: سيهات<br> الحارة: ج33<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.49973926,50.03071593" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4145a4f5c9d080f93ca19dcd41853d37.setContent(html_675ccde6f2227edd9be663cf677e3eeb);
marker_73786803fa5b1064882678ab09bb0eeb.bindPopup(popup_4145a4f5c9d080f93ca19dcd41853d37)
;
marker_73786803fa5b1064882678ab09bb0eeb.setIcon(icon_0c6c6454594baede8dc9fc444d304742);
var marker_7f62b103944ba96cf179bbad03592471 = L.marker(
[26.4994117188016, 50.030164392368],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_b3113906cb560af62960aafde2590074 = L.AwesomeMarkers.icon(
{
"markerColor": "darkblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c9bdd2e61ccdf9b72cee3de6ceadf7bb = L.popup({
"maxWidth": 320,
});
var html_655e7e147ccf6e6b6202740267594e86 = $(`<div id="html_655e7e147ccf6e6b6202740267594e86" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ايلجنزا العالمية للمفروشات</b><br> الرقم الموحد: 7001894133<br> السجل التجاري: 2062031386<br> المنطقة: سيهات<br> الحارة: ج33<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.4994117188016,50.030164392368" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c9bdd2e61ccdf9b72cee3de6ceadf7bb.setContent(html_655e7e147ccf6e6b6202740267594e86);
marker_7f62b103944ba96cf179bbad03592471.bindPopup(popup_c9bdd2e61ccdf9b72cee3de6ceadf7bb)
;
marker_7f62b103944ba96cf179bbad03592471.setIcon(icon_b3113906cb560af62960aafde2590074);
var marker_dcb82c3d7f225f7c6c0ba1a852f33892 = L.marker(
[26.48596757, 49.98757355500004],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_b1d2f0a3ac6320f9dd63a5ac4ad9b683 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d8c7b8c0bb40840e69d82811db74c18c = L.popup({
"maxWidth": 320,
});
var html_32e6f10c5f14ed35347c4b79f1865558 = $(`<div id="html_32e6f10c5f14ed35347c4b79f1865558" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>فرع شركة هاليبورتون انيرجي سيرفيسيز انك</b><br> الرقم الموحد: 7000643986<br> السجل التجاري: 2051005390<br> المنطقة: الاوجام<br> الحارة: ج19<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.48596757,49.98757355500004" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d8c7b8c0bb40840e69d82811db74c18c.setContent(html_32e6f10c5f14ed35347c4b79f1865558);
marker_dcb82c3d7f225f7c6c0ba1a852f33892.bindPopup(popup_d8c7b8c0bb40840e69d82811db74c18c)
;
marker_dcb82c3d7f225f7c6c0ba1a852f33892.setIcon(icon_b1d2f0a3ac6320f9dd63a5ac4ad9b683);
var marker_2f0401bc94b9a54a6f32c3557310a6fc = L.marker(
[26.49114716, 49.97757254],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_a1be57368ad3db5b2683b07715ec8f00 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e6dad3e9526073c0ad8a1993eeee3f2c = L.popup({
"maxWidth": 320,
});
var html_12f90dd1db68bf2a2b0389a3c53b4e65 = $(`<div id="html_12f90dd1db68bf2a2b0389a3c53b4e65" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة وجبتي المميزة لتقديم الوجبات</b><br> الرقم الموحد: 7007767952<br> السجل التجاري: 2063034606<br> المنطقة: الاوجام<br> الحارة: ج19<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.49114716,49.97757254" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e6dad3e9526073c0ad8a1993eeee3f2c.setContent(html_12f90dd1db68bf2a2b0389a3c53b4e65);
marker_2f0401bc94b9a54a6f32c3557310a6fc.bindPopup(popup_e6dad3e9526073c0ad8a1993eeee3f2c)
;
marker_2f0401bc94b9a54a6f32c3557310a6fc.setIcon(icon_a1be57368ad3db5b2683b07715ec8f00);
var marker_e551fb19c4dd6aadfcdb7db48a4a5255 = L.marker(
[26.48736731, 49.98638392],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_a991098ca595306fe96b28604e86c935 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e9fe9560650631374dd0f51af4947e48 = L.popup({
"maxWidth": 320,
});
var html_45bd73a84235647b10d0855d9dd30fbb = $(`<div id="html_45bd73a84235647b10d0855d9dd30fbb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة هاليبورتون السعودية انديستريز</b><br> الرقم الموحد: 7001396022<br> السجل التجاري: 2052000745<br> المنطقة: الاوجام<br> الحارة: ج19<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.48736731,49.98638392" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e9fe9560650631374dd0f51af4947e48.setContent(html_45bd73a84235647b10d0855d9dd30fbb);
marker_e551fb19c4dd6aadfcdb7db48a4a5255.bindPopup(popup_e9fe9560650631374dd0f51af4947e48)
;
marker_e551fb19c4dd6aadfcdb7db48a4a5255.setIcon(icon_a991098ca595306fe96b28604e86c935);
var marker_98b6a169e898646ceeee15198461cb1c = L.marker(
[26.4997338554335, 49.968233100368],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_515e605d1eef7165e94fb8818818b39e = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_82bdc3963d05db2a5138b5b810a8af7e = L.popup({
"maxWidth": 320,
});
var html_0c547706875ac4eaabff6b65ee2b3a1d = $(`<div id="html_0c547706875ac4eaabff6b65ee2b3a1d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نابورس العربية المحدودة</b><br> الرقم الموحد: 7000017868<br> السجل التجاري: 2051002523<br> المنطقة: الاوجام<br> الحارة: ج19<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.4997338554335,49.968233100368" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_82bdc3963d05db2a5138b5b810a8af7e.setContent(html_0c547706875ac4eaabff6b65ee2b3a1d);
marker_98b6a169e898646ceeee15198461cb1c.bindPopup(popup_82bdc3963d05db2a5138b5b810a8af7e)
;
marker_98b6a169e898646ceeee15198461cb1c.setIcon(icon_515e605d1eef7165e94fb8818818b39e);
var marker_df80bdd08098161408d3f6db588cb17b = L.marker(
[26.51183445, 49.97018795],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_2ce047cc157ec2317bf6ed564509d542 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bbc144c798c7153f753a766c284cf24f = L.popup({
"maxWidth": 320,
});
var html_205873c664799f01427d7beb3a8f8451 = $(`<div id="html_205873c664799f01427d7beb3a8f8451" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مدارات العربية الخدمية</b><br> الرقم الموحد: 7010065691<br> السجل التجاري: 2050233283<br> المنطقة: الاوجام<br> الحارة: ج19<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.51183445,49.97018795" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bbc144c798c7153f753a766c284cf24f.setContent(html_205873c664799f01427d7beb3a8f8451);
marker_df80bdd08098161408d3f6db588cb17b.bindPopup(popup_bbc144c798c7153f753a766c284cf24f)
;
marker_df80bdd08098161408d3f6db588cb17b.setIcon(icon_2ce047cc157ec2317bf6ed564509d542);
var marker_5052cdd3b5957b866ef19a014e762ee6 = L.marker(
[26.5050758, 49.9747261],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_58d38dd569cb8cd7c612ba0548d978b7 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_132fb32012f818f50a6c52af87631eb4 = L.popup({
"maxWidth": 320,
});
var html_fdbc5e20979689ef3cc6f4158c77eabd = $(`<div id="html_fdbc5e20979689ef3cc6f4158c77eabd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مبان الحوت للمقاولات العامة</b><br> الرقم الموحد: 7017500344<br> السجل التجاري: 2050135771<br> المنطقة: الاوجام<br> الحارة: ج19<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.5050758,49.9747261" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_132fb32012f818f50a6c52af87631eb4.setContent(html_fdbc5e20979689ef3cc6f4158c77eabd);
marker_5052cdd3b5957b866ef19a014e762ee6.bindPopup(popup_132fb32012f818f50a6c52af87631eb4)
;
marker_5052cdd3b5957b866ef19a014e762ee6.setIcon(icon_58d38dd569cb8cd7c612ba0548d978b7);
var marker_76fa37898b9d8f6b5189f6a933f50280 = L.marker(
[26.4873833042747, 49.9863937742556],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_a388665d3a6698e695db0aab5095497e = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a7ec60e8f0f56b0f7a7d7cd81a5ca67c = L.popup({
"maxWidth": 320,
});
var html_a47a684c58ecbe851044c6281386fbb1 = $(`<div id="html_a47a684c58ecbe851044c6281386fbb1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سبيرى صن السعودية المحدودة</b><br> الرقم الموحد: 7000263231<br> السجل التجاري: 2050059212<br> المنطقة: الاوجام<br> الحارة: ج19<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.4873833042747,49.9863937742556" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a7ec60e8f0f56b0f7a7d7cd81a5ca67c.setContent(html_a47a684c58ecbe851044c6281386fbb1);
marker_76fa37898b9d8f6b5189f6a933f50280.bindPopup(popup_a7ec60e8f0f56b0f7a7d7cd81a5ca67c)
;
marker_76fa37898b9d8f6b5189f6a933f50280.setIcon(icon_a388665d3a6698e695db0aab5095497e);
var marker_ad3ab804f9d0dea77e99c09360a22342 = L.marker(
[26.5816920022894, 49.9792556528716],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_1dc7fc8aded7471162deac1318f21e27 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ccc8763b8a44391b7cd1bf58b2174364 = L.popup({
"maxWidth": 320,
});
var html_6bc8d41b520c1501275a23574af46a44 = $(`<div id="html_6bc8d41b520c1501275a23574af46a44" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عصر الانشاءات المعمارية المحدودة</b><br> الرقم الموحد: 7011980120<br> السجل التجاري: 2053018173<br> المنطقة: العواميه<br> الحارة: الجميمة<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.5816920022894,49.9792556528716" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ccc8763b8a44391b7cd1bf58b2174364.setContent(html_6bc8d41b520c1501275a23574af46a44);
marker_ad3ab804f9d0dea77e99c09360a22342.bindPopup(popup_ccc8763b8a44391b7cd1bf58b2174364)
;
marker_ad3ab804f9d0dea77e99c09360a22342.setIcon(icon_1dc7fc8aded7471162deac1318f21e27);
var marker_99b41c4a929653ebd70d564c61a51804 = L.marker(
[26.4762443911796, 50.0102484491596],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_1e09acccbd44715e5ab5f7ac37d81118 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4dd008325a6cf7a1471f30092476da67 = L.popup({
"maxWidth": 320,
});
var html_0b46c8d66af1ed32b6cd73fa52432cf6 = $(`<div id="html_0b46c8d66af1ed32b6cd73fa52432cf6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة هيرتز دايم لتأجير المعدات</b><br> الرقم الموحد: 7001636658<br> السجل التجاري: 2062028128<br> المنطقة: النابيه<br> الحارة: النابية<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.4762443911796,50.0102484491596" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4dd008325a6cf7a1471f30092476da67.setContent(html_0b46c8d66af1ed32b6cd73fa52432cf6);
marker_99b41c4a929653ebd70d564c61a51804.bindPopup(popup_4dd008325a6cf7a1471f30092476da67)
;
marker_99b41c4a929653ebd70d564c61a51804.setIcon(icon_1e09acccbd44715e5ab5f7ac37d81118);
var marker_362cb168ee79273d6a3c684131ca95cb = L.marker(
[26.47744441875362, 50.00403962787607],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_3d6ef378659444d157b7ca4590fbace9 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4ed166da7419a5778ee45e052c2c03e5 = L.popup({
"maxWidth": 320,
});
var html_57b4d867548669b6f5dd1993dd1df9de = $(`<div id="html_57b4d867548669b6f5dd1993dd1df9de" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ممر الثقه للخدمات اللوجستية</b><br> الرقم الموحد: 7040095627<br> السجل التجاري: 2050203723<br> المنطقة: النابيه<br> الحارة: النابية<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.47744441875362,50.00403962787607" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4ed166da7419a5778ee45e052c2c03e5.setContent(html_57b4d867548669b6f5dd1993dd1df9de);
marker_362cb168ee79273d6a3c684131ca95cb.bindPopup(popup_4ed166da7419a5778ee45e052c2c03e5)
;
marker_362cb168ee79273d6a3c684131ca95cb.setIcon(icon_3d6ef378659444d157b7ca4590fbace9);
var marker_1424b67a7b4d28367b78c29666a179c9 = L.marker(
[26.4709694645284, 50.0056059631544],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_e288c83da4fb9ac944a7f06c1718d559 = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7cad2fcaa3947162c2b71198ea25b551 = L.popup({
"maxWidth": 320,
});
var html_01b3c3313d631ec1aa71b6222d7b13c1 = $(`<div id="html_01b3c3313d631ec1aa71b6222d7b13c1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فاليستار يونفورمز المحدودة</b><br> الرقم الموحد: 7011689424<br> السجل التجاري: 2062029656<br> المنطقة: النابيه<br> الحارة: النابية<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.4709694645284,50.0056059631544" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7cad2fcaa3947162c2b71198ea25b551.setContent(html_01b3c3313d631ec1aa71b6222d7b13c1);
marker_1424b67a7b4d28367b78c29666a179c9.bindPopup(popup_7cad2fcaa3947162c2b71198ea25b551)
;
marker_1424b67a7b4d28367b78c29666a179c9.setIcon(icon_e288c83da4fb9ac944a7f06c1718d559);
var marker_e89f0d5367fb610cb0c0db568c36d2e7 = L.marker(
[26.4694824220001, 50.0070800780001],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_036fd40c159859d50866dd9a33b32eea = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3c362234d72dc24825c72a2ff5e25af2 = L.popup({
"maxWidth": 320,
});
var html_6db184c30dd567b14b1cb9787054688e = $(`<div id="html_6db184c30dd567b14b1cb9787054688e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المحاور العمرانية المتحدة المحدودة</b><br> الرقم الموحد: 7003525289<br> السجل التجاري: 2062033793<br> المنطقة: النابيه<br> الحارة: النابية<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.4694824220001,50.0070800780001" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3c362234d72dc24825c72a2ff5e25af2.setContent(html_6db184c30dd567b14b1cb9787054688e);
marker_e89f0d5367fb610cb0c0db568c36d2e7.bindPopup(popup_3c362234d72dc24825c72a2ff5e25af2)
;
marker_e89f0d5367fb610cb0c0db568c36d2e7.setIcon(icon_036fd40c159859d50866dd9a33b32eea);
var marker_73d4d9e95135a3c79905cc2c2aacf6ac = L.marker(
[26.47751577, 50.00408495],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_dad29a214f926ddf87ea6f90e7db2b5f = L.AwesomeMarkers.icon(
{
"markerColor": "purple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e4b98be307e70b8c1a5aa0277d4d3be9 = L.popup({
"maxWidth": 320,
});
var html_d8d00b2dc6ae94c493a11d31de660fc1 = $(`<div id="html_d8d00b2dc6ae94c493a11d31de660fc1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اعمار المنار لنقل النفایات</b><br> الرقم الموحد: 7028626641<br> السجل التجاري: 2050156910<br> المنطقة: النابيه<br> الحارة: النابية<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.47751577,50.00408495" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e4b98be307e70b8c1a5aa0277d4d3be9.setContent(html_d8d00b2dc6ae94c493a11d31de660fc1);
marker_73d4d9e95135a3c79905cc2c2aacf6ac.bindPopup(popup_e4b98be307e70b8c1a5aa0277d4d3be9)
;
marker_73d4d9e95135a3c79905cc2c2aacf6ac.setIcon(icon_dad29a214f926ddf87ea6f90e7db2b5f);
var marker_3091e76dfc46889bac2e3a79dd831369 = L.marker(
[26.5825164, 50.03510207],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_61833ff7a261348967c08348f8c65a9d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_aadf3f5bc18fbef13a6d5268746516c7 = L.popup({
"maxWidth": 320,
});
var html_469ce714b377be146959229cb51c6e81 = $(`<div id="html_469ce714b377be146959229cb51c6e81" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مصنع عبداللطيف محمد عبدالعزيز العرفج</b><br> الرقم الموحد: 7012012881<br> السجل التجاري: 2053028555<br> المنطقة: تاروت<br> الحارة: الصناعية<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.5825164,50.03510207" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_aadf3f5bc18fbef13a6d5268746516c7.setContent(html_469ce714b377be146959229cb51c6e81);
marker_3091e76dfc46889bac2e3a79dd831369.bindPopup(popup_aadf3f5bc18fbef13a6d5268746516c7)
;
marker_3091e76dfc46889bac2e3a79dd831369.setIcon(icon_61833ff7a261348967c08348f8c65a9d);
var marker_e22d05c96e634449bb654c04db8bdf9c = L.marker(
[26.46358578, 50.00893799],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_e56c32070e9fd1b92d9a32bc1aa07f2e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0bd070155a597b7767fee63f36b658e4 = L.popup({
"maxWidth": 320,
});
var html_ae8525d00c260e81f6b448275e73650e = $(`<div id="html_ae8525d00c260e81f6b448275e73650e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ميكستو العربية للصناعة</b><br> الرقم الموحد: 7017579306<br> السجل التجاري: 2053116568<br> المنطقة: النابيه<br> الحارة: الصناعية<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.46358578,50.00893799" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0bd070155a597b7767fee63f36b658e4.setContent(html_ae8525d00c260e81f6b448275e73650e);
marker_e22d05c96e634449bb654c04db8bdf9c.bindPopup(popup_0bd070155a597b7767fee63f36b658e4)
;
marker_e22d05c96e634449bb654c04db8bdf9c.setIcon(icon_e56c32070e9fd1b92d9a32bc1aa07f2e);
var marker_460ccb4b6c3bbc2da0b46ccc4e6c0bcf = L.marker(
[26.46306503, 50.00951133],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_fc769d6a258229bc9bae2919f1be1ac5 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d94f710d502f3f6b1b0c40984889b9db = L.popup({
"maxWidth": 320,
});
var html_ffbf34449a408cacdf655699a0ec0c3a = $(`<div id="html_ffbf34449a408cacdf655699a0ec0c3a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فرهد العربية للخدمات البئية</b><br> الرقم الموحد: 7012416397<br> السجل التجاري: 2062031270<br> المنطقة: النابيه<br> الحارة: الصناعية<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.46306503,50.00951133" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d94f710d502f3f6b1b0c40984889b9db.setContent(html_ffbf34449a408cacdf655699a0ec0c3a);
marker_460ccb4b6c3bbc2da0b46ccc4e6c0bcf.bindPopup(popup_d94f710d502f3f6b1b0c40984889b9db)
;
marker_460ccb4b6c3bbc2da0b46ccc4e6c0bcf.setIcon(icon_fc769d6a258229bc9bae2919f1be1ac5);
var marker_7b6c9d5dfb639b4562c3c4b31d2737d6 = L.marker(
[26.4641964407903, 50.0066122949797],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_1db0925edd6dbaa25311020de93ba591 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7f4b87700ec2c764d5234469ccbbf8ef = L.popup({
"maxWidth": 320,
});
var html_818344b8f03ed08657371c1c13d21c01 = $(`<div id="html_818344b8f03ed08657371c1c13d21c01" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المحيط العملاق للخدمات البئية</b><br> الرقم الموحد: 7006317015<br> السجل التجاري: 2062617396<br> المنطقة: النابيه<br> الحارة: الصناعية<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.4641964407903,50.0066122949797" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7f4b87700ec2c764d5234469ccbbf8ef.setContent(html_818344b8f03ed08657371c1c13d21c01);
marker_7b6c9d5dfb639b4562c3c4b31d2737d6.bindPopup(popup_7f4b87700ec2c764d5234469ccbbf8ef)
;
marker_7b6c9d5dfb639b4562c3c4b31d2737d6.setIcon(icon_1db0925edd6dbaa25311020de93ba591);
var marker_c5420c8dfa54edd6317f6914924074b9 = L.marker(
[26.5158405695618, 50.0345438527108],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_3a5d5f76b09f250d74de2b5ab16e5c61 = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_aa7b9dcf4670471a11723e6bc9975080 = L.popup({
"maxWidth": 320,
});
var html_5f9aaa651bef09956bbfdecac21ae448 = $(`<div id="html_5f9aaa651bef09956bbfdecac21ae448" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بسمات الشرقية الطبية</b><br> الرقم الموحد: 7012555442<br> السجل التجاري: 2053033133<br> المنطقة: عنك<br> الحارة: البستان<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.5158405695618,50.0345438527108" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_aa7b9dcf4670471a11723e6bc9975080.setContent(html_5f9aaa651bef09956bbfdecac21ae448);
marker_c5420c8dfa54edd6317f6914924074b9.bindPopup(popup_aa7b9dcf4670471a11723e6bc9975080)
;
marker_c5420c8dfa54edd6317f6914924074b9.setIcon(icon_3a5d5f76b09f250d74de2b5ab16e5c61);
var marker_1da89ddbeb624a9fa12a43e599276064 = L.marker(
[26.5020489539312, 50.038697850905],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_e9f7d2006f566fbf3ccf6e58043efc67 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_66d2b0c6fe0d24d4caea0d1d7a51cddc = L.popup({
"maxWidth": 320,
});
var html_99bc86c4fda18436fa197b53ef999a17 = $(`<div id="html_99bc86c4fda18436fa197b53ef999a17" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دانة الريان للمقاولات</b><br> الرقم الموحد: 7017398400<br> السجل التجاري: 2062618040<br> المنطقة: سيهات<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.5020489539312,50.038697850905" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_66d2b0c6fe0d24d4caea0d1d7a51cddc.setContent(html_99bc86c4fda18436fa197b53ef999a17);
marker_1da89ddbeb624a9fa12a43e599276064.bindPopup(popup_66d2b0c6fe0d24d4caea0d1d7a51cddc)
;
marker_1da89ddbeb624a9fa12a43e599276064.setIcon(icon_e9f7d2006f566fbf3ccf6e58043efc67);
var marker_28e8d0275b6cec900bf0fbd24141b392 = L.marker(
[26.50111279, 50.03975013],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_701e22a0fa2c73b501957298b52796d5 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4ef4c8e70bd595af486e42cdc6ed7816 = L.popup({
"maxWidth": 320,
});
var html_7eda9e324c3c384643fe5231c0855979 = $(`<div id="html_7eda9e324c3c384643fe5231c0855979" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة التوقيع العالمي التجارية</b><br> الرقم الموحد: 7030895747<br> السجل التجاري: 2062619407<br> المنطقة: سيهات<br> الحارة: قرطبة<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.50111279,50.03975013" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4ef4c8e70bd595af486e42cdc6ed7816.setContent(html_7eda9e324c3c384643fe5231c0855979);
marker_28e8d0275b6cec900bf0fbd24141b392.bindPopup(popup_4ef4c8e70bd595af486e42cdc6ed7816)
;
marker_28e8d0275b6cec900bf0fbd24141b392.setIcon(icon_701e22a0fa2c73b501957298b52796d5);
var marker_d9075b7a3d437a8ad407a7884261541a = L.marker(
[26.64282127, 49.95629903],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_4abc298f09563134585ca40f6e3dbf60 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cd6695dff5e5bc0507dfd31e321d298d = L.popup({
"maxWidth": 320,
});
var html_cd63eb56e612ec423234f187b0eb2259 = $(`<div id="html_cd63eb56e612ec423234f187b0eb2259" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مجمع سلامتك الطبي</b><br> الرقم الموحد: 7011047417<br> السجل التجاري: 2063012494<br> المنطقة: صفوى<br> الحارة: الصفا<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.64282127,49.95629903" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cd6695dff5e5bc0507dfd31e321d298d.setContent(html_cd63eb56e612ec423234f187b0eb2259);
marker_d9075b7a3d437a8ad407a7884261541a.bindPopup(popup_cd6695dff5e5bc0507dfd31e321d298d)
;
marker_d9075b7a3d437a8ad407a7884261541a.setIcon(icon_4abc298f09563134585ca40f6e3dbf60);
var marker_c28b5c8d9174d7597e78436b61e2bd6f = L.marker(
[26.55831663, 50.00278793],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_7498e280c8215f7b0337da5ec0bbe450 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d799c08d38eb68168226701fbdd3de67 = L.popup({
"maxWidth": 320,
});
var html_c8e6b3d125b3b33b025f0616d0a23e3c = $(`<div id="html_c8e6b3d125b3b33b025f0616d0a23e3c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تيتان للمقاولات</b><br> الرقم الموحد: 7012028317<br> السجل التجاري: 2053029746<br> المنطقة: القطيف<br> الحارة: الجراري<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.55831663,50.00278793" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d799c08d38eb68168226701fbdd3de67.setContent(html_c8e6b3d125b3b33b025f0616d0a23e3c);
marker_c28b5c8d9174d7597e78436b61e2bd6f.bindPopup(popup_d799c08d38eb68168226701fbdd3de67)
;
marker_c28b5c8d9174d7597e78436b61e2bd6f.setIcon(icon_7498e280c8215f7b0337da5ec0bbe450);
var marker_dbb8db9264c5adedc67d6ed0cdf13cc5 = L.marker(
[26.46403157021486, 50.02655700780451],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_b913c85b006742ed7ef8eb4e16b9337f = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8a6401dd3faa4f3f0d50649140de4c36 = L.popup({
"maxWidth": 320,
});
var html_25fc09df9e0a0a0871458fa7f1b9e5e2 = $(`<div id="html_25fc09df9e0a0a0871458fa7f1b9e5e2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دانة ألماسة للرخام والحجر</b><br> الرقم الموحد: 7002369002<br> السجل التجاري: 2050093090<br> المنطقة: سيهات<br> الحارة: الزهور<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.46403157021486,50.02655700780451" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8a6401dd3faa4f3f0d50649140de4c36.setContent(html_25fc09df9e0a0a0871458fa7f1b9e5e2);
marker_dbb8db9264c5adedc67d6ed0cdf13cc5.bindPopup(popup_8a6401dd3faa4f3f0d50649140de4c36)
;
marker_dbb8db9264c5adedc67d6ed0cdf13cc5.setIcon(icon_b913c85b006742ed7ef8eb4e16b9337f);
var marker_03c6d24581f1cfc1a20d9419966ebe67 = L.marker(
[26.4876383980688, 50.0374097376241],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_9281c7dbe9579b4f5b3a611623412bfd = L.AwesomeMarkers.icon(
{
"markerColor": "lightgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_48c231778039abd0d7cfb0cda933de9b = L.popup({
"maxWidth": 320,
});
var html_407bc48ec644c0556547baf2be874c95 = $(`<div id="html_407bc48ec644c0556547baf2be874c95" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فوارس الشرق الصناعية</b><br> الرقم الموحد: 7012477043<br> السجل التجاري: 2062020556<br> المنطقة: سيهات<br> الحارة: الديرة<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.4876383980688,50.0374097376241" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_48c231778039abd0d7cfb0cda933de9b.setContent(html_407bc48ec644c0556547baf2be874c95);
marker_03c6d24581f1cfc1a20d9419966ebe67.bindPopup(popup_48c231778039abd0d7cfb0cda933de9b)
;
marker_03c6d24581f1cfc1a20d9419966ebe67.setIcon(icon_9281c7dbe9579b4f5b3a611623412bfd);
var marker_11ed139048b2559e72b34046f3917c09 = L.marker(
[26.70846627, 50.05127653],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_86ffae912db67269735b51b0080fb100 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_753deda69c05ba1e06c6b263e9dcf5c7 = L.popup({
"maxWidth": 320,
});
var html_f3821f5a4057605300da45c1d3628cfd = $(`<div id="html_f3821f5a4057605300da45c1d3628cfd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة لبنان الأخضر المحدودة</b><br> الرقم الموحد: 7012066689<br> السجل التجاري: 2066002220<br> المنطقة: رحيمة<br> الحارة: الزهور<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.70846627,50.05127653" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_753deda69c05ba1e06c6b263e9dcf5c7.setContent(html_f3821f5a4057605300da45c1d3628cfd);
marker_11ed139048b2559e72b34046f3917c09.bindPopup(popup_753deda69c05ba1e06c6b263e9dcf5c7)
;
marker_11ed139048b2559e72b34046f3917c09.setIcon(icon_86ffae912db67269735b51b0080fb100);
var marker_b128649a90f044384578b2bafb9c245b = L.marker(
[26.7113182635856, 50.0480896737229],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_790e3594f124e1abfd40f672e56c6655 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_187fa7d2c15a830dc0bc06886abbe8ae = L.popup({
"maxWidth": 320,
});
var html_026424725010e4a7986393d3b0ba338a = $(`<div id="html_026424725010e4a7986393d3b0ba338a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة فلك الجزيرة للمقاولات</b><br> الرقم الموحد: 7001728547<br> السجل التجاري: 2066003730<br> المنطقة: رحيمة<br> الحارة: الزهور<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.7113182635856,50.0480896737229" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_187fa7d2c15a830dc0bc06886abbe8ae.setContent(html_026424725010e4a7986393d3b0ba338a);
marker_b128649a90f044384578b2bafb9c245b.bindPopup(popup_187fa7d2c15a830dc0bc06886abbe8ae)
;
marker_b128649a90f044384578b2bafb9c245b.setIcon(icon_790e3594f124e1abfd40f672e56c6655);
var marker_8b719b46692d30a19b2ac1c3a9c73be9 = L.marker(
[26.7065894969266, 50.0521246220455],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_fa6651285bd84e3dc5743424ce3da48a = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_44d1d79e8d322949e4e0341bfe9649c2 = L.popup({
"maxWidth": 320,
});
var html_a4dc0728c233c3fd06cacb41833b87e0 = $(`<div id="html_a4dc0728c233c3fd06cacb41833b87e0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة دونغ يونغ العربية المحدودة</b><br> الرقم الموحد: 7028717028<br> السجل التجاري: 2055133249<br> المنطقة: رحيمة<br> الحارة: الزهور<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.7065894969266,50.0521246220455" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_44d1d79e8d322949e4e0341bfe9649c2.setContent(html_a4dc0728c233c3fd06cacb41833b87e0);
marker_8b719b46692d30a19b2ac1c3a9c73be9.bindPopup(popup_44d1d79e8d322949e4e0341bfe9649c2)
;
marker_8b719b46692d30a19b2ac1c3a9c73be9.setIcon(icon_fa6651285bd84e3dc5743424ce3da48a);
var marker_4e6dd33e93c9d560a1719a834461594d = L.marker(
[26.6980310883197, 50.0480243405417],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_5dfe03a3aa6d309c5098763125f7439c = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_937c85babff001661fb22e229be53717 = L.popup({
"maxWidth": 320,
});
var html_b4c96ec8465753a7d78175121eeab3d9 = $(`<div id="html_b4c96ec8465753a7d78175121eeab3d9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>محيط البحري للتجارة</b><br> الرقم الموحد: 7012365149<br> السجل التجاري: 2066003602<br> المنطقة: رحيمة<br> الحارة: المنتزة<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.6980310883197,50.0480243405417" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_937c85babff001661fb22e229be53717.setContent(html_b4c96ec8465753a7d78175121eeab3d9);
marker_4e6dd33e93c9d560a1719a834461594d.bindPopup(popup_937c85babff001661fb22e229be53717)
;
marker_4e6dd33e93c9d560a1719a834461594d.setIcon(icon_5dfe03a3aa6d309c5098763125f7439c);
var marker_d1dffdbe480c8c64f4800a9a5a91c834 = L.marker(
[26.71276191, 50.05707896],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_fc8bf651142c29613218b55625f57b39 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8593154df889cd4849aa4a9749bb72d3 = L.popup({
"maxWidth": 320,
});
var html_884679e9b46973468f46dea27feefd18 = $(`<div id="html_884679e9b46973468f46dea27feefd18" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كيفير السعودية العربية</b><br> الرقم الموحد: 7001523203<br> السجل التجاري: 2051034435<br> المنطقة: رحيمة<br> الحارة: الفيحاء<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.71276191,50.05707896" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8593154df889cd4849aa4a9749bb72d3.setContent(html_884679e9b46973468f46dea27feefd18);
marker_d1dffdbe480c8c64f4800a9a5a91c834.bindPopup(popup_8593154df889cd4849aa4a9749bb72d3)
;
marker_d1dffdbe480c8c64f4800a9a5a91c834.setIcon(icon_fc8bf651142c29613218b55625f57b39);
var marker_bee2e4bd54b9ad63d0b97579fcd80ab4 = L.marker(
[26.7122908, 50.05046996],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_314cf6fd4d4f576c2b62d137d3817629 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_be86c23152238aba617c2d8a0386b817 = L.popup({
"maxWidth": 320,
});
var html_8158f748cbaacca078346de8aaded7d3 = $(`<div id="html_8158f748cbaacca078346de8aaded7d3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ابتكار الرئيسية للمقاولات</b><br> الرقم الموحد: 7034432653<br> السجل التجاري: 2050172178<br> المنطقة: رحيمة<br> الحارة: الفيحاء<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.7122908,50.05046996" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_be86c23152238aba617c2d8a0386b817.setContent(html_8158f748cbaacca078346de8aaded7d3);
marker_bee2e4bd54b9ad63d0b97579fcd80ab4.bindPopup(popup_be86c23152238aba617c2d8a0386b817)
;
marker_bee2e4bd54b9ad63d0b97579fcd80ab4.setIcon(icon_314cf6fd4d4f576c2b62d137d3817629);
var marker_a5507ebbc42846aa31ed52d482f1a60b = L.marker(
[26.4930453863967, 50.0365108645932],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_848e816cb2dabb279242699994165f7d = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_256ead73a5958aabd46ddb96ab3c54e4 = L.popup({
"maxWidth": 320,
});
var html_b828f12381f849b2a464a912078ba42c = $(`<div id="html_b828f12381f849b2a464a912078ba42c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مؤسسة هاشم الموسوي للمقاولات</b><br> الرقم الموحد: 7012661182<br> السجل التجاري: 2062011388<br> المنطقة: سيهات<br> الحارة: المنتزة<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.4930453863967,50.0365108645932" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_256ead73a5958aabd46ddb96ab3c54e4.setContent(html_b828f12381f849b2a464a912078ba42c);
marker_a5507ebbc42846aa31ed52d482f1a60b.bindPopup(popup_256ead73a5958aabd46ddb96ab3c54e4)
;
marker_a5507ebbc42846aa31ed52d482f1a60b.setIcon(icon_848e816cb2dabb279242699994165f7d);
var marker_b2e4b5f08bb4d30e32193463f716b60b = L.marker(
[26.4906905417699, 50.042996863648],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_f7d4b9873c992884dc50b47b1a49d196 = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_57d001a8a0e8a015133611b8cd0e466d = L.popup({
"maxWidth": 320,
});
var html_853acff92db402798be78b87221220a6 = $(`<div id="html_853acff92db402798be78b87221220a6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>الشركة التشيكية السعودية الطبية المحدودة</b><br> الرقم الموحد: 7001524334<br> السجل التجاري: 2062017984<br> المنطقة: سيهات<br> الحارة: المنتزة<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.4906905417699,50.042996863648" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_57d001a8a0e8a015133611b8cd0e466d.setContent(html_853acff92db402798be78b87221220a6);
marker_b2e4b5f08bb4d30e32193463f716b60b.bindPopup(popup_57d001a8a0e8a015133611b8cd0e466d)
;
marker_b2e4b5f08bb4d30e32193463f716b60b.setIcon(icon_f7d4b9873c992884dc50b47b1a49d196);
var marker_51c85bf04119510ccd47790ec885cbfd = L.marker(
[26.70570276, 50.06462902],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_b35e8c2896e2f9996eb5f679ad6d4725 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_26df9b43a2b02d5178266479da859709 = L.popup({
"maxWidth": 320,
});
var html_b8f0d47a9f8a90637e53c2e21a93bb61 = $(`<div id="html_b8f0d47a9f8a90637e53c2e21a93bb61" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كاليبر العالمية للتجارة</b><br> الرقم الموحد: 7005576371<br> السجل التجاري: 2066611790<br> المنطقة: رحيمة<br> الحارة: الدانة<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.70570276,50.06462902" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_26df9b43a2b02d5178266479da859709.setContent(html_b8f0d47a9f8a90637e53c2e21a93bb61);
marker_51c85bf04119510ccd47790ec885cbfd.bindPopup(popup_26df9b43a2b02d5178266479da859709)
;
marker_51c85bf04119510ccd47790ec885cbfd.setIcon(icon_b35e8c2896e2f9996eb5f679ad6d4725);
var marker_a26e62b659d5d7d1d07f69a4ed7ec71e = L.marker(
[26.71072647, 50.06737734],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_636c225159bd6c5a01eececc2a3fa64e = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1016ac88117fca069938e3ed14846aa8 = L.popup({
"maxWidth": 320,
});
var html_d9538292c36f3935ce9a8a6eaca82419 = $(`<div id="html_d9538292c36f3935ce9a8a6eaca82419" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة حورية المشارق للمقاولات العامة</b><br> الرقم الموحد: 7004372335<br> السجل التجاري: 2066611674<br> المنطقة: رحيمة<br> الحارة: الروضة<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.71072647,50.06737734" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1016ac88117fca069938e3ed14846aa8.setContent(html_d9538292c36f3935ce9a8a6eaca82419);
marker_a26e62b659d5d7d1d07f69a4ed7ec71e.bindPopup(popup_1016ac88117fca069938e3ed14846aa8)
;
marker_a26e62b659d5d7d1d07f69a4ed7ec71e.setIcon(icon_636c225159bd6c5a01eececc2a3fa64e);
var marker_5d80281124fb2a475bbf453988524b22 = L.marker(
[26.70658239288198, 50.06833853200078],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_ede8c7d263d69d3ede2326eedfbc872c = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dc5bf8dde1e4fb40739ac3b66cfbf4d2 = L.popup({
"maxWidth": 320,
});
var html_54401b9d5d36c3a954ef09161f7280ba = $(`<div id="html_54401b9d5d36c3a954ef09161f7280ba" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تجهيز فلكس للمقاولات</b><br> الرقم الموحد: 7038138546<br> السجل التجاري: 2066612923<br> المنطقة: رحيمة<br> الحارة: الروضة<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.70658239288198,50.06833853200078" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dc5bf8dde1e4fb40739ac3b66cfbf4d2.setContent(html_54401b9d5d36c3a954ef09161f7280ba);
marker_5d80281124fb2a475bbf453988524b22.bindPopup(popup_dc5bf8dde1e4fb40739ac3b66cfbf4d2)
;
marker_5d80281124fb2a475bbf453988524b22.setIcon(icon_ede8c7d263d69d3ede2326eedfbc872c);
var marker_7085b298a5563a3ebab9eb49adf7fe9d = L.marker(
[26.58349638008662, 50.00826593488455],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_86fbf5a2376e677661de91337eab017f = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0c25f7d129d6b2f67e478743e3821d36 = L.popup({
"maxWidth": 320,
});
var html_23032c21655b829a9c9692f58b5ec775 = $(`<div id="html_23032c21655b829a9c9692f58b5ec775" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مجمع اكويا الطبي</b><br> الرقم الموحد: 7037791030<br> السجل التجاري: 2053125401<br> المنطقة: القطيف<br> الحارة: الجواهر<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.58349638008662,50.00826593488455" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0c25f7d129d6b2f67e478743e3821d36.setContent(html_23032c21655b829a9c9692f58b5ec775);
marker_7085b298a5563a3ebab9eb49adf7fe9d.bindPopup(popup_0c25f7d129d6b2f67e478743e3821d36)
;
marker_7085b298a5563a3ebab9eb49adf7fe9d.setIcon(icon_86fbf5a2376e677661de91337eab017f);
var marker_d079b29c6471d0e22086a3f16b479dd4 = L.marker(
[26.7053903, 50.07193043],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_02ddd073d092586b530ab37d4cc9129b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_02d64ff749beef84400cee4cc6b45255 = L.popup({
"maxWidth": 320,
});
var html_cc14945f1c7557912c44da2f026134d9 = $(`<div id="html_cc14945f1c7557912c44da2f026134d9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة أي تي اس تستينغ سيرفيسسز</b><br> الرقم الموحد: 7004916925<br> السجل التجاري: 2066611726<br> المنطقة: رحيمة<br> الحارة: الاندلس<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.7053903,50.07193043" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_02d64ff749beef84400cee4cc6b45255.setContent(html_cc14945f1c7557912c44da2f026134d9);
marker_d079b29c6471d0e22086a3f16b479dd4.bindPopup(popup_02d64ff749beef84400cee4cc6b45255)
;
marker_d079b29c6471d0e22086a3f16b479dd4.setIcon(icon_02ddd073d092586b530ab37d4cc9129b);
var marker_c1480f7cc9ceff31a76d1a2aa282410f = L.marker(
[26.70229875, 50.0686703],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_c75e3eb37d2c1b8abc7281cf923a0843 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_18dce75645b2c5e5447443f7a6bbbc13 = L.popup({
"maxWidth": 320,
});
var html_a072490bbd0cc44096ebdbc9af053298 = $(`<div id="html_a072490bbd0cc44096ebdbc9af053298" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الجزيرة المعماري للمقاولات</b><br> الرقم الموحد: 7034298443<br> السجل التجاري: 2066612792<br> المنطقة: رحيمة<br> الحارة: الاندلس<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.70229875,50.0686703" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_18dce75645b2c5e5447443f7a6bbbc13.setContent(html_a072490bbd0cc44096ebdbc9af053298);
marker_c1480f7cc9ceff31a76d1a2aa282410f.bindPopup(popup_18dce75645b2c5e5447443f7a6bbbc13)
;
marker_c1480f7cc9ceff31a76d1a2aa282410f.setIcon(icon_c75e3eb37d2c1b8abc7281cf923a0843);
var marker_9bb3369cf083912adc95b3e82546bce6 = L.marker(
[26.55623086, 50.00731904],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_ded5a35136e8c5d516186fdf543a6e41 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8d2c7eb1de52bcdd5821e994662062c9 = L.popup({
"maxWidth": 320,
});
var html_7e213a9090720de3292c71ba0ca91ff4 = $(`<div id="html_7e213a9090720de3292c71ba0ca91ff4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>كنوز الاسماك</b><br> الرقم الموحد: 7012954017<br> السجل التجاري: 2053009586<br> المنطقة: القطيف<br> الحارة: بديعة البصري<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.55623086,50.00731904" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8d2c7eb1de52bcdd5821e994662062c9.setContent(html_7e213a9090720de3292c71ba0ca91ff4);
marker_9bb3369cf083912adc95b3e82546bce6.bindPopup(popup_8d2c7eb1de52bcdd5821e994662062c9)
;
marker_9bb3369cf083912adc95b3e82546bce6.setIcon(icon_ded5a35136e8c5d516186fdf543a6e41);
var marker_b35d24b6bc81fce4d2d4caccfafe1708 = L.marker(
[26.61787222, 50.00738582],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_43c753bec7c87f0105b1a637cb6d730e = L.AwesomeMarkers.icon(
{
"markerColor": "lightblue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0326f2a0594d2841d79f5c33bb1789bd = L.popup({
"maxWidth": 320,
});
var html_b26001bfa2f3e8a47d516281ff229a45 = $(`<div id="html_b26001bfa2f3e8a47d516281ff229a45" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نون توب التجارية</b><br> الرقم الموحد: 7021173476<br> السجل التجاري: 2053117741<br> المنطقة: القطيف<br> الحارة: الزهراء<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.61787222,50.00738582" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0326f2a0594d2841d79f5c33bb1789bd.setContent(html_b26001bfa2f3e8a47d516281ff229a45);
marker_b35d24b6bc81fce4d2d4caccfafe1708.bindPopup(popup_0326f2a0594d2841d79f5c33bb1789bd)
;
marker_b35d24b6bc81fce4d2d4caccfafe1708.setIcon(icon_43c753bec7c87f0105b1a637cb6d730e);
var marker_600666857a65759fa39fde188d3ab6ab = L.marker(
[26.53786957129548, 50.02333419582284],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_30e909dd7acf83eea0935d0aab94a3cb = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5e00ded1b92ce89e7058209c49c834c6 = L.popup({
"maxWidth": 320,
});
var html_4df5f932d35667b464256c9823d519e4 = $(`<div id="html_4df5f932d35667b464256c9823d519e4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة نهلة الخليج التجارية</b><br> الرقم الموحد: 7034614607<br> السجل التجاري: 2050174334<br> المنطقة: القطيف<br> الحارة: منطقة المستودعات<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.53786957129548,50.02333419582284" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5e00ded1b92ce89e7058209c49c834c6.setContent(html_4df5f932d35667b464256c9823d519e4);
marker_600666857a65759fa39fde188d3ab6ab.bindPopup(popup_5e00ded1b92ce89e7058209c49c834c6)
;
marker_600666857a65759fa39fde188d3ab6ab.setIcon(icon_30e909dd7acf83eea0935d0aab94a3cb);
var marker_f99a04e539987567f7a80e86a77735ab = L.marker(
[26.5348206345899, 50.0261376773104],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_36b57601e6942c46a0196d95108df9e5 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4e669733ae080e3c1d349f28500c4ddf = L.popup({
"maxWidth": 320,
});
var html_1b2072c9c638f92ccdadb24091da6db1 = $(`<div id="html_1b2072c9c638f92ccdadb24091da6db1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عيادات رام الطبية</b><br> الرقم الموحد: 7011742090<br> السجل التجاري: 2051033648<br> المنطقة: القطيف<br> الحارة: منطقة المستودعات<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.5348206345899,50.0261376773104" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4e669733ae080e3c1d349f28500c4ddf.setContent(html_1b2072c9c638f92ccdadb24091da6db1);
marker_f99a04e539987567f7a80e86a77735ab.bindPopup(popup_4e669733ae080e3c1d349f28500c4ddf)
;
marker_f99a04e539987567f7a80e86a77735ab.setIcon(icon_36b57601e6942c46a0196d95108df9e5);
var marker_f5952f3db4112db507ebb882229b80f6 = L.marker(
[26.53994628, 50.02203673],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_893adcf4791f381ac6c3df88cf4e32f9 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c9f0d8f6985ef5aa60037c2273fe3cf3 = L.popup({
"maxWidth": 320,
});
var html_a960ad015f83b10135fdf70c5fe77c31 = $(`<div id="html_a960ad015f83b10135fdf70c5fe77c31" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سحر الطعام للتجارة</b><br> الرقم الموحد: 7017708699<br> السجل التجاري: 2062618143<br> المنطقة: القطيف<br> الحارة: منطقة المستودعات<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.53994628,50.02203673" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c9f0d8f6985ef5aa60037c2273fe3cf3.setContent(html_a960ad015f83b10135fdf70c5fe77c31);
marker_f5952f3db4112db507ebb882229b80f6.bindPopup(popup_c9f0d8f6985ef5aa60037c2273fe3cf3)
;
marker_f5952f3db4112db507ebb882229b80f6.setIcon(icon_893adcf4791f381ac6c3df88cf4e32f9);
var marker_1b8de2d363776d0819aaf6c80f52c06d = L.marker(
[26.54329415, 50.02044786],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_d2e5b4336553ad73f19fba3796021a7f = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d695f921f5d633a03b42cd808efb332a = L.popup({
"maxWidth": 320,
});
var html_f253f805cd71b4706dae6e212056aa78 = $(`<div id="html_f253f805cd71b4706dae6e212056aa78" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة تخفيضات بصمة العائلة التجارية</b><br> الرقم الموحد: 7021316190<br> السجل التجاري: 2053117863<br> المنطقة: القطيف<br> الحارة: منطقة المستودعات<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.54329415,50.02044786" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d695f921f5d633a03b42cd808efb332a.setContent(html_f253f805cd71b4706dae6e212056aa78);
marker_1b8de2d363776d0819aaf6c80f52c06d.bindPopup(popup_d695f921f5d633a03b42cd808efb332a)
;
marker_1b8de2d363776d0819aaf6c80f52c06d.setIcon(icon_d2e5b4336553ad73f19fba3796021a7f);
var marker_c1816d00372263f0c0f18227c227ffc6 = L.marker(
[26.5395759, 50.02091828],
{
}
).addTo(map_ebf05b5cadf9ac784b4ef7d5f2f423ae);
var icon_e9b8908fd7be5e216ea792769530c3d8 = L.AwesomeMarkers.icon(
{
"markerColor": "green",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5bdada8a044b9d73ea9014258cb43aaf = L.popup({
"maxWidth": 320,
});
var html_79d48dcd277110ef0a606dd812b096db = $(`<div id="html_79d48dcd277110ef0a606dd812b096db" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الموج المتميز التجارية</b><br> الرقم الموحد: 7008645207<br> السجل التجاري: 2053113930<br> المنطقة: القطيف<br> الحارة: منطقة المستودعات<br> <b>اسم الباحث:</b> خديجة حسين هنبوبه<br> <a href="https://www.google.com/maps?q=26.5395759,50.02091828" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5bdada8a044b9d73ea9014258cb43aaf.setContent(html_79d48dcd277110ef0a606dd812b096db);
marker_c1816d00372263f0c0f18227c227ffc6.bindPopup(popup_5bdada8a044b9d73ea9014258cb43aaf)
;
marker_c1816d00372263f0c0f18227c227ffc6.setIcon(icon_e9b8908fd7be5e216ea792769530c3d8);
</script>
</html> |