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 | <!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_f9af6901b6268b9394c4b58276397ee7 {
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_4" onclick="
var panel = document.getElementById('stats_4');
var btn = document.getElementById('btn_stats_4');
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_4" 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;
">غلا عبدالعزيز بن هندي الفلاحي - 4</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 67</div>
<div><b>عدد الحارات:</b> 9</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• المنار: 17</div><div>• الشعلة: 12</div><div>• الفيصلية: 9</div><div>• الفيحاء: 8</div><div>• الرابية: 7</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_04_غلا_عبدالعزيز_بن_هندي_الفلاحي.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:lightred;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>المنار</span>
</div>
<span style="color:#555;">(17)</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;">(12)</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;">(9)</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;">(8)</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;">(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:darkred;
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:gray;
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: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:pink;
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_f9af6901b6268b9394c4b58276397ee7" ></div>
</body>
<script>
var map_f9af6901b6268b9394c4b58276397ee7 = L.map(
"map_f9af6901b6268b9394c4b58276397ee7",
{
center: [26.398580186423885, 50.050918025687906],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_92c116c76d6ef3a751afe34e5997259b = 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_92c116c76d6ef3a751afe34e5997259b.addTo(map_f9af6901b6268b9394c4b58276397ee7);
var tile_layer_4d6f1970455a8129f81833ef21c8f296 = 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_4d6f1970455a8129f81833ef21c8f296.addTo(map_f9af6901b6268b9394c4b58276397ee7);
var tile_layer_73f14d2ab36c870a53bf7c56bf344dbf = 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_73f14d2ab36c870a53bf7c56bf344dbf.addTo(map_f9af6901b6268b9394c4b58276397ee7);
var locate_control_66a8da7ac59e3f4da6fb72893f00eb2a = L.control.locate(
{}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var marker_d5aaed9b3a3b1fe2fb2eedd1f2de942a = L.marker(
[26.42203071, 50.02728868],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_98c60ad1f07e0d40803f51b95225887d = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_430446fe6f9e3d9908e3afd8de9c6f63 = L.popup({
"maxWidth": 320,
});
var html_121660fab2fa21a802644c80e018187a = $(`<div id="html_121660fab2fa21a802644c80e018187a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الركن الطازج للوجبات السريعة</b><br> الرقم الموحد: 7004416801<br> السجل التجاري: 2050116882<br> المنطقة: الدمام<br> الحارة: النور<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.42203071,50.02728868" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_430446fe6f9e3d9908e3afd8de9c6f63.setContent(html_121660fab2fa21a802644c80e018187a);
marker_d5aaed9b3a3b1fe2fb2eedd1f2de942a.bindPopup(popup_430446fe6f9e3d9908e3afd8de9c6f63)
;
marker_d5aaed9b3a3b1fe2fb2eedd1f2de942a.setIcon(icon_98c60ad1f07e0d40803f51b95225887d);
var marker_a44ad0a7c62420d81086a317dd479b4b = L.marker(
[26.42488329053771, 50.02393238246441],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_4904d96dde7bdb218edabe91047c76ca = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c414b05ec3bbc7c0cfa82f7b4ea465e6 = L.popup({
"maxWidth": 320,
});
var html_b7e0c2bf58b945232a413ee5fa4473dc = $(`<div id="html_b7e0c2bf58b945232a413ee5fa4473dc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اكنان تشييد وطاقة المحدودة</b><br> الرقم الموحد: 7034420971<br> السجل التجاري: 2051248457<br> المنطقة: الدمام<br> الحارة: النور<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.42488329053771,50.02393238246441" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c414b05ec3bbc7c0cfa82f7b4ea465e6.setContent(html_b7e0c2bf58b945232a413ee5fa4473dc);
marker_a44ad0a7c62420d81086a317dd479b4b.bindPopup(popup_c414b05ec3bbc7c0cfa82f7b4ea465e6)
;
marker_a44ad0a7c62420d81086a317dd479b4b.setIcon(icon_4904d96dde7bdb218edabe91047c76ca);
var marker_331bc0129ed214b5bb3cbf83b7729a33 = L.marker(
[26.4251173109259, 50.0297186600703],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_70e7d1d1266eb48e7a482dbd754e819e = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e7329958d066d80a6d9ceba09f90c00f = L.popup({
"maxWidth": 320,
});
var html_9e7b315b21030fb34b233eebaecbefd7 = $(`<div id="html_9e7b315b21030fb34b233eebaecbefd7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عاصمة الكنانة للمقاولات العامة</b><br> الرقم الموحد: 7008325305<br> السجل التجاري: 2050138718<br> المنطقة: الدمام<br> الحارة: النور<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.4251173109259,50.0297186600703" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e7329958d066d80a6d9ceba09f90c00f.setContent(html_9e7b315b21030fb34b233eebaecbefd7);
marker_331bc0129ed214b5bb3cbf83b7729a33.bindPopup(popup_e7329958d066d80a6d9ceba09f90c00f)
;
marker_331bc0129ed214b5bb3cbf83b7729a33.setIcon(icon_70e7d1d1266eb48e7a482dbd754e819e);
var marker_03e07d955c86e201200c048a923465d7 = L.marker(
[26.425438, 50.03368709],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_b89579169c309ed1011c20683919e0a8 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cbcb385909d93c38d1a9b346fa1615bb = L.popup({
"maxWidth": 320,
});
var html_fd7f6d2fed346e142779a7ba334addae = $(`<div id="html_fd7f6d2fed346e142779a7ba334addae" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جيباز الشرق الأوسط السعودية التجارية</b><br> الرقم الموحد: 7016393717<br> السجل التجاري: 1010615573<br> المنطقة: الدمام<br> الحارة: النور<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.425438,50.03368709" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cbcb385909d93c38d1a9b346fa1615bb.setContent(html_fd7f6d2fed346e142779a7ba334addae);
marker_03e07d955c86e201200c048a923465d7.bindPopup(popup_cbcb385909d93c38d1a9b346fa1615bb)
;
marker_03e07d955c86e201200c048a923465d7.setIcon(icon_b89579169c309ed1011c20683919e0a8);
var marker_04f84d483798cd443979051693b4de83 = L.marker(
[26.43615849, 50.03344156],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_23e05687b9029b6ae85ef810d7fa7143 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_df8625f9bae6b734280012c984ee044c = L.popup({
"maxWidth": 320,
});
var html_ae4737751e317cd2a500f6d17013557f = $(`<div id="html_ae4737751e317cd2a500f6d17013557f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة بدر عمر سعيدالجابري لخدمات السيارات</b><br> الرقم الموحد: 7013358580<br> السجل التجاري: 2050098570<br> المنطقة: الدمام<br> الحارة: النور<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.43615849,50.03344156" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_df8625f9bae6b734280012c984ee044c.setContent(html_ae4737751e317cd2a500f6d17013557f);
marker_04f84d483798cd443979051693b4de83.bindPopup(popup_df8625f9bae6b734280012c984ee044c)
;
marker_04f84d483798cd443979051693b4de83.setIcon(icon_23e05687b9029b6ae85ef810d7fa7143);
var marker_649d230f2d5bc5ed67fafc36efa64467 = L.marker(
[26.3954394351379, 50.0194189378801],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_6348f0418a0d0207cc06c13b5954395f = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c2f132a37670300af65e34e16f34205b = L.popup({
"maxWidth": 320,
});
var html_88568fca2a75a22fdd3e7790b9ac7de5 = $(`<div id="html_88568fca2a75a22fdd3e7790b9ac7de5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جبل العر لخدمات السيارات</b><br> الرقم الموحد: 7008018686<br> السجل التجاري: 2050115382<br> المنطقة: الدمام<br> الحارة: بدر<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.3954394351379,50.0194189378801" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c2f132a37670300af65e34e16f34205b.setContent(html_88568fca2a75a22fdd3e7790b9ac7de5);
marker_649d230f2d5bc5ed67fafc36efa64467.bindPopup(popup_c2f132a37670300af65e34e16f34205b)
;
marker_649d230f2d5bc5ed67fafc36efa64467.setIcon(icon_6348f0418a0d0207cc06c13b5954395f);
var marker_61e6b7c22d6b2e57909b9f25de885684 = L.marker(
[26.40378778, 50.01846308],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_9ffcb9dcb01d1be98707e257639cc9ca = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bdc5ae76d98e6b81bfc2bc0cad7b16d5 = L.popup({
"maxWidth": 320,
});
var html_2f2171edacaa73040dc58c754e05c043 = $(`<div id="html_2f2171edacaa73040dc58c754e05c043" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ريتساوت شياترس الخاصة لتقديم</b><br> الرقم الموحد: 7027924252<br> السجل التجاري: 2050154835<br> المنطقة: الدمام<br> الحارة: بدر<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.40378778,50.01846308" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bdc5ae76d98e6b81bfc2bc0cad7b16d5.setContent(html_2f2171edacaa73040dc58c754e05c043);
marker_61e6b7c22d6b2e57909b9f25de885684.bindPopup(popup_bdc5ae76d98e6b81bfc2bc0cad7b16d5)
;
marker_61e6b7c22d6b2e57909b9f25de885684.setIcon(icon_9ffcb9dcb01d1be98707e257639cc9ca);
var marker_fa83540ddbfe1dedadcce14b336543e7 = L.marker(
[26.4055098789405, 50.015971085802],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_26070dc5109869dc7f90eba29ee9d3f1 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_978637afa34603f833ee324fa9d2ee25 = L.popup({
"maxWidth": 320,
});
var html_850679bd3a268515756db25246d98361 = $(`<div id="html_850679bd3a268515756db25246d98361" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ذروة الأبداع للمقاولات</b><br> الرقم الموحد: 7016805454<br> السجل التجاري: 2050132860<br> المنطقة: الدمام<br> الحارة: بدر<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.4055098789405,50.015971085802" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_978637afa34603f833ee324fa9d2ee25.setContent(html_850679bd3a268515756db25246d98361);
marker_fa83540ddbfe1dedadcce14b336543e7.bindPopup(popup_978637afa34603f833ee324fa9d2ee25)
;
marker_fa83540ddbfe1dedadcce14b336543e7.setIcon(icon_26070dc5109869dc7f90eba29ee9d3f1);
var marker_13fe0960996b0270f9ce6c17c30c49f9 = L.marker(
[26.40556614059477, 50.01605672191852],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_4aae75df7deb85fa403924bb4e1065b1 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6adf239fed351a1c79156bcb6b22ec9e = L.popup({
"maxWidth": 320,
});
var html_7f979f2c868264bd808511a0a0c3418d = $(`<div id="html_7f979f2c868264bd808511a0a0c3418d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة القبة البيضاء للمقاولات العامة</b><br> الرقم الموحد: 7011032088<br> السجل التجاري: 2050033243<br> المنطقة: الدمام<br> الحارة: بدر<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.40556614059477,50.01605672191852" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6adf239fed351a1c79156bcb6b22ec9e.setContent(html_7f979f2c868264bd808511a0a0c3418d);
marker_13fe0960996b0270f9ce6c17c30c49f9.bindPopup(popup_6adf239fed351a1c79156bcb6b22ec9e)
;
marker_13fe0960996b0270f9ce6c17c30c49f9.setIcon(icon_4aae75df7deb85fa403924bb4e1065b1);
var marker_6f830c4c307df1b2c2d58f80de933fe1 = L.marker(
[26.46038976848563, 50.02989937996718],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_6823ea98f29aa25830b044636d1f4098 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e3779dc726517331907c90c29273cc3a = L.popup({
"maxWidth": 320,
});
var html_ea7cdf0cd0cb0fac67cef5897bb82111 = $(`<div id="html_ea7cdf0cd0cb0fac67cef5897bb82111" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة حسن سالم امبيلت المهري التجارية</b><br> الرقم الموحد: 7007215622<br> السجل التجاري: 2050040399<br> المنطقة: الدمام<br> الحارة: الرابية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.46038976848563,50.02989937996718" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e3779dc726517331907c90c29273cc3a.setContent(html_ea7cdf0cd0cb0fac67cef5897bb82111);
marker_6f830c4c307df1b2c2d58f80de933fe1.bindPopup(popup_e3779dc726517331907c90c29273cc3a)
;
marker_6f830c4c307df1b2c2d58f80de933fe1.setIcon(icon_6823ea98f29aa25830b044636d1f4098);
var marker_576d04f0ac00060589fbd75a61cf6007 = L.marker(
[26.4614680675808, 50.0335726557497],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_f84146918c6f4efd6c1db065347af353 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_17066846ec31b54f709cd29e520274c5 = L.popup({
"maxWidth": 320,
});
var html_25da6ad6cca8d74aae8f28c1d99e6377 = $(`<div id="html_25da6ad6cca8d74aae8f28c1d99e6377" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الطبقة العليا للتجارة</b><br> الرقم الموحد: 7014199371<br> السجل التجاري: 2050053910<br> المنطقة: الدمام<br> الحارة: الرابية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.4614680675808,50.0335726557497" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_17066846ec31b54f709cd29e520274c5.setContent(html_25da6ad6cca8d74aae8f28c1d99e6377);
marker_576d04f0ac00060589fbd75a61cf6007.bindPopup(popup_17066846ec31b54f709cd29e520274c5)
;
marker_576d04f0ac00060589fbd75a61cf6007.setIcon(icon_f84146918c6f4efd6c1db065347af353);
var marker_b709cfde2cc874f3b641ebcc1b77add0 = L.marker(
[26.46385881, 50.03084979],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_2fc75b21670087500639140cb85a978d = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c4ac5d7c72f1ae81fe66e3b07652b69f = L.popup({
"maxWidth": 320,
});
var html_b1a6477f25685de96d282aeb55db8101 = $(`<div id="html_b1a6477f25685de96d282aeb55db8101" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة التقنيات الفائقة للمقاولات</b><br> الرقم الموحد: 7030127224<br> السجل التجاري: 2051242759<br> المنطقة: الدمام<br> الحارة: الرابية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.46385881,50.03084979" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c4ac5d7c72f1ae81fe66e3b07652b69f.setContent(html_b1a6477f25685de96d282aeb55db8101);
marker_b709cfde2cc874f3b641ebcc1b77add0.bindPopup(popup_c4ac5d7c72f1ae81fe66e3b07652b69f)
;
marker_b709cfde2cc874f3b641ebcc1b77add0.setIcon(icon_2fc75b21670087500639140cb85a978d);
var marker_193919600b2ec2262731b95bc2f0fd77 = L.marker(
[26.4642068379216, 50.0316767852842],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_271c432f4eb205c1a78ad1379f3312e8 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_db6a54ace25a2812617062a946ad4360 = L.popup({
"maxWidth": 320,
});
var html_a52c233b45a7d339762fbe63bc9c19b9 = $(`<div id="html_a52c233b45a7d339762fbe63bc9c19b9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اكنان الهندسية للمقاولات</b><br> الرقم الموحد: 7013187047<br> السجل التجاري: 2051036678<br> المنطقة: الدمام<br> الحارة: الرابية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.4642068379216,50.0316767852842" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_db6a54ace25a2812617062a946ad4360.setContent(html_a52c233b45a7d339762fbe63bc9c19b9);
marker_193919600b2ec2262731b95bc2f0fd77.bindPopup(popup_db6a54ace25a2812617062a946ad4360)
;
marker_193919600b2ec2262731b95bc2f0fd77.setIcon(icon_271c432f4eb205c1a78ad1379f3312e8);
var marker_768f5627e1cbfa2c7083b3f48ed55d5f = L.marker(
[26.464262, 50.0318656],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_104758ea0a2e318e2b4e9f97109e37d1 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d88b96141b431ea239424cbf59ec552d = L.popup({
"maxWidth": 320,
});
var html_3b7432093c37482a7891948e4fa505e0 = $(`<div id="html_3b7432093c37482a7891948e4fa505e0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الدمام الغربية للتشغيل والصيانة</b><br> الرقم الموحد: 7015842144<br> السجل التجاري: 2050128648<br> المنطقة: الدمام<br> الحارة: الرابية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.464262,50.0318656" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d88b96141b431ea239424cbf59ec552d.setContent(html_3b7432093c37482a7891948e4fa505e0);
marker_768f5627e1cbfa2c7083b3f48ed55d5f.bindPopup(popup_d88b96141b431ea239424cbf59ec552d)
;
marker_768f5627e1cbfa2c7083b3f48ed55d5f.setIcon(icon_104758ea0a2e318e2b4e9f97109e37d1);
var marker_04d44369401e86879a149091a2587759 = L.marker(
[26.46436275, 50.03856731],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_fda26881491e4a664e6a30f9dffb8ea5 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0bee912e719366d56d0e9208e2acc70e = L.popup({
"maxWidth": 320,
});
var html_cce27ec043fd78e52964f8e60aee0df5 = $(`<div id="html_cce27ec043fd78e52964f8e60aee0df5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصعد القمة للمصاعد</b><br> الرقم الموحد: 7014287556<br> السجل التجاري: 2050072111<br> المنطقة: الدمام<br> الحارة: الرابية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.46436275,50.03856731" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0bee912e719366d56d0e9208e2acc70e.setContent(html_cce27ec043fd78e52964f8e60aee0df5);
marker_04d44369401e86879a149091a2587759.bindPopup(popup_0bee912e719366d56d0e9208e2acc70e)
;
marker_04d44369401e86879a149091a2587759.setIcon(icon_fda26881491e4a664e6a30f9dffb8ea5);
var marker_b78c1d2d896e8637e36d710b23623dc9 = L.marker(
[26.46507783, 50.035081],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_898338396772369e25ff5cb857c70a18 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c1cde7439da9c7ab496d27b4facfa382 = L.popup({
"maxWidth": 320,
});
var html_df8aa96d567a5eae7b541add3e1b059f = $(`<div id="html_df8aa96d567a5eae7b541add3e1b059f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة عيادة رعاية الحيوان العالمية</b><br> الرقم الموحد: 7021568584<br> السجل التجاري: 2050142647<br> المنطقة: الدمام<br> الحارة: الرابية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.46507783,50.035081" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c1cde7439da9c7ab496d27b4facfa382.setContent(html_df8aa96d567a5eae7b541add3e1b059f);
marker_b78c1d2d896e8637e36d710b23623dc9.bindPopup(popup_c1cde7439da9c7ab496d27b4facfa382)
;
marker_b78c1d2d896e8637e36d710b23623dc9.setIcon(icon_898338396772369e25ff5cb857c70a18);
var marker_87178d04cfe697971f6875b12a8e778c = L.marker(
[26.43601677, 50.03584379],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_751ad80bdcdfea57fd0901ebb7e341d0 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_75291925bc64560b6f2e015f8548bf99 = L.popup({
"maxWidth": 320,
});
var html_3d1b3815de0aa54a4a96d1dd38db092a = $(`<div id="html_3d1b3815de0aa54a4a96d1dd38db092a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة زيوت الشرق التجارية</b><br> الرقم الموحد: 7007470151<br> السجل التجاري: 2050087063<br> المنطقة: الدمام<br> الحارة: الفيحاء<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.43601677,50.03584379" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_75291925bc64560b6f2e015f8548bf99.setContent(html_3d1b3815de0aa54a4a96d1dd38db092a);
marker_87178d04cfe697971f6875b12a8e778c.bindPopup(popup_75291925bc64560b6f2e015f8548bf99)
;
marker_87178d04cfe697971f6875b12a8e778c.setIcon(icon_751ad80bdcdfea57fd0901ebb7e341d0);
var marker_4bad9ffdef18040317e2719c34ab42cb = L.marker(
[26.44069976, 50.03141349],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_57ac6c973983aeb671423e829a527b2c = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_38ff87968233e1944971867723fda573 = L.popup({
"maxWidth": 320,
});
var html_ffd32960d9cf736476c041c72af37874 = $(`<div id="html_ffd32960d9cf736476c041c72af37874" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة درع النخبة المحدودة</b><br> الرقم الموحد: 7035106181<br> السجل التجاري: 2050169909<br> المنطقة: الدمام<br> الحارة: الفيحاء<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.44069976,50.03141349" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_38ff87968233e1944971867723fda573.setContent(html_ffd32960d9cf736476c041c72af37874);
marker_4bad9ffdef18040317e2719c34ab42cb.bindPopup(popup_38ff87968233e1944971867723fda573)
;
marker_4bad9ffdef18040317e2719c34ab42cb.setIcon(icon_57ac6c973983aeb671423e829a527b2c);
var marker_61c2ac7da18f2caaccc5eba8133bb26b = L.marker(
[26.4416341652263, 50.0425072616658],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_3e82d6a3d1389ed4ff749908b105b5ff = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_33cc3eb77cada5d1f82e00cf3ece862b = L.popup({
"maxWidth": 320,
});
var html_108db234041511d658c7df188ee49225 = $(`<div id="html_108db234041511d658c7df188ee49225" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مصنع عالم نجمة المعادن للصناعة</b><br> الرقم الموحد: 7010065378<br> السجل التجاري: 2050233281<br> المنطقة: الدمام<br> الحارة: الفيحاء<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.4416341652263,50.0425072616658" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_33cc3eb77cada5d1f82e00cf3ece862b.setContent(html_108db234041511d658c7df188ee49225);
marker_61c2ac7da18f2caaccc5eba8133bb26b.bindPopup(popup_33cc3eb77cada5d1f82e00cf3ece862b)
;
marker_61c2ac7da18f2caaccc5eba8133bb26b.setIcon(icon_3e82d6a3d1389ed4ff749908b105b5ff);
var marker_fe1c91addfa3a4238f08eefcd8ea8a59 = L.marker(
[26.4427704830232, 50.04289584783022],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_c99cedfbad8625a3c58597cdc012be04 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5a5ad5421a64e5a25aa91c32c97d1f39 = L.popup({
"maxWidth": 320,
});
var html_8a970eddbcbb8020ac3ccaddc576e600 = $(`<div id="html_8a970eddbcbb8020ac3ccaddc576e600" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الفخامة الدولية للصناعة</b><br> الرقم الموحد: 7043271506<br> السجل التجاري: 2050204218<br> المنطقة: الدمام<br> الحارة: الفيحاء<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.4427704830232,50.04289584783022" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5a5ad5421a64e5a25aa91c32c97d1f39.setContent(html_8a970eddbcbb8020ac3ccaddc576e600);
marker_fe1c91addfa3a4238f08eefcd8ea8a59.bindPopup(popup_5a5ad5421a64e5a25aa91c32c97d1f39)
;
marker_fe1c91addfa3a4238f08eefcd8ea8a59.setIcon(icon_c99cedfbad8625a3c58597cdc012be04);
var marker_f20acad4b675a1f7923db48d6f6f4b44 = L.marker(
[26.44522789022017, 50.03943697549403],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_1b5d562c7f2cf84525459ac39cf30b35 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_49a92897c49fbd8dc49e1b54d6670f61 = L.popup({
"maxWidth": 320,
});
var html_5013f7fa8c9e9584c51ec965a566c909 = $(`<div id="html_5013f7fa8c9e9584c51ec965a566c909" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة محور الأجزاء لقطع الغيار</b><br> الرقم الموحد: 7038758715<br> السجل التجاري: 1009011590<br> المنطقة: الدمام<br> الحارة: الفيحاء<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.44522789022017,50.03943697549403" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_49a92897c49fbd8dc49e1b54d6670f61.setContent(html_5013f7fa8c9e9584c51ec965a566c909);
marker_f20acad4b675a1f7923db48d6f6f4b44.bindPopup(popup_49a92897c49fbd8dc49e1b54d6670f61)
;
marker_f20acad4b675a1f7923db48d6f6f4b44.setIcon(icon_1b5d562c7f2cf84525459ac39cf30b35);
var marker_c426f7fdef0b478cd89725ecd50e5ba6 = L.marker(
[26.44605635, 50.04131301],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_3326f847f323fa6e223d3b106c48265c = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_de3d425d36dbdcd8be876b64f8c307f2 = L.popup({
"maxWidth": 320,
});
var html_ee51b54a09b3ecbb05a80620306caf0a = $(`<div id="html_ee51b54a09b3ecbb05a80620306caf0a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الحلول الصناعية المتعددة</b><br> الرقم الموحد: 7001821888<br> السجل التجاري: 2050097537<br> المنطقة: الدمام<br> الحارة: الفيحاء<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.44605635,50.04131301" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_de3d425d36dbdcd8be876b64f8c307f2.setContent(html_ee51b54a09b3ecbb05a80620306caf0a);
marker_c426f7fdef0b478cd89725ecd50e5ba6.bindPopup(popup_de3d425d36dbdcd8be876b64f8c307f2)
;
marker_c426f7fdef0b478cd89725ecd50e5ba6.setIcon(icon_3326f847f323fa6e223d3b106c48265c);
var marker_bac84c951dc0b75502320413b5bea75e = L.marker(
[26.44752175, 50.03998046],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_a9c88817385d11e2fb67d697e28c38d0 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6b5feb7254a8faaf165e6bee22d8dc53 = L.popup({
"maxWidth": 320,
});
var html_471ebbe7c1a7037052aedca073742f3d = $(`<div id="html_471ebbe7c1a7037052aedca073742f3d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مصنع النبعة لتعبئة المياه</b><br> الرقم الموحد: 7012822131<br> السجل التجاري: 2050056277<br> المنطقة: الدمام<br> الحارة: الفيحاء<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.44752175,50.03998046" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6b5feb7254a8faaf165e6bee22d8dc53.setContent(html_471ebbe7c1a7037052aedca073742f3d);
marker_bac84c951dc0b75502320413b5bea75e.bindPopup(popup_6b5feb7254a8faaf165e6bee22d8dc53)
;
marker_bac84c951dc0b75502320413b5bea75e.setIcon(icon_a9c88817385d11e2fb67d697e28c38d0);
var marker_fb636e9f9c588d52f4bc5e0084415974 = L.marker(
[26.44900845881502, 50.03766051493585],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_1ce8a77d4de27f30c435fc69b0a67717 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ba10dfbccec66d68a910cf48ce1d8239 = L.popup({
"maxWidth": 320,
});
var html_8c5f0fea5c7f82fed81855f60a913398 = $(`<div id="html_8c5f0fea5c7f82fed81855f60a913398" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مخرطة الخير الحديثة للخراطه</b><br> الرقم الموحد: 7026837810<br> السجل التجاري: 2050151844<br> المنطقة: الدمام<br> الحارة: الفيحاء<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.44900845881502,50.03766051493585" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ba10dfbccec66d68a910cf48ce1d8239.setContent(html_8c5f0fea5c7f82fed81855f60a913398);
marker_fb636e9f9c588d52f4bc5e0084415974.bindPopup(popup_ba10dfbccec66d68a910cf48ce1d8239)
;
marker_fb636e9f9c588d52f4bc5e0084415974.setIcon(icon_1ce8a77d4de27f30c435fc69b0a67717);
var marker_9d255ee680b28d88ea0dbc7f68e1a089 = L.marker(
[26.3627648501501, 50.0364300756991],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_ec5902b6a778bc528275ebc500cf2623 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_55c3dc57e1180c0d58924980616df90e = L.popup({
"maxWidth": 320,
});
var html_212532c3928bf4520b1ca0f67eb65eb8 = $(`<div id="html_212532c3928bf4520b1ca0f67eb65eb8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المنتج الراقي للتجارة</b><br> الرقم الموحد: 7023948586<br> السجل التجاري: 1010727321<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.3627648501501,50.0364300756991" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_55c3dc57e1180c0d58924980616df90e.setContent(html_212532c3928bf4520b1ca0f67eb65eb8);
marker_9d255ee680b28d88ea0dbc7f68e1a089.bindPopup(popup_55c3dc57e1180c0d58924980616df90e)
;
marker_9d255ee680b28d88ea0dbc7f68e1a089.setIcon(icon_ec5902b6a778bc528275ebc500cf2623);
var marker_cc29d003ecce3f2dbba0866eeceaf2e1 = L.marker(
[26.36431094, 50.02999379],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_93e0201ea59a4d292194f7eafed5f688 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d2e227bff158bbe96c142a0bde34b60c = L.popup({
"maxWidth": 320,
});
var html_e2174b490ed54089d3ba578e99f0eac5 = $(`<div id="html_e2174b490ed54089d3ba578e99f0eac5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الوعد للمقاولات</b><br> الرقم الموحد: 7013208967<br> السجل التجاري: 2050093957<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.36431094,50.02999379" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d2e227bff158bbe96c142a0bde34b60c.setContent(html_e2174b490ed54089d3ba578e99f0eac5);
marker_cc29d003ecce3f2dbba0866eeceaf2e1.bindPopup(popup_d2e227bff158bbe96c142a0bde34b60c)
;
marker_cc29d003ecce3f2dbba0866eeceaf2e1.setIcon(icon_93e0201ea59a4d292194f7eafed5f688);
var marker_234e376ad8bfff69e46590f262680cfc = L.marker(
[26.364858959139, 50.0286116515361],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_0675c1c856c1a4da2b09c6d6f5d93671 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ae3925acdee84ef4947ee08e7e42fbd3 = L.popup({
"maxWidth": 320,
});
var html_f065643753c57e0c9847e0a7af0d43b7 = $(`<div id="html_f065643753c57e0c9847e0a7af0d43b7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة السلطانية الحديثة للخدمات السيارات</b><br> الرقم الموحد: 7007907228<br> السجل التجاري: 2050114364<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.364858959139,50.0286116515361" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ae3925acdee84ef4947ee08e7e42fbd3.setContent(html_f065643753c57e0c9847e0a7af0d43b7);
marker_234e376ad8bfff69e46590f262680cfc.bindPopup(popup_ae3925acdee84ef4947ee08e7e42fbd3)
;
marker_234e376ad8bfff69e46590f262680cfc.setIcon(icon_0675c1c856c1a4da2b09c6d6f5d93671);
var marker_8b0093d4d0baac28efcafc8a962d0cf4 = L.marker(
[26.36549272, 50.02833225],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_0fd6b773756fd37ac7831734ad594459 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5241509605e30a1299e00d78a78ad2e9 = L.popup({
"maxWidth": 320,
});
var html_6c62914086105edb6ec47912d5eea1e8 = $(`<div id="html_6c62914086105edb6ec47912d5eea1e8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الطريق الآمن لتكنولوجيا المعلومات</b><br> الرقم الموحد: 7009226445<br> السجل التجاري: 2051054956<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.36549272,50.02833225" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5241509605e30a1299e00d78a78ad2e9.setContent(html_6c62914086105edb6ec47912d5eea1e8);
marker_8b0093d4d0baac28efcafc8a962d0cf4.bindPopup(popup_5241509605e30a1299e00d78a78ad2e9)
;
marker_8b0093d4d0baac28efcafc8a962d0cf4.setIcon(icon_0fd6b773756fd37ac7831734ad594459);
var marker_0b8bc5f1586e12bc0179fbef4a2cdf79 = L.marker(
[26.36926604, 50.03557025],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_75f7faa07fe29f4deec25623680f332c = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8930e4ed0cfda147277fc585f79eb690 = L.popup({
"maxWidth": 320,
});
var html_735f04e486e2cbaabaec93f126146e4d = $(`<div id="html_735f04e486e2cbaabaec93f126146e4d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة زيرو وست العالمية للتدوير شركة شخص واحد</b><br> الرقم الموحد: 7025998019<br> السجل التجاري: 2050149469<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.36926604,50.03557025" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8930e4ed0cfda147277fc585f79eb690.setContent(html_735f04e486e2cbaabaec93f126146e4d);
marker_0b8bc5f1586e12bc0179fbef4a2cdf79.bindPopup(popup_8930e4ed0cfda147277fc585f79eb690)
;
marker_0b8bc5f1586e12bc0179fbef4a2cdf79.setIcon(icon_75f7faa07fe29f4deec25623680f332c);
var marker_44c0605751a6633a0ff10ca7b68ed765 = L.marker(
[26.3701369810713, 50.0405497243269],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_60a3fd7af0da8fea0141be9e89e9f3a8 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_852a85fc3246d41ae75210fd2e19dd64 = L.popup({
"maxWidth": 320,
});
var html_e9100f5757e7c7c2bd4e70ff6ef5e6c5 = $(`<div id="html_e9100f5757e7c7c2bd4e70ff6ef5e6c5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة قولدن سنت شركة شخص واحد</b><br> الرقم الموحد: 7004143058<br> السجل التجاري: 2050116033<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.3701369810713,50.0405497243269" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_852a85fc3246d41ae75210fd2e19dd64.setContent(html_e9100f5757e7c7c2bd4e70ff6ef5e6c5);
marker_44c0605751a6633a0ff10ca7b68ed765.bindPopup(popup_852a85fc3246d41ae75210fd2e19dd64)
;
marker_44c0605751a6633a0ff10ca7b68ed765.setIcon(icon_60a3fd7af0da8fea0141be9e89e9f3a8);
var marker_2ab4954067e4e451721e9cd0213cfe88 = L.marker(
[26.37341308, 50.05043625],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_a92b4e3640d37a0a15c5480117e23f30 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_89b1115fb185ad996b6115af4e10f376 = L.popup({
"maxWidth": 320,
});
var html_8da59f9ebf4a491af038500915755ee7 = $(`<div id="html_8da59f9ebf4a491af038500915755ee7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة روائع القصور التجارية</b><br> الرقم الموحد: 7004910522<br> السجل التجاري: 2050118860<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.37341308,50.05043625" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_89b1115fb185ad996b6115af4e10f376.setContent(html_8da59f9ebf4a491af038500915755ee7);
marker_2ab4954067e4e451721e9cd0213cfe88.bindPopup(popup_89b1115fb185ad996b6115af4e10f376)
;
marker_2ab4954067e4e451721e9cd0213cfe88.setIcon(icon_a92b4e3640d37a0a15c5480117e23f30);
var marker_3a2495b4e575487a3363d60b13b5cd0a = L.marker(
[26.37363047, 50.04685562],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_e46e517a40abc24d20a94314bb7d0457 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a2a57b52fe810821e77424bcc251d7c8 = L.popup({
"maxWidth": 320,
});
var html_e4ebcef3174e203db01fe2a12b1cbd37 = $(`<div id="html_e4ebcef3174e203db01fe2a12b1cbd37" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>درع الشرقية التجارية</b><br> الرقم الموحد: 7010924517<br> السجل التجاري: 2051214390<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.37363047,50.04685562" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a2a57b52fe810821e77424bcc251d7c8.setContent(html_e4ebcef3174e203db01fe2a12b1cbd37);
marker_3a2495b4e575487a3363d60b13b5cd0a.bindPopup(popup_a2a57b52fe810821e77424bcc251d7c8)
;
marker_3a2495b4e575487a3363d60b13b5cd0a.setIcon(icon_e46e517a40abc24d20a94314bb7d0457);
var marker_f1218752ee950ec5afb19d9a14eefb30 = L.marker(
[26.37834195, 50.04462711],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_364d29c3433b903c8300272f49088cb4 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_36f989527bbfca32910ae479db15072f = L.popup({
"maxWidth": 320,
});
var html_4f21d65d19ea7ccf99f01724ac6d4b79 = $(`<div id="html_4f21d65d19ea7ccf99f01724ac6d4b79" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة علوم المدار العالمية شركة شخص واحد</b><br> الرقم الموحد: 7004625674<br> السجل التجاري: 2050117762<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.37834195,50.04462711" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_36f989527bbfca32910ae479db15072f.setContent(html_4f21d65d19ea7ccf99f01724ac6d4b79);
marker_f1218752ee950ec5afb19d9a14eefb30.bindPopup(popup_36f989527bbfca32910ae479db15072f)
;
marker_f1218752ee950ec5afb19d9a14eefb30.setIcon(icon_364d29c3433b903c8300272f49088cb4);
var marker_204257167c8bee7fd4eaf9faf27f5864 = L.marker(
[26.38160642348291, 50.04764378070831],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_2a56769657280f1eb285357327c3a7f8 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_294f4d1809a423102a4c727ceccf8125 = L.popup({
"maxWidth": 320,
});
var html_b087629cf766e9aca600fc4d2971433c = $(`<div id="html_b087629cf766e9aca600fc4d2971433c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة إلانقاذ العربية الطبية</b><br> الرقم الموحد: 7037043937<br> السجل التجاري: 2050177380<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.38160642348291,50.04764378070831" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_294f4d1809a423102a4c727ceccf8125.setContent(html_b087629cf766e9aca600fc4d2971433c);
marker_204257167c8bee7fd4eaf9faf27f5864.bindPopup(popup_294f4d1809a423102a4c727ceccf8125)
;
marker_204257167c8bee7fd4eaf9faf27f5864.setIcon(icon_2a56769657280f1eb285357327c3a7f8);
var marker_c6ab60633227bf69f0d694b8b31f22c9 = L.marker(
[26.38430105933787, 50.05340239964426],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_5e8f27566774a1e30061bd40f3ef9702 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cc633d2da73cc6da28154300ae513245 = L.popup({
"maxWidth": 320,
});
var html_2dcdd52ede97419f71c0b9af8ae2762a = $(`<div id="html_2dcdd52ede97419f71c0b9af8ae2762a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة رواسي البنيان المميزة للمقاولات</b><br> الرقم الموحد: 7041965737<br> السجل التجاري: 2050196593<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.38430105933787,50.05340239964426" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cc633d2da73cc6da28154300ae513245.setContent(html_2dcdd52ede97419f71c0b9af8ae2762a);
marker_c6ab60633227bf69f0d694b8b31f22c9.bindPopup(popup_cc633d2da73cc6da28154300ae513245)
;
marker_c6ab60633227bf69f0d694b8b31f22c9.setIcon(icon_5e8f27566774a1e30061bd40f3ef9702);
var marker_006fb9e374e4c866dd9892b54c6a1570 = L.marker(
[26.38430503899655, 50.05343198776245],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_5857734f19088dc514cf1656895b76a8 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_82d237d1d28c02dd40957997275f3afe = L.popup({
"maxWidth": 320,
});
var html_558f51a4a5a80cc08f4f48b76629e608 = $(`<div id="html_558f51a4a5a80cc08f4f48b76629e608" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة قلف المتقدمة للمقاولات</b><br> الرقم الموحد: 7035016984<br> السجل التجاري: 2050169246<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.38430503899655,50.05343198776245" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_82d237d1d28c02dd40957997275f3afe.setContent(html_558f51a4a5a80cc08f4f48b76629e608);
marker_006fb9e374e4c866dd9892b54c6a1570.bindPopup(popup_82d237d1d28c02dd40957997275f3afe)
;
marker_006fb9e374e4c866dd9892b54c6a1570.setIcon(icon_5857734f19088dc514cf1656895b76a8);
var marker_af99fc539b6f55db7d5b3263e800d79a = L.marker(
[26.384401219183403, 50.0535956143315],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_fdfe7da7b34027a963deae49e9be02f2 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d53a7d6fe198978dfd563c84af372691 = L.popup({
"maxWidth": 320,
});
var html_a5040397b2627574d23c8a112781dd38 = $(`<div id="html_a5040397b2627574d23c8a112781dd38" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جلف انيرجي انترناشيونال</b><br> الرقم الموحد: 7001695092<br> السجل التجاري: 2051047567<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.3843412191834,50.0535956143315" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d53a7d6fe198978dfd563c84af372691.setContent(html_a5040397b2627574d23c8a112781dd38);
marker_af99fc539b6f55db7d5b3263e800d79a.bindPopup(popup_d53a7d6fe198978dfd563c84af372691)
;
marker_af99fc539b6f55db7d5b3263e800d79a.setIcon(icon_fdfe7da7b34027a963deae49e9be02f2);
var marker_1a1f3ecded4e013fc1c03e1f6a2a6c18 = L.marker(
[26.3842812191834, 50.0535956143315],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_d480b31384a83b1021f5c18f19aac944 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e3abd11b00ce9f51bd73d3969e5a09be = L.popup({
"maxWidth": 320,
});
var html_1f3fec7a6834239ac8e1aa82f2ea8154 = $(`<div id="html_1f3fec7a6834239ac8e1aa82f2ea8154" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة ارم اساكون</b><br> الرقم الموحد: 7011047391<br> السجل التجاري: 2051025166<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.3843412191834,50.0535956143315" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e3abd11b00ce9f51bd73d3969e5a09be.setContent(html_1f3fec7a6834239ac8e1aa82f2ea8154);
marker_1a1f3ecded4e013fc1c03e1f6a2a6c18.bindPopup(popup_e3abd11b00ce9f51bd73d3969e5a09be)
;
marker_1a1f3ecded4e013fc1c03e1f6a2a6c18.setIcon(icon_d480b31384a83b1021f5c18f19aac944);
var marker_1169cad4ebc85d5ea94c325bb6615317 = L.marker(
[26.38449929, 50.05351977],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_9ed6422a0fd7cf3b07ae6de350831ed3 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_205ed71d9e5ccb23d81213a4e3852c21 = L.popup({
"maxWidth": 320,
});
var html_2b334b0b0395fb2f6ecd44c39a5dbcac = $(`<div id="html_2b334b0b0395fb2f6ecd44c39a5dbcac" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة خدمات الطاقة المتكاملة للخدمات</b><br> الرقم الموحد: 7018068838<br> السجل التجاري: 2050141137<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.38449929,50.05351977" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_205ed71d9e5ccb23d81213a4e3852c21.setContent(html_2b334b0b0395fb2f6ecd44c39a5dbcac);
marker_1169cad4ebc85d5ea94c325bb6615317.bindPopup(popup_205ed71d9e5ccb23d81213a4e3852c21)
;
marker_1169cad4ebc85d5ea94c325bb6615317.setIcon(icon_9ed6422a0fd7cf3b07ae6de350831ed3);
var marker_4d47591a2d81859192f70ac269e424b3 = L.marker(
[26.38461241, 50.05346001],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_1ce35fe23f4e369fb61b01ce87570d08 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_14c00878e51247bb9eea367fb67bc661 = L.popup({
"maxWidth": 320,
});
var html_2964f4df3d728d3c8a7bb5fb274e2f02 = $(`<div id="html_2964f4df3d728d3c8a7bb5fb274e2f02" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة محسن السليمي للمقاولات العامة</b><br> الرقم الموحد: 7011003030<br> السجل التجاري: 2050033929<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.38461241,50.05346001" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_14c00878e51247bb9eea367fb67bc661.setContent(html_2964f4df3d728d3c8a7bb5fb274e2f02);
marker_4d47591a2d81859192f70ac269e424b3.bindPopup(popup_14c00878e51247bb9eea367fb67bc661)
;
marker_4d47591a2d81859192f70ac269e424b3.setIcon(icon_1ce35fe23f4e369fb61b01ce87570d08);
var marker_f8520cf385d74092ceae7c38f2fcbed1 = L.marker(
[26.39097953, 50.03809706],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_5d328f2e95451a914a53cd9e094bd6e0 = L.AwesomeMarkers.icon(
{
"markerColor": "lightred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a3637f80392950764391285a58296ab9 = L.popup({
"maxWidth": 320,
});
var html_a4b144c66bf476c7fbd741f99e1ed9ab = $(`<div id="html_a4b144c66bf476c7fbd741f99e1ed9ab" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة جميل الوقت التجارية</b><br> الرقم الموحد: 7016618683<br> السجل التجاري: 4030373922<br> المنطقة: الدمام<br> الحارة: المنار<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.39097953,50.03809706" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a3637f80392950764391285a58296ab9.setContent(html_a4b144c66bf476c7fbd741f99e1ed9ab);
marker_f8520cf385d74092ceae7c38f2fcbed1.bindPopup(popup_a3637f80392950764391285a58296ab9)
;
marker_f8520cf385d74092ceae7c38f2fcbed1.setIcon(icon_5d328f2e95451a914a53cd9e094bd6e0);
var marker_fd6309a20084c2a10027c3e279704315 = L.marker(
[26.41577607114885, 50.03511098043207],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_4932307a93050191c8865459090d2200 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3fead3d917caada82cb69a1a1bae1b34 = L.popup({
"maxWidth": 320,
});
var html_a45c0506091d1e83362da0d1eef2f963 = $(`<div id="html_a45c0506091d1e83362da0d1eef2f963" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الاتحاد المتميز للخدمات البيئية</b><br> الرقم الموحد: 7029301855<br> السجل التجاري: 2050158896<br> المنطقة: الدمام<br> الحارة: أحد<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.41577607114885,50.03511098043207" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3fead3d917caada82cb69a1a1bae1b34.setContent(html_a45c0506091d1e83362da0d1eef2f963);
marker_fd6309a20084c2a10027c3e279704315.bindPopup(popup_3fead3d917caada82cb69a1a1bae1b34)
;
marker_fd6309a20084c2a10027c3e279704315.setIcon(icon_4932307a93050191c8865459090d2200);
var marker_df26bd3b046196f21e25db9548e10ad9 = L.marker(
[26.41667175, 50.05127715],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_dafee0fa6f03508190a9aa8f1f8cfc45 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_48ecda5cdc107cecad3280bf9a00b731 = L.popup({
"maxWidth": 320,
});
var html_3bc9aa8da7e7c55b12dd37cf1470af03 = $(`<div id="html_3bc9aa8da7e7c55b12dd37cf1470af03" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>مطعم الكبسة الحساوية لتقديم</b><br> الرقم الموحد: 7006234152<br> السجل التجاري: 2050103031<br> المنطقة: الدمام<br> الحارة: أحد<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.41667175,50.05127715" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_48ecda5cdc107cecad3280bf9a00b731.setContent(html_3bc9aa8da7e7c55b12dd37cf1470af03);
marker_df26bd3b046196f21e25db9548e10ad9.bindPopup(popup_48ecda5cdc107cecad3280bf9a00b731)
;
marker_df26bd3b046196f21e25db9548e10ad9.setIcon(icon_dafee0fa6f03508190a9aa8f1f8cfc45);
var marker_96e153001cdbe30419db692a5b4de3f1 = L.marker(
[26.42017831, 50.04799407],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_9c4dba3a0244317b37b29296df0bad4f = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_71006c790ab7c38a64d5dc2a57ef840c = L.popup({
"maxWidth": 320,
});
var html_27d776fde954c06bc06a55be5ce2589e = $(`<div id="html_27d776fde954c06bc06a55be5ce2589e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة متاجر العروض التجارية</b><br> الرقم الموحد: 7027878201<br> السجل التجاري: 2031108570<br> المنطقة: الدمام<br> الحارة: أحد<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.42017831,50.04799407" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_71006c790ab7c38a64d5dc2a57ef840c.setContent(html_27d776fde954c06bc06a55be5ce2589e);
marker_96e153001cdbe30419db692a5b4de3f1.bindPopup(popup_71006c790ab7c38a64d5dc2a57ef840c)
;
marker_96e153001cdbe30419db692a5b4de3f1.setIcon(icon_9c4dba3a0244317b37b29296df0bad4f);
var marker_e0eff74ae6c94bbda9ff2b68db774218 = L.marker(
[26.42473091, 50.04447741],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_01b76fb01a9a0c721cf1042298789a64 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c4843d1bcbce23bba464f30450507561 = L.popup({
"maxWidth": 320,
});
var html_11794f06754eac3197b6586ba876237f = $(`<div id="html_11794f06754eac3197b6586ba876237f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة راوية الشرق للمقاولات العامة</b><br> الرقم الموحد: 7013284646<br> السجل التجاري: 2050057356<br> المنطقة: الدمام<br> الحارة: أحد<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.42473091,50.04447741" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c4843d1bcbce23bba464f30450507561.setContent(html_11794f06754eac3197b6586ba876237f);
marker_e0eff74ae6c94bbda9ff2b68db774218.bindPopup(popup_c4843d1bcbce23bba464f30450507561)
;
marker_e0eff74ae6c94bbda9ff2b68db774218.setIcon(icon_01b76fb01a9a0c721cf1042298789a64);
var marker_09905c037ccd42a9eb67dc3e9f62a11c = L.marker(
[26.3651896928155, 50.0697502881074],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_10ffb37fb1224a68784ba7a3252abb6c = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_471f9f186dc1c37d1b474f947a6309a0 = L.popup({
"maxWidth": 320,
});
var html_ab49a2b9e6aa96619abcdf051299d581 = $(`<div id="html_ab49a2b9e6aa96619abcdf051299d581" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كيف القهوة الخولاني التجارية</b><br> الرقم الموحد: 7002756786<br> السجل التجاري: 2050240806<br> المنطقة: الدمام<br> الحارة: طيبة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.3651896928155,50.0697502881074" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_471f9f186dc1c37d1b474f947a6309a0.setContent(html_ab49a2b9e6aa96619abcdf051299d581);
marker_09905c037ccd42a9eb67dc3e9f62a11c.bindPopup(popup_471f9f186dc1c37d1b474f947a6309a0)
;
marker_09905c037ccd42a9eb67dc3e9f62a11c.setIcon(icon_10ffb37fb1224a68784ba7a3252abb6c);
var marker_3d0000773fc58e8d07249b87ea0125ed = L.marker(
[26.39616639441071, 50.0759914270832],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_f86c80c80e9651a964f74a754449310f = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9854c6f0ba3563806953b07b72cb4c32 = L.popup({
"maxWidth": 320,
});
var html_3157d427dd549018e4624de1bf783256 = $(`<div id="html_3157d427dd549018e4624de1bf783256" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة مطاعم خليج عدن المميزة لتقديم</b><br> الرقم الموحد: 7026920574<br> السجل التجاري: 2050152093<br> المنطقة: الدمام<br> الحارة: الفيصلية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.39616639441071,50.0759914270832" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9854c6f0ba3563806953b07b72cb4c32.setContent(html_3157d427dd549018e4624de1bf783256);
marker_3d0000773fc58e8d07249b87ea0125ed.bindPopup(popup_9854c6f0ba3563806953b07b72cb4c32)
;
marker_3d0000773fc58e8d07249b87ea0125ed.setIcon(icon_f86c80c80e9651a964f74a754449310f);
var marker_19f480038ad83c888e22c6026a093ae0 = L.marker(
[26.39837777, 50.0679236],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_3265e5469db345093487585a2f697f33 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_abf475bca26ed0abeb2f50b860eabf9a = L.popup({
"maxWidth": 320,
});
var html_932d71a1431ac80c9baa23cbef17b7ea = $(`<div id="html_932d71a1431ac80c9baa23cbef17b7ea" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الصقر للتأمين التعاوني</b><br> الرقم الموحد: 7001544472<br> السجل التجاري: 2051036871<br> المنطقة: الدمام<br> الحارة: الفيصلية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.39837777,50.0679236" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_abf475bca26ed0abeb2f50b860eabf9a.setContent(html_932d71a1431ac80c9baa23cbef17b7ea);
marker_19f480038ad83c888e22c6026a093ae0.bindPopup(popup_abf475bca26ed0abeb2f50b860eabf9a)
;
marker_19f480038ad83c888e22c6026a093ae0.setIcon(icon_3265e5469db345093487585a2f697f33);
var marker_7387a0fb9893c50e9976f080f8ec28c3 = L.marker(
[26.4008054270256, 50.0516642833884],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_c37a5f8b2d67540985b40bfdd5f7e1c6 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3c837e54cabf2d3f5ea61b388bb79505 = L.popup({
"maxWidth": 320,
});
var html_a2128b55b4908ec9c68280428bc5ef94 = $(`<div id="html_a2128b55b4908ec9c68280428bc5ef94" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الحلول العربية للخدمات اللوجستية</b><br> الرقم الموحد: 7015851558<br> السجل التجاري: 2050128682<br> المنطقة: الدمام<br> الحارة: الفيصلية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.4008054270256,50.0516642833884" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3c837e54cabf2d3f5ea61b388bb79505.setContent(html_a2128b55b4908ec9c68280428bc5ef94);
marker_7387a0fb9893c50e9976f080f8ec28c3.bindPopup(popup_3c837e54cabf2d3f5ea61b388bb79505)
;
marker_7387a0fb9893c50e9976f080f8ec28c3.setIcon(icon_c37a5f8b2d67540985b40bfdd5f7e1c6);
var marker_cea8014cd93726435064cb62a095fa6d = L.marker(
[26.40080543, 50.05166428],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_e41cc124eda00d7bf39b855be77a8e7c = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c6847b309b795302a694940fbb93d016 = L.popup({
"maxWidth": 320,
});
var html_46480644e783bbb68bc079c90b2e8c67 = $(`<div id="html_46480644e783bbb68bc079c90b2e8c67" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة رائد ياسر الحطامي للتجارة والاستثمار</b><br> الرقم الموحد: 7009440178<br> السجل التجاري: 2050109034<br> المنطقة: الدمام<br> الحارة: الفيصلية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.40080543,50.05166428" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c6847b309b795302a694940fbb93d016.setContent(html_46480644e783bbb68bc079c90b2e8c67);
marker_cea8014cd93726435064cb62a095fa6d.bindPopup(popup_c6847b309b795302a694940fbb93d016)
;
marker_cea8014cd93726435064cb62a095fa6d.setIcon(icon_e41cc124eda00d7bf39b855be77a8e7c);
var marker_3aff6a316a75dea4cf4bacef444e6fac = L.marker(
[26.40174641, 50.06508364],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_ae75eac19497274f410ba8fcebf88c88 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_77c9153b4eed1ad72b6a491ba6abd942 = L.popup({
"maxWidth": 320,
});
var html_62baad0f8f81a786474221977900ae53 = $(`<div id="html_62baad0f8f81a786474221977900ae53" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة معماري الخليج للمقاولات</b><br> الرقم الموحد: 7013753749<br> السجل التجاري: 2050088265<br> المنطقة: الدمام<br> الحارة: الفيصلية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.40174641,50.06508364" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_77c9153b4eed1ad72b6a491ba6abd942.setContent(html_62baad0f8f81a786474221977900ae53);
marker_3aff6a316a75dea4cf4bacef444e6fac.bindPopup(popup_77c9153b4eed1ad72b6a491ba6abd942)
;
marker_3aff6a316a75dea4cf4bacef444e6fac.setIcon(icon_ae75eac19497274f410ba8fcebf88c88);
var marker_20553aacfe3aa6a926a51d4ec062d27e = L.marker(
[26.40278932, 50.06422259],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_8c63938d74103f445287ae63615399e1 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4928118d4ea5e9a0ff43b06ddd116a8e = L.popup({
"maxWidth": 320,
});
var html_fe2296785a46d8b53a983ddd518ceac0 = $(`<div id="html_fe2296785a46d8b53a983ddd518ceac0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سر الابتسامة</b><br> الرقم الموحد: 7001599286<br> السجل التجاري: 2050064867<br> المنطقة: الدمام<br> الحارة: الفيصلية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.40278932,50.06422259" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4928118d4ea5e9a0ff43b06ddd116a8e.setContent(html_fe2296785a46d8b53a983ddd518ceac0);
marker_20553aacfe3aa6a926a51d4ec062d27e.bindPopup(popup_4928118d4ea5e9a0ff43b06ddd116a8e)
;
marker_20553aacfe3aa6a926a51d4ec062d27e.setIcon(icon_8c63938d74103f445287ae63615399e1);
var marker_474c6652df51fc875593890c5093264a = L.marker(
[26.40474708, 50.06277072],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_0c0031f5e478008ac140fa3704d73c62 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f2c7dc6790ee649ebed292fd43ed10c1 = L.popup({
"maxWidth": 320,
});
var html_195688f23ceef78fb3bca045ec49c08c = $(`<div id="html_195688f23ceef78fb3bca045ec49c08c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة محمد البرواني لخدمات النفط شركة شخص واحد</b><br> الرقم الموحد: 7001555999<br> السجل التجاري: 2052001232<br> المنطقة: الدمام<br> الحارة: الفيصلية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.40468708,50.06277072" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f2c7dc6790ee649ebed292fd43ed10c1.setContent(html_195688f23ceef78fb3bca045ec49c08c);
marker_474c6652df51fc875593890c5093264a.bindPopup(popup_f2c7dc6790ee649ebed292fd43ed10c1)
;
marker_474c6652df51fc875593890c5093264a.setIcon(icon_0c0031f5e478008ac140fa3704d73c62);
var marker_ba0b5713e7b03621fbed4aa843e08132 = L.marker(
[26.404627079999997, 50.06277072],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_095dfc13b30d3a7c5ef76459dbdd3619 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_968066e6ad752dd6dc3121ed761a9748 = L.popup({
"maxWidth": 320,
});
var html_6123dc79222337edb0a9e326c63ce805 = $(`<div id="html_6123dc79222337edb0a9e326c63ce805" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سالم عبدربه الكربي للمقاولات</b><br> الرقم الموحد: 7011188286<br> السجل التجاري: 2051016499<br> المنطقة: الدمام<br> الحارة: الفيصلية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.40468708,50.06277072" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_968066e6ad752dd6dc3121ed761a9748.setContent(html_6123dc79222337edb0a9e326c63ce805);
marker_ba0b5713e7b03621fbed4aa843e08132.bindPopup(popup_968066e6ad752dd6dc3121ed761a9748)
;
marker_ba0b5713e7b03621fbed4aa843e08132.setIcon(icon_095dfc13b30d3a7c5ef76459dbdd3619);
var marker_57d08d7ef705bba178c2c41cd343c14e = L.marker(
[26.4071899, 50.06421523],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_2941614f0a945a63ee8bf0d2d6eb51b7 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_043a0a75cd934a9cb03344769e091cdd = L.popup({
"maxWidth": 320,
});
var html_ffd33bd4815d0e9ce93f58df96216637 = $(`<div id="html_ffd33bd4815d0e9ce93f58df96216637" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة سي تي إس العربية</b><br> الرقم الموحد: 7001520712<br> السجل التجاري: 2050054060<br> المنطقة: الدمام<br> الحارة: الفيصلية<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.4071899,50.06421523" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_043a0a75cd934a9cb03344769e091cdd.setContent(html_ffd33bd4815d0e9ce93f58df96216637);
marker_57d08d7ef705bba178c2c41cd343c14e.bindPopup(popup_043a0a75cd934a9cb03344769e091cdd)
;
marker_57d08d7ef705bba178c2c41cd343c14e.setIcon(icon_2941614f0a945a63ee8bf0d2d6eb51b7);
var marker_09ce92ce6c1ead8a879f6e1dcde9d637 = L.marker(
[26.332833419467, 50.0853763165735],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_9e95853f7f9644204829c3b4e4a67a40 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bac38d2a12c19112ca8ea518e715a296 = L.popup({
"maxWidth": 320,
});
var html_5ff66732719c0d9fe6010c7f78602c45 = $(`<div id="html_5ff66732719c0d9fe6010c7f78602c45" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شلمبرجير ميدل إيست أس أيه</b><br> الرقم الموحد: 7000078084<br> السجل التجاري: 2051002074<br> المنطقة: الدمام<br> الحارة: الشعلة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.332833419467,50.0853763165735" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bac38d2a12c19112ca8ea518e715a296.setContent(html_5ff66732719c0d9fe6010c7f78602c45);
marker_09ce92ce6c1ead8a879f6e1dcde9d637.bindPopup(popup_bac38d2a12c19112ca8ea518e715a296)
;
marker_09ce92ce6c1ead8a879f6e1dcde9d637.setIcon(icon_9e95853f7f9644204829c3b4e4a67a40);
var marker_5c74a345fe145619fd12c0b2a3e867f2 = L.marker(
[26.3337917070727, 50.0919628185422],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_e23fd4d9dd5d137c9e0853abc874ec3e = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3702c6797c669339cc264837c2646630 = L.popup({
"maxWidth": 320,
});
var html_bf35fe860ecae86d90506caca0e5485e = $(`<div id="html_bf35fe860ecae86d90506caca0e5485e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المنصوري للخدمات البترولية المحدودة</b><br> الرقم الموحد: 7001389605<br> السجل التجاري: 2051022447<br> المنطقة: الدمام<br> الحارة: الشعلة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.3337917070727,50.0919628185422" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3702c6797c669339cc264837c2646630.setContent(html_bf35fe860ecae86d90506caca0e5485e);
marker_5c74a345fe145619fd12c0b2a3e867f2.bindPopup(popup_3702c6797c669339cc264837c2646630)
;
marker_5c74a345fe145619fd12c0b2a3e867f2.setIcon(icon_e23fd4d9dd5d137c9e0853abc874ec3e);
var marker_127956303fc66b5f158c6523a9b079ec = L.marker(
[26.3340916493509, 50.0931997270146],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_5faf7d16995902270e034a45bd13b268 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8c1a06469dcb1081b682a8b31d25d42e = L.popup({
"maxWidth": 320,
});
var html_ff5ad0b08f0037632b4d05be92b72ff9 = $(`<div id="html_ff5ad0b08f0037632b4d05be92b72ff9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة كميرون الرشيد المحدودة</b><br> الرقم الموحد: 7001407027<br> السجل التجاري: 2050037515<br> المنطقة: الدمام<br> الحارة: الشعلة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.3340916493509,50.0931997270146" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8c1a06469dcb1081b682a8b31d25d42e.setContent(html_ff5ad0b08f0037632b4d05be92b72ff9);
marker_127956303fc66b5f158c6523a9b079ec.bindPopup(popup_8c1a06469dcb1081b682a8b31d25d42e)
;
marker_127956303fc66b5f158c6523a9b079ec.setIcon(icon_5faf7d16995902270e034a45bd13b268);
var marker_79b40fa3935515ceefeedeb165ae7db2 = L.marker(
[26.3358739810749, 50.0905328672033],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_2d1d5ad08ba6b4be52c7d3c88804fe67 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5746f4d7f818a562db671916f145aa97 = L.popup({
"maxWidth": 320,
});
var html_4a80e18d5ef454df37196e9b3f85f4a2 = $(`<div id="html_4a80e18d5ef454df37196e9b3f85f4a2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركه فلوسيرف الرشيد المحدودة</b><br> الرقم الموحد: 7009402657<br> السجل التجاري: 2050108548<br> المنطقة: الدمام<br> الحارة: الشعلة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.3358739810749,50.0905328672033" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5746f4d7f818a562db671916f145aa97.setContent(html_4a80e18d5ef454df37196e9b3f85f4a2);
marker_79b40fa3935515ceefeedeb165ae7db2.bindPopup(popup_5746f4d7f818a562db671916f145aa97)
;
marker_79b40fa3935515ceefeedeb165ae7db2.setIcon(icon_2d1d5ad08ba6b4be52c7d3c88804fe67);
var marker_af1f6d8c4e75dd4b4463add079f3947e = L.marker(
[26.33590033, 50.09450526],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_c9b783b64936596c91ad9222003a85df = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_df7564d801191601f8d1e5d02b888014 = L.popup({
"maxWidth": 320,
});
var html_dabfd6d540ba3e313798575cc7c00cb3 = $(`<div id="html_dabfd6d540ba3e313798575cc7c00cb3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة وذر فورد العربية السعودية</b><br> الرقم الموحد: 7000222773<br> السجل التجاري: 2051004607<br> المنطقة: الدمام<br> الحارة: الشعلة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.33590033,50.09450526" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_df7564d801191601f8d1e5d02b888014.setContent(html_dabfd6d540ba3e313798575cc7c00cb3);
marker_af1f6d8c4e75dd4b4463add079f3947e.bindPopup(popup_df7564d801191601f8d1e5d02b888014)
;
marker_af1f6d8c4e75dd4b4463add079f3947e.setIcon(icon_c9b783b64936596c91ad9222003a85df);
var marker_12e0575795a28b03c328de01d74df027 = L.marker(
[26.34148525600441, 50.08859718233531],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_f500040157d15c54a7a0e6eed9bb3a48 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_daaadf9b435a26a53c71f1887519e97f = L.popup({
"maxWidth": 320,
});
var html_41fe14a520349282d0ba3982ab6ae2ee = $(`<div id="html_41fe14a520349282d0ba3982ab6ae2ee" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المندسة للتجارة</b><br> الرقم الموحد: 7036368160<br> السجل التجاري: 1010953539<br> المنطقة: الدمام<br> الحارة: الشعلة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.34148525600441,50.08859718233531" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_daaadf9b435a26a53c71f1887519e97f.setContent(html_41fe14a520349282d0ba3982ab6ae2ee);
marker_12e0575795a28b03c328de01d74df027.bindPopup(popup_daaadf9b435a26a53c71f1887519e97f)
;
marker_12e0575795a28b03c328de01d74df027.setIcon(icon_f500040157d15c54a7a0e6eed9bb3a48);
var marker_fe5d703dafa4c8a146589b06bfadabd2 = L.marker(
[26.34347376632493, 50.08887854984432],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_22fbeeb41d18db5b48c45dfe402d92bc = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f0f61f9de37805f4204b50fee19f1d05 = L.popup({
"maxWidth": 320,
});
var html_d97c9e34a80cded42847995857e7e589 = $(`<div id="html_d97c9e34a80cded42847995857e7e589" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الهدف الساطع للتجارة</b><br> الرقم الموحد: 7013833822<br> السجل التجاري: 2050068125<br> المنطقة: الدمام<br> الحارة: الشعلة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.34347376632493,50.08887854984432" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f0f61f9de37805f4204b50fee19f1d05.setContent(html_d97c9e34a80cded42847995857e7e589);
marker_fe5d703dafa4c8a146589b06bfadabd2.bindPopup(popup_f0f61f9de37805f4204b50fee19f1d05)
;
marker_fe5d703dafa4c8a146589b06bfadabd2.setIcon(icon_22fbeeb41d18db5b48c45dfe402d92bc);
var marker_9464dcfb9f9f262c64649c3a8dc5e3a0 = L.marker(
[26.34372686, 50.09016681],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_2e2cc9063a22090ad23b00beeca09e8c = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8f5076fa1c2df8dafc245b5b41880f8a = L.popup({
"maxWidth": 320,
});
var html_25db664294838c063fc634e77f7daa63 = $(`<div id="html_25db664294838c063fc634e77f7daa63" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة اسواق البيت الشامل التجارية</b><br> الرقم الموحد: 7008212479<br> السجل التجاري: 2050148485<br> المنطقة: الدمام<br> الحارة: الشعلة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.34372686,50.09016681" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8f5076fa1c2df8dafc245b5b41880f8a.setContent(html_25db664294838c063fc634e77f7daa63);
marker_9464dcfb9f9f262c64649c3a8dc5e3a0.bindPopup(popup_8f5076fa1c2df8dafc245b5b41880f8a)
;
marker_9464dcfb9f9f262c64649c3a8dc5e3a0.setIcon(icon_2e2cc9063a22090ad23b00beeca09e8c);
var marker_215bba1ae323704303447f2136228cab = L.marker(
[26.3446516962386, 50.0902964055336],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_7ab11a2076121510950452106abe4fd7 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a065223f4a9752b5f72b77ac88e7261a = L.popup({
"maxWidth": 320,
});
var html_ce1bfc90e76fbba331684b168a530df3 = $(`<div id="html_ce1bfc90e76fbba331684b168a530df3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة المزود الذهبي التجارية</b><br> الرقم الموحد: 7014122100<br> السجل التجاري: 2050049366<br> المنطقة: الدمام<br> الحارة: الشعلة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.3446516962386,50.0902964055336" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a065223f4a9752b5f72b77ac88e7261a.setContent(html_ce1bfc90e76fbba331684b168a530df3);
marker_215bba1ae323704303447f2136228cab.bindPopup(popup_a065223f4a9752b5f72b77ac88e7261a)
;
marker_215bba1ae323704303447f2136228cab.setIcon(icon_7ab11a2076121510950452106abe4fd7);
var marker_a89d4744bae1d37f31631ed203b7a296 = L.marker(
[26.3537609, 50.098397],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_0b24d80c91485b9e63574e6ce12881b8 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_344a5facd8e657a76d60b202050d5d59 = L.popup({
"maxWidth": 320,
});
var html_49779e4ea0c6a9d7c86e764d9ba3292c = $(`<div id="html_49779e4ea0c6a9d7c86e764d9ba3292c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة التميز الاولى للتجارة</b><br> الرقم الموحد: 7041504916<br> السجل التجاري: 2050194609<br> المنطقة: الدمام<br> الحارة: الشعلة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.3537609,50.098397" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_344a5facd8e657a76d60b202050d5d59.setContent(html_49779e4ea0c6a9d7c86e764d9ba3292c);
marker_a89d4744bae1d37f31631ed203b7a296.bindPopup(popup_344a5facd8e657a76d60b202050d5d59)
;
marker_a89d4744bae1d37f31631ed203b7a296.setIcon(icon_0b24d80c91485b9e63574e6ce12881b8);
var marker_9fa30a69d92b5040c458e3067a60ef0b = L.marker(
[26.35379956151201, 50.07728239762902],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_6a9ba6d5b408e2d3a3bed5b70f80c615 = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a842051a5e46a77427f06d4ea755430b = L.popup({
"maxWidth": 320,
});
var html_5c2a7a6aa505c77001f245c4caf43f18 = $(`<div id="html_5c2a7a6aa505c77001f245c4caf43f18" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة لاهنت لخدمات الأعمال</b><br> الرقم الموحد: 7035702195<br> السجل التجاري: 2050176656<br> المنطقة: الدمام<br> الحارة: الشعلة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.35379956151201,50.07728239762902" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a842051a5e46a77427f06d4ea755430b.setContent(html_5c2a7a6aa505c77001f245c4caf43f18);
marker_9fa30a69d92b5040c458e3067a60ef0b.bindPopup(popup_a842051a5e46a77427f06d4ea755430b)
;
marker_9fa30a69d92b5040c458e3067a60ef0b.setIcon(icon_6a9ba6d5b408e2d3a3bed5b70f80c615);
var marker_b863a826769d6feef704ce7fed0bbb64 = L.marker(
[26.35398691, 50.09870097],
{
}
).addTo(map_f9af6901b6268b9394c4b58276397ee7);
var icon_4f011bec4b81aab41d478e97636b38ba = L.AwesomeMarkers.icon(
{
"markerColor": "darkgreen",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0c91114586314c6b86147c0e17b8de78 = L.popup({
"maxWidth": 320,
});
var html_9e790a07d724127a16512ecdd59615b5 = $(`<div id="html_9e790a07d724127a16512ecdd59615b5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.8;"> <b>شركة الساحل الشرقي السابع التجارية شركة شخص واحد</b><br> الرقم الموحد: 7017124020<br> السجل التجاري: 2050134193<br> المنطقة: الدمام<br> الحارة: الشعلة<br> <b>اسم الباحث:</b> غلا عبدالعزيز بن هندي الفلاحي<br> <a href="https://www.google.com/maps?q=26.35398691,50.09870097" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0c91114586314c6b86147c0e17b8de78.setContent(html_9e790a07d724127a16512ecdd59615b5);
marker_b863a826769d6feef704ce7fed0bbb64.bindPopup(popup_0c91114586314c6b86147c0e17b8de78)
;
marker_b863a826769d6feef704ce7fed0bbb64.setIcon(icon_4f011bec4b81aab41d478e97636b38ba);
</script>
</html> |