8323f89
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 | <!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_eca68a44e324594045bc7f220382bcde {
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_48" onclick="
var panel = document.getElementById('stats_48');
var btn = document.getElementById('btn_stats_48');
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_48" 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;
">عبدالعزيز محمد حمود المطيري - 48</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 59</div>
<div><b>عدد الحارات:</b> 16</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• ج14: 16</div><div>• العزيزيه: 14</div><div>• الملك فهد: 7</div><div>• الفيحاء: 3</div><div>• الجوهره: 3</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_48_عبدالعزيز_محمد_حمود_المطيري.pdf" target="_blank" style="
display:block;
text-align:center;
background:#16a34a;
color:#fff;
text-decoration:none;
padding:10px 12px;
border-radius:12px;
font-weight:700;
margin-bottom:14px;
">تصدير بيانات هذه الخريطة PDF</a>
<div style="font-weight:bold; margin-bottom:6px;">تلوين حسب نوع المسح</div>
<div style="font-size:13px;">
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:6px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:red;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>ربعي وسنوي</span>
</div>
<span style="color:#555;">(47)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:6px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>سنوي فقط</span>
</div>
<span style="color:#555;">(12)</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_eca68a44e324594045bc7f220382bcde" ></div>
</body>
<script>
var map_eca68a44e324594045bc7f220382bcde = L.map(
"map_eca68a44e324594045bc7f220382bcde",
{
center: [28.405983867359495, 48.50041495995226],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_01c33751a63d33d33108fdbb12893d4b = 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_01c33751a63d33d33108fdbb12893d4b.addTo(map_eca68a44e324594045bc7f220382bcde);
var tile_layer_5df2ccf4384f8a7a2660e18730998b2b = 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_5df2ccf4384f8a7a2660e18730998b2b.addTo(map_eca68a44e324594045bc7f220382bcde);
var tile_layer_6774a74c17be1df3d8d812ea67cc28b7 = 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_6774a74c17be1df3d8d812ea67cc28b7.addTo(map_eca68a44e324594045bc7f220382bcde);
var locate_control_437345d6e31ae900d52db6b503fd7961 = L.control.locate(
{}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var marker_596d72aab89fd5192a1c8f6a4004a16a = L.marker(
[28.00050008, 48.76880939],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_851e99a44cccd219003016865dfb3427 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2ffaa59654be8c4530130517df23d5ac = L.popup({
"maxWidth": 320,
});
var html_42171829d7175a7c8190613c543e43e5 = $(`<div id="html_42171829d7175a7c8190613c543e43e5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع عبدالله ناصر مرعي الهاجري للخرسانة الجاهزة<br> <b>الرقم الموحد:</b> 7007964955<br> <b>السجل التجاري:</b> 2058000177<br> <b>الحي:</b> منتزه الامير سلطان البحري<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.00050008,48.76880939" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2ffaa59654be8c4530130517df23d5ac.setContent(html_42171829d7175a7c8190613c543e43e5);
marker_596d72aab89fd5192a1c8f6a4004a16a.bindPopup(popup_2ffaa59654be8c4530130517df23d5ac)
;
marker_596d72aab89fd5192a1c8f6a4004a16a.setIcon(icon_851e99a44cccd219003016865dfb3427);
var marker_6d8fc776c8c4096a4d93eba3611aae17 = L.marker(
[27.80397005, 48.74155797],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_0fc5c054095af782abbdd27b22f58efb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_86beccf14d2537c016112657698d0c82 = L.popup({
"maxWidth": 320,
});
var html_791dfeb3a42955685187c39ffc743fee = $(`<div id="html_791dfeb3a42955685187c39ffc743fee" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة علي محمد العجينه للتجاره والمقاولات المحدودة<br> <b>الرقم الموحد:</b> 7009412011<br> <b>السجل التجاري:</b> 2051001244<br> <b>الحي:</b> مؤسسة حمد العجينه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.80397005,48.74155797" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_86beccf14d2537c016112657698d0c82.setContent(html_791dfeb3a42955685187c39ffc743fee);
marker_6d8fc776c8c4096a4d93eba3611aae17.bindPopup(popup_86beccf14d2537c016112657698d0c82)
;
marker_6d8fc776c8c4096a4d93eba3611aae17.setIcon(icon_0fc5c054095af782abbdd27b22f58efb);
var marker_73b563de89cc4462d49074eb99545f7e = L.marker(
[28.36604487, 48.41504574],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_5b784aeff60d5cd8dd4dad7e96e6fad1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7024254842463498eb3b8ee4e3659c23 = L.popup({
"maxWidth": 320,
});
var html_d90759d0601826585052861a5842f06c = $(`<div id="html_d90759d0601826585052861a5842f06c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة فلك الاعمار للمقاولات العامة<br> <b>الرقم الموحد:</b> 7013108621<br> <b>السجل التجاري:</b> 2257016544<br> <b>الحي:</b> ج2<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.36604487,48.41504574" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7024254842463498eb3b8ee4e3659c23.setContent(html_d90759d0601826585052861a5842f06c);
marker_73b563de89cc4462d49074eb99545f7e.bindPopup(popup_7024254842463498eb3b8ee4e3659c23)
;
marker_73b563de89cc4462d49074eb99545f7e.setIcon(icon_5b784aeff60d5cd8dd4dad7e96e6fad1);
var marker_fcd9dfd0d96d24eeb2e5aae7e6c060fd = L.marker(
[28.42302884, 48.47013327],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_c970a5776dd76cc5c08eadde191e71b5 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_36cd066a1ebc3f24406a2fe01642c590 = L.popup({
"maxWidth": 320,
});
var html_a94fed54ae2665572f108b1e5c5b9183 = $(`<div id="html_a94fed54ae2665572f108b1e5c5b9183" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الراهي الاول<br> <b>الرقم الموحد:</b> 7014494780<br> <b>السجل التجاري:</b> 2057101516<br> <b>الحي:</b> الخالديه و اليرموك<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=28.42302884,48.47013327" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_36cd066a1ebc3f24406a2fe01642c590.setContent(html_a94fed54ae2665572f108b1e5c5b9183);
marker_fcd9dfd0d96d24eeb2e5aae7e6c060fd.bindPopup(popup_36cd066a1ebc3f24406a2fe01642c590)
;
marker_fcd9dfd0d96d24eeb2e5aae7e6c060fd.setIcon(icon_c970a5776dd76cc5c08eadde191e71b5);
var marker_d3c018b1912fc7481eed3d609c094949 = L.marker(
[28.4140924567307, 48.478381457208],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_de4d9deaa61a9989e278977336d34fdb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_31bd6943fa58ae68cfa7e7c1e3f4a40f = L.popup({
"maxWidth": 320,
});
var html_b78f31b059ce130a7dcdc0843a26cbb5 = $(`<div id="html_b78f31b059ce130a7dcdc0843a26cbb5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مسارات الجود للخدمات التجارية والمقاولات<br> <b>الرقم الموحد:</b> 7011017295<br> <b>السجل التجاري:</b> 2057004518<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.4140924567307,48.478381457208" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_31bd6943fa58ae68cfa7e7c1e3f4a40f.setContent(html_b78f31b059ce130a7dcdc0843a26cbb5);
marker_d3c018b1912fc7481eed3d609c094949.bindPopup(popup_31bd6943fa58ae68cfa7e7c1e3f4a40f)
;
marker_d3c018b1912fc7481eed3d609c094949.setIcon(icon_de4d9deaa61a9989e278977336d34fdb);
var marker_76578770cec0873fd47320c963107d45 = L.marker(
[28.40707931, 48.4728774],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_935299a8ba5aeb1c6c99a7d34d9e88c9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_49132187bc220830b9d538022fda49d5 = L.popup({
"maxWidth": 320,
});
var html_e0a3db6718a6d1a786077995d896c74a = $(`<div id="html_e0a3db6718a6d1a786077995d896c74a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة فهد سعود الحربي للمقاولات العامة<br> <b>الرقم الموحد:</b> 7003039695<br> <b>السجل التجاري:</b> 2057007979<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.40707931,48.4728774" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_49132187bc220830b9d538022fda49d5.setContent(html_e0a3db6718a6d1a786077995d896c74a);
marker_76578770cec0873fd47320c963107d45.bindPopup(popup_49132187bc220830b9d538022fda49d5)
;
marker_76578770cec0873fd47320c963107d45.setIcon(icon_935299a8ba5aeb1c6c99a7d34d9e88c9);
var marker_8e4d882d57341835a97dfc3550f32f22 = L.marker(
[28.41547437, 48.48224828],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_f0c0a96a33d2fee0982b56583e97e80b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_de93a00405ed1332bccbb7c383094bf0 = L.popup({
"maxWidth": 320,
});
var html_1c0425729d017ee5da0bf2c61e40a8f2 = $(`<div id="html_1c0425729d017ee5da0bf2c61e40a8f2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ماجد خالد الدوسري<br> <b>الرقم الموحد:</b> 7011659880<br> <b>السجل التجاري:</b> 2057002831<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.41547437,48.48224828" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_de93a00405ed1332bccbb7c383094bf0.setContent(html_1c0425729d017ee5da0bf2c61e40a8f2);
marker_8e4d882d57341835a97dfc3550f32f22.bindPopup(popup_de93a00405ed1332bccbb7c383094bf0)
;
marker_8e4d882d57341835a97dfc3550f32f22.setIcon(icon_f0c0a96a33d2fee0982b56583e97e80b);
var marker_c961111b6ee5b4166da30182fd60fd67 = L.marker(
[28.4120747, 48.4844464],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_e205c9707da7f9bf5f827135a080e752 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_79db1937681a90e32305997e1635e1ea = L.popup({
"maxWidth": 320,
});
var html_6e98be028ac05e635e3658b2128b0aa8 = $(`<div id="html_6e98be028ac05e635e3658b2128b0aa8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ركن النواعم للذهب والمجوهرات<br> <b>الرقم الموحد:</b> 7031557510<br> <b>السجل التجاري:</b> 2057475280<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.4120747,48.4844464" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_79db1937681a90e32305997e1635e1ea.setContent(html_6e98be028ac05e635e3658b2128b0aa8);
marker_c961111b6ee5b4166da30182fd60fd67.bindPopup(popup_79db1937681a90e32305997e1635e1ea)
;
marker_c961111b6ee5b4166da30182fd60fd67.setIcon(icon_e205c9707da7f9bf5f827135a080e752);
var marker_cb9029e23d112e1e18aad894108994dc = L.marker(
[28.41518564, 48.47251101],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_3ea9d94994e2e781f2d79879ca1ccc63 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_53e7bf14817d5ece239cd1d0612bd556 = L.popup({
"maxWidth": 320,
});
var html_4afbae15758687b6d05226de96944954 = $(`<div id="html_4afbae15758687b6d05226de96944954" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة فرسان الخفجي للتقسيط<br> <b>الرقم الموحد:</b> 7014199439<br> <b>السجل التجاري:</b> 2057007117<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=28.41518564,48.47251101" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_53e7bf14817d5ece239cd1d0612bd556.setContent(html_4afbae15758687b6d05226de96944954);
marker_cb9029e23d112e1e18aad894108994dc.bindPopup(popup_53e7bf14817d5ece239cd1d0612bd556)
;
marker_cb9029e23d112e1e18aad894108994dc.setIcon(icon_3ea9d94994e2e781f2d79879ca1ccc63);
var marker_fc6cacd77ee416eac894b0693e18fb40 = L.marker(
[28.41471537, 48.48329731],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_a2134976f7f81ec1ed2355dd261fb9a1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ca3e9f97125899464ef27330db31e77f = L.popup({
"maxWidth": 320,
});
var html_06a985322b26ea343c51f7dffe7102af = $(`<div id="html_06a985322b26ea343c51f7dffe7102af" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سليمان حمود الحيايي للمقاولات العامه<br> <b>الرقم الموحد:</b> 7014334226<br> <b>السجل التجاري:</b> 2057002163<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.41471537,48.48329731" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ca3e9f97125899464ef27330db31e77f.setContent(html_06a985322b26ea343c51f7dffe7102af);
marker_fc6cacd77ee416eac894b0693e18fb40.bindPopup(popup_ca3e9f97125899464ef27330db31e77f)
;
marker_fc6cacd77ee416eac894b0693e18fb40.setIcon(icon_a2134976f7f81ec1ed2355dd261fb9a1);
var marker_28a6acec5b7ff0644deef570ba374d7a = L.marker(
[28.40510737, 48.47828012],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_defbd10ff14e6c9ae28961de10ac44c2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_67b14d72520a71fce2f9bd7c175d1906 = L.popup({
"maxWidth": 320,
});
var html_fad85ffe2e29a272d9927051ed1c7869 = $(`<div id="html_fad85ffe2e29a272d9927051ed1c7869" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ايه ام اي العربية السعودية المحدودة<br> <b>الرقم الموحد:</b> 7000624655<br> <b>السجل التجاري:</b> 2057008732<br> <b>الحي:</b> الملك فهد<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.40510737,48.47828012" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_67b14d72520a71fce2f9bd7c175d1906.setContent(html_fad85ffe2e29a272d9927051ed1c7869);
marker_28a6acec5b7ff0644deef570ba374d7a.bindPopup(popup_67b14d72520a71fce2f9bd7c175d1906)
;
marker_28a6acec5b7ff0644deef570ba374d7a.setIcon(icon_defbd10ff14e6c9ae28961de10ac44c2);
var marker_6bf24be1d9b1695b5964e733d89ad7d3 = L.marker(
[28.43416461662411, 48.476622893672],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_750e0e10e44a5e56e2db31592d2b5d0f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5c78d6c7196d6b7a5d85772fb8450d2b = L.popup({
"maxWidth": 320,
});
var html_ba30308a6577621b1354c712cddfa6c2 = $(`<div id="html_ba30308a6577621b1354c712cddfa6c2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة وادي الخضرة للزراعة<br> <b>الرقم الموحد:</b> 7038754417<br> <b>السجل التجاري:</b> 2057476547<br> <b>الحي:</b> الخليج<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.43416461662411,48.476622893672" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5c78d6c7196d6b7a5d85772fb8450d2b.setContent(html_ba30308a6577621b1354c712cddfa6c2);
marker_6bf24be1d9b1695b5964e733d89ad7d3.bindPopup(popup_5c78d6c7196d6b7a5d85772fb8450d2b)
;
marker_6bf24be1d9b1695b5964e733d89ad7d3.setIcon(icon_750e0e10e44a5e56e2db31592d2b5d0f);
var marker_fb20bc60b208ae7ec122ee092eac867f = L.marker(
[28.42690814007102, 48.46845148131251],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_0906240dc43b0cf970b90ed10f9b7c04 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6d602b87617231106e1daa9ff4e0d128 = L.popup({
"maxWidth": 320,
});
var html_95d376ef9d10ca1b84197e38fb6579bd = $(`<div id="html_95d376ef9d10ca1b84197e38fb6579bd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة وادي النباتات الزراعية<br> <b>الرقم الموحد:</b> 7042324538<br> <b>السجل التجاري:</b> 2057477074<br> <b>الحي:</b> الخليج<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=28.42690814007102,48.46845148131251" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6d602b87617231106e1daa9ff4e0d128.setContent(html_95d376ef9d10ca1b84197e38fb6579bd);
marker_fb20bc60b208ae7ec122ee092eac867f.bindPopup(popup_6d602b87617231106e1daa9ff4e0d128)
;
marker_fb20bc60b208ae7ec122ee092eac867f.setIcon(icon_0906240dc43b0cf970b90ed10f9b7c04);
var marker_2ca6d8ce93d079fca19c122ea16dc531 = L.marker(
[28.44269893, 48.48604808],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_7ec7f31f623291355deb88212b99f47c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8ea27fa733405a1b16ecaf627c930af8 = L.popup({
"maxWidth": 320,
});
var html_765861dcf1e030ccfe3cc3daace28f5b = $(`<div id="html_765861dcf1e030ccfe3cc3daace28f5b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الاختيارات المميزة للخدمات العقارية<br> <b>الرقم الموحد:</b> 7017178380<br> <b>السجل التجاري:</b> 2057473159<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.44269893,48.48604808" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8ea27fa733405a1b16ecaf627c930af8.setContent(html_765861dcf1e030ccfe3cc3daace28f5b);
marker_2ca6d8ce93d079fca19c122ea16dc531.bindPopup(popup_8ea27fa733405a1b16ecaf627c930af8)
;
marker_2ca6d8ce93d079fca19c122ea16dc531.setIcon(icon_7ec7f31f623291355deb88212b99f47c);
var marker_3a372cae83043816ac0aaf420b0e2580 = L.marker(
[28.45199031, 48.48149098],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_24abb1696bf72f20ee44f2a79d200ee7 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8d1fa64688103881095814e7944aa6ad = L.popup({
"maxWidth": 320,
});
var html_e11a4e78d2bd8aa079d0f3326afcb542 = $(`<div id="html_e11a4e78d2bd8aa079d0f3326afcb542" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة غزيل مريس العازمي للمقاولات<br> <b>الرقم الموحد:</b> 7008450160<br> <b>السجل التجاري:</b> 2057102618<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=28.45199031,48.48149098" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8d1fa64688103881095814e7944aa6ad.setContent(html_e11a4e78d2bd8aa079d0f3326afcb542);
marker_3a372cae83043816ac0aaf420b0e2580.bindPopup(popup_8d1fa64688103881095814e7944aa6ad)
;
marker_3a372cae83043816ac0aaf420b0e2580.setIcon(icon_24abb1696bf72f20ee44f2a79d200ee7);
var marker_51f7820a7340885e8c0aed6520962b6e = L.marker(
[28.4556058121987, 48.4882318584099],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_4fde501bd4cf2ef71a2d3943528190ff = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3a4cf224caa53cae4a10d75eaa458520 = L.popup({
"maxWidth": 320,
});
var html_7b73e2424cc7ce6c4dc060fb6a346bfd = $(`<div id="html_7b73e2424cc7ce6c4dc060fb6a346bfd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة عواد جدوع الظفيري للمقاولات العامة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7011129538<br> <b>السجل التجاري:</b> 2057003995<br> <b>الحي:</b> الفيحاء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.4556058121987,48.4882318584099" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3a4cf224caa53cae4a10d75eaa458520.setContent(html_7b73e2424cc7ce6c4dc060fb6a346bfd);
marker_51f7820a7340885e8c0aed6520962b6e.bindPopup(popup_3a4cf224caa53cae4a10d75eaa458520)
;
marker_51f7820a7340885e8c0aed6520962b6e.setIcon(icon_4fde501bd4cf2ef71a2d3943528190ff);
var marker_8d92892367d51819405ba7d247b759f7 = L.marker(
[28.41030123, 48.48374881],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_5093a862eed16738bce445c444f558a4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bbbcb434b69b9714df000d3a9a6bd80f = L.popup({
"maxWidth": 320,
});
var html_32e30f4224588d8da99b0ea6abb47a98 = $(`<div id="html_32e30f4224588d8da99b0ea6abb47a98" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> فرع شركة برقان لحفر الآبار والتجارة والصيانة<br> <b>الرقم الموحد:</b> 7036633266<br> <b>السجل التجاري:</b> 2057475899<br> <b>الحي:</b> النهضه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.41030123,48.48374881" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bbbcb434b69b9714df000d3a9a6bd80f.setContent(html_32e30f4224588d8da99b0ea6abb47a98);
marker_8d92892367d51819405ba7d247b759f7.bindPopup(popup_bbbcb434b69b9714df000d3a9a6bd80f)
;
marker_8d92892367d51819405ba7d247b759f7.setIcon(icon_5093a862eed16738bce445c444f558a4);
var marker_8baa7e6c516d85abf420abbb2285a047 = L.marker(
[28.41650966075273, 48.492879379190384],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_b894883739403beef3f052945292d14e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_73ad6ef54e899dccfa203c954822fee5 = L.popup({
"maxWidth": 320,
});
var html_18bb87e180e18a1aaf8e7e928442a9dd = $(`<div id="html_18bb87e180e18a1aaf8e7e928442a9dd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الشامل وان للنسخ والتصوير<br> <b>الرقم الموحد:</b> 7042302930<br> <b>السجل التجاري:</b> 2057477069<br> <b>الحي:</b> اللؤلؤه و الحمراء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.41650966075273,48.492879379190384" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_73ad6ef54e899dccfa203c954822fee5.setContent(html_18bb87e180e18a1aaf8e7e928442a9dd);
marker_8baa7e6c516d85abf420abbb2285a047.bindPopup(popup_73ad6ef54e899dccfa203c954822fee5)
;
marker_8baa7e6c516d85abf420abbb2285a047.setIcon(icon_b894883739403beef3f052945292d14e);
var marker_ee08c84bfeea06b2027b003913623deb = L.marker(
[28.41805569, 48.4761448],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_e91d3df486a5007f938a9a5ee7a078df = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_41ca5829efdf0f605d93874be30f6d5f = L.popup({
"maxWidth": 320,
});
var html_34bdb29ae831991a0e2bfc6f663103fd = $(`<div id="html_34bdb29ae831991a0e2bfc6f663103fd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الفجر الجديد لتقدبم الوجبات<br> <b>الرقم الموحد:</b> 7008014271<br> <b>السجل التجاري:</b> 2057012068<br> <b>الحي:</b> اللؤلؤه و الحمراء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.41805569,48.4761448" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_41ca5829efdf0f605d93874be30f6d5f.setContent(html_34bdb29ae831991a0e2bfc6f663103fd);
marker_ee08c84bfeea06b2027b003913623deb.bindPopup(popup_41ca5829efdf0f605d93874be30f6d5f)
;
marker_ee08c84bfeea06b2027b003913623deb.setIcon(icon_e91d3df486a5007f938a9a5ee7a078df);
var marker_cad93a3471bdd475ff8e5cefa84ab2fb = L.marker(
[28.42008336, 48.49550522],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_d9b7e1be63f6447ae1aff745d226595f = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3082c166d868a2ea5df84c6e322e448d = L.popup({
"maxWidth": 320,
});
var html_9543b6ba1ed232abf14bc1bf9827ec6e = $(`<div id="html_9543b6ba1ed232abf14bc1bf9827ec6e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> وكالة وجهات الأفق للسفر و السياحة<br> <b>الرقم الموحد:</b> 7028413834<br> <b>السجل التجاري:</b> 2057474720<br> <b>الحي:</b> اللؤلؤه و الحمراء<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=28.42008336,48.49550522" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3082c166d868a2ea5df84c6e322e448d.setContent(html_9543b6ba1ed232abf14bc1bf9827ec6e);
marker_cad93a3471bdd475ff8e5cefa84ab2fb.bindPopup(popup_3082c166d868a2ea5df84c6e322e448d)
;
marker_cad93a3471bdd475ff8e5cefa84ab2fb.setIcon(icon_d9b7e1be63f6447ae1aff745d226595f);
var marker_72dbd2e78d8a71caadacff364642187a = L.marker(
[28.44366315291253, 48.492446690797806],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_65e3ae12985d2e0ac2d5049e87aca199 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_84f43d6aee1d0b2f6c367d5259377671 = L.popup({
"maxWidth": 320,
});
var html_537459ba2975351629612481b16fbd5a = $(`<div id="html_537459ba2975351629612481b16fbd5a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مركز فور بدي الرياضي<br> <b>الرقم الموحد:</b> 7043237564<br> <b>السجل التجاري:</b> 2057477284<br> <b>الحي:</b> الريان<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.44366315291253,48.492446690797806" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_84f43d6aee1d0b2f6c367d5259377671.setContent(html_537459ba2975351629612481b16fbd5a);
marker_72dbd2e78d8a71caadacff364642187a.bindPopup(popup_84f43d6aee1d0b2f6c367d5259377671)
;
marker_72dbd2e78d8a71caadacff364642187a.setIcon(icon_65e3ae12985d2e0ac2d5049e87aca199);
var marker_34b0d87b232b2ac826cc80f3bbe98dcf = L.marker(
[28.43946927, 48.4937553],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_88e8e3e4bd9e721ad26de86b03dbd931 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_25ca849be89a0047c083985440ee075d = L.popup({
"maxWidth": 320,
});
var html_4b571da9dd536a93cd652625936c958c = $(`<div id="html_4b571da9dd536a93cd652625936c958c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة صبا الشرق<br> <b>الرقم الموحد:</b> 7018064258<br> <b>السجل التجاري:</b> 1010306253<br> <b>الحي:</b> الريان<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.43946927,48.4937553" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_25ca849be89a0047c083985440ee075d.setContent(html_4b571da9dd536a93cd652625936c958c);
marker_34b0d87b232b2ac826cc80f3bbe98dcf.bindPopup(popup_25ca849be89a0047c083985440ee075d)
;
marker_34b0d87b232b2ac826cc80f3bbe98dcf.setIcon(icon_88e8e3e4bd9e721ad26de86b03dbd931);
var marker_8eac54dcc40cc644d78ff3b987ac73d6 = L.marker(
[28.42122803, 48.48681486],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_56de597002824b0af8cc62c86092da1d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ea925d6a9a8b6963d0c8801d10291df4 = L.popup({
"maxWidth": 320,
});
var html_5044992458a082aa6fb2a05db5f5a203 = $(`<div id="html_5044992458a082aa6fb2a05db5f5a203" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ساره فهيد السبيعي<br> <b>الرقم الموحد:</b> 7034798327<br> <b>السجل التجاري:</b> 2057475742<br> <b>الحي:</b> الجوهره<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.42122803,48.48681486" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ea925d6a9a8b6963d0c8801d10291df4.setContent(html_5044992458a082aa6fb2a05db5f5a203);
marker_8eac54dcc40cc644d78ff3b987ac73d6.bindPopup(popup_ea925d6a9a8b6963d0c8801d10291df4)
;
marker_8eac54dcc40cc644d78ff3b987ac73d6.setIcon(icon_56de597002824b0af8cc62c86092da1d);
var marker_ed1fd97fbc2cf7776d019c6e87088d64 = L.marker(
[28.420999397426527, 48.49261692725122],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_0e3754b3d0d3fa87ec846d6339545945 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fd37ef20d998917ef982d2692b99af8f = L.popup({
"maxWidth": 320,
});
var html_9858d981209f848a84a7c97b926d280a = $(`<div id="html_9858d981209f848a84a7c97b926d280a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الناقلات الخليجية للخدمات اللوجستية<br> <b>الرقم الموحد:</b> 7027934913<br> <b>السجل التجاري:</b> 2050154864<br> <b>الحي:</b> الجوهره<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=28.420999397426527,48.49261692725122" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fd37ef20d998917ef982d2692b99af8f.setContent(html_9858d981209f848a84a7c97b926d280a);
marker_ed1fd97fbc2cf7776d019c6e87088d64.bindPopup(popup_fd37ef20d998917ef982d2692b99af8f)
;
marker_ed1fd97fbc2cf7776d019c6e87088d64.setIcon(icon_0e3754b3d0d3fa87ec846d6339545945);
var marker_94b0413a732d45a2cdb84724a08a1c5f = L.marker(
[28.420807264571103, 48.48715662213734],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_cb2072aae44fdb51c3ed2eac9c893b00 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b7717d64abbdce97740414d3a4757634 = L.popup({
"maxWidth": 320,
});
var html_a3db512095f193a94620f353a67ae385 = $(`<div id="html_a3db512095f193a94620f353a67ae385" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة البيارق النجدية العربية<br> <b>الرقم الموحد:</b> 7049565760<br> <b>السجل التجاري:</b> 2251510537<br> <b>الحي:</b> الجوهره<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=28.420807264571103,48.48715662213734" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b7717d64abbdce97740414d3a4757634.setContent(html_a3db512095f193a94620f353a67ae385);
marker_94b0413a732d45a2cdb84724a08a1c5f.bindPopup(popup_b7717d64abbdce97740414d3a4757634)
;
marker_94b0413a732d45a2cdb84724a08a1c5f.setIcon(icon_cb2072aae44fdb51c3ed2eac9c893b00);
var marker_f4899ad8a72d5eaf8d536a8ec96ad83c = L.marker(
[28.41580818, 48.49250308],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_9556123762d6df72e6df99c0018bf57b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5c3a3c7d7da25d96b44c6b5db0b790ff = L.popup({
"maxWidth": 320,
});
var html_c12308720acd85b6283464268f3d0419 = $(`<div id="html_c12308720acd85b6283464268f3d0419" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مدارس المستقبل الخفجي الاهليه للبنين<br> <b>الرقم الموحد:</b> 7010459316<br> <b>السجل التجاري:</b> 2057002535<br> <b>الحي:</b> التعاون<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.41580818,48.49250308" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5c3a3c7d7da25d96b44c6b5db0b790ff.setContent(html_c12308720acd85b6283464268f3d0419);
marker_f4899ad8a72d5eaf8d536a8ec96ad83c.bindPopup(popup_5c3a3c7d7da25d96b44c6b5db0b790ff)
;
marker_f4899ad8a72d5eaf8d536a8ec96ad83c.setIcon(icon_9556123762d6df72e6df99c0018bf57b);
var marker_c57bcb9b5d49fc26971c2f2ed01f6e5d = L.marker(
[28.4442749020001, 48.493286133],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_ee83d237da6c371e296829be8719ffab = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a0101790b5544c74539a81a9c7553ee8 = L.popup({
"maxWidth": 320,
});
var html_7cc1902bfd794872789bddc376564633 = $(`<div id="html_7cc1902bfd794872789bddc376564633" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الانشاءات الخليجية للمقاولات العامة<br> <b>الرقم الموحد:</b> 7013334961<br> <b>السجل التجاري:</b> 2057005874<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.4442749020001,48.493286133" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a0101790b5544c74539a81a9c7553ee8.setContent(html_7cc1902bfd794872789bddc376564633);
marker_c57bcb9b5d49fc26971c2f2ed01f6e5d.bindPopup(popup_a0101790b5544c74539a81a9c7553ee8)
;
marker_c57bcb9b5d49fc26971c2f2ed01f6e5d.setIcon(icon_ee83d237da6c371e296829be8719ffab);
var marker_97b8c9f8534408a9f144c40f5f6d7802 = L.marker(
[28.457329264251, 48.4886444700168],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_c3557631bc98ef3e1a5fbd1259f862d3 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bad6ab95ca153f06b0363e2129273eee = L.popup({
"maxWidth": 320,
});
var html_0d4e2a765bde1494b0f0b40778d82aa5 = $(`<div id="html_0d4e2a765bde1494b0f0b40778d82aa5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة يور دور التجارية<br> <b>الرقم الموحد:</b> 7029203671<br> <b>السجل التجاري:</b> 2057474909<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.457329264251,48.4886444700168" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bad6ab95ca153f06b0363e2129273eee.setContent(html_0d4e2a765bde1494b0f0b40778d82aa5);
marker_97b8c9f8534408a9f144c40f5f6d7802.bindPopup(popup_bad6ab95ca153f06b0363e2129273eee)
;
marker_97b8c9f8534408a9f144c40f5f6d7802.setIcon(icon_c3557631bc98ef3e1a5fbd1259f862d3);
var marker_c3e4168a56d4700d8ab356c63f18fc0e = L.marker(
[28.448062145173168, 48.49603836128708],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_a620a456d36ed1b301d9dd75ae1e818d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d2ea0eadadcb28fa11c49ebafa0e81b5 = L.popup({
"maxWidth": 320,
});
var html_b8e04fdb3a2e42ddd9ff5806e2568d4f = $(`<div id="html_b8e04fdb3a2e42ddd9ff5806e2568d4f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مجمع شمس كلينك الطبي<br> <b>الرقم الموحد:</b> 7006737741<br> <b>السجل التجاري:</b> 3453102805<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.448062145173168,48.49603836128708" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d2ea0eadadcb28fa11c49ebafa0e81b5.setContent(html_b8e04fdb3a2e42ddd9ff5806e2568d4f);
marker_c3e4168a56d4700d8ab356c63f18fc0e.bindPopup(popup_d2ea0eadadcb28fa11c49ebafa0e81b5)
;
marker_c3e4168a56d4700d8ab356c63f18fc0e.setIcon(icon_a620a456d36ed1b301d9dd75ae1e818d);
var marker_a5554ec357adf2a5816f136e28b541af = L.marker(
[28.45471112707328, 48.48970108244877],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_ec600eb0976b8af0975f04f647f8c520 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ec9e891bbe8af62db400df4be089c9ca = L.popup({
"maxWidth": 320,
});
var html_9358a26226eb78c3fd4fd87a4a82fa1c = $(`<div id="html_9358a26226eb78c3fd4fd87a4a82fa1c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة كاب جاك لتوجية مركبات الاجرة<br> <b>الرقم الموحد:</b> 7040911385<br> <b>السجل التجاري:</b> 4650275537<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=28.45471112707328,48.48970108244877" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ec9e891bbe8af62db400df4be089c9ca.setContent(html_9358a26226eb78c3fd4fd87a4a82fa1c);
marker_a5554ec357adf2a5816f136e28b541af.bindPopup(popup_ec9e891bbe8af62db400df4be089c9ca)
;
marker_a5554ec357adf2a5816f136e28b541af.setIcon(icon_ec600eb0976b8af0975f04f647f8c520);
var marker_396688ebd806766df722015293d0b1a4 = L.marker(
[28.4373678900001, 48.4949661900001],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_06619a57d20b7a31d98171e054a89529 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9c3b9a52743fef67be470ce7e60d1156 = L.popup({
"maxWidth": 320,
});
var html_1b8fd9ac00b49056b7244957439f579f = $(`<div id="html_1b8fd9ac00b49056b7244957439f579f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مطعم فابيلوس لتقديم الوجبات<br> <b>الرقم الموحد:</b> 7014953710<br> <b>السجل التجاري:</b> 2057005188<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.4373678900001,48.4949661900001" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9c3b9a52743fef67be470ce7e60d1156.setContent(html_1b8fd9ac00b49056b7244957439f579f);
marker_396688ebd806766df722015293d0b1a4.bindPopup(popup_9c3b9a52743fef67be470ce7e60d1156)
;
marker_396688ebd806766df722015293d0b1a4.setIcon(icon_06619a57d20b7a31d98171e054a89529);
var marker_ea3592645dce8e3b2ba4fa3dabd7964d = L.marker(
[28.43419127, 48.49460407],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_b9187a54b85a2b69aa0b74f1c29008db = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_27e2bf8d8a407f99c95454ec6b9ff555 = L.popup({
"maxWidth": 320,
});
var html_3b50450746290540a35b1049b5ddfd18 = $(`<div id="html_3b50450746290540a35b1049b5ddfd18" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أمن المدن للحراسات الأمنية<br> <b>الرقم الموحد:</b> 7002137698<br> <b>السجل التجاري:</b> 1010304704<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.43419127,48.49460407" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_27e2bf8d8a407f99c95454ec6b9ff555.setContent(html_3b50450746290540a35b1049b5ddfd18);
marker_ea3592645dce8e3b2ba4fa3dabd7964d.bindPopup(popup_27e2bf8d8a407f99c95454ec6b9ff555)
;
marker_ea3592645dce8e3b2ba4fa3dabd7964d.setIcon(icon_b9187a54b85a2b69aa0b74f1c29008db);
var marker_b40e823a213699e06a2ab60744fbecc5 = L.marker(
[28.44084259066369, 48.49392515027756],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_ea8e28296b00adebcd4a1ac0628c8245 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7344aa1013b9c6c7abc2fe0783822ae8 = L.popup({
"maxWidth": 320,
});
var html_9c009c631e0a9db020b508839a0b4f2f = $(`<div id="html_9c009c631e0a9db020b508839a0b4f2f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أسواق فروت الجوف التجارية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7032576832<br> <b>السجل التجاري:</b> 2057475621<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.44084259066369,48.49392515027756" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7344aa1013b9c6c7abc2fe0783822ae8.setContent(html_9c009c631e0a9db020b508839a0b4f2f);
marker_b40e823a213699e06a2ab60744fbecc5.bindPopup(popup_7344aa1013b9c6c7abc2fe0783822ae8)
;
marker_b40e823a213699e06a2ab60744fbecc5.setIcon(icon_ea8e28296b00adebcd4a1ac0628c8245);
var marker_1fb6e0677d473c1cf22597fb75a632ce = L.marker(
[28.4515791, 48.48990686],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_a2c4f3f6c6b0906d88e9450186fce4a6 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_904e9b2f5fbfc765821ac9b38fed228a = L.popup({
"maxWidth": 320,
});
var html_f13120ff31a1a7b543fabbf57d6642a8 = $(`<div id="html_f13120ff31a1a7b543fabbf57d6642a8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة السكة الرياضية<br> <b>الرقم الموحد:</b> 7026818356<br> <b>السجل التجاري:</b> 2057474387<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=28.4515791,48.48990686" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_904e9b2f5fbfc765821ac9b38fed228a.setContent(html_f13120ff31a1a7b543fabbf57d6642a8);
marker_1fb6e0677d473c1cf22597fb75a632ce.bindPopup(popup_904e9b2f5fbfc765821ac9b38fed228a)
;
marker_1fb6e0677d473c1cf22597fb75a632ce.setIcon(icon_a2c4f3f6c6b0906d88e9450186fce4a6);
var marker_182ccb358b096517b2dd709ca91fb17e = L.marker(
[28.44879165, 48.49249247],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_d81e38ddbb405d7f2dc9b896bef03fcc = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7593976b1c858824443ef24ea8b06b99 = L.popup({
"maxWidth": 320,
});
var html_26be71b264b2e043e972e611a8190ae9 = $(`<div id="html_26be71b264b2e043e972e611a8190ae9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الجدير الشرقي التجارية<br> <b>الرقم الموحد:</b> 7010462930<br> <b>السجل التجاري:</b> 2057002036<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.44879165,48.49249247" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7593976b1c858824443ef24ea8b06b99.setContent(html_26be71b264b2e043e972e611a8190ae9);
marker_182ccb358b096517b2dd709ca91fb17e.bindPopup(popup_7593976b1c858824443ef24ea8b06b99)
;
marker_182ccb358b096517b2dd709ca91fb17e.setIcon(icon_d81e38ddbb405d7f2dc9b896bef03fcc);
var marker_94de36cd058dedf622099190bae53bef = L.marker(
[28.45872907, 48.49204152],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_92a0b9e87575dbce3259c39fcbb427c6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_078a9daf41e8d92516c0ea0045e4792e = L.popup({
"maxWidth": 320,
});
var html_1585e722350b0e1b535e529f03acbaee = $(`<div id="html_1585e722350b0e1b535e529f03acbaee" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة دنيا الدراجات لالعاب الأطفال<br> <b>الرقم الموحد:</b> 7008334869<br> <b>السجل التجاري:</b> 2057472170<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.45872907,48.49204152" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_078a9daf41e8d92516c0ea0045e4792e.setContent(html_1585e722350b0e1b535e529f03acbaee);
marker_94de36cd058dedf622099190bae53bef.bindPopup(popup_078a9daf41e8d92516c0ea0045e4792e)
;
marker_94de36cd058dedf622099190bae53bef.setIcon(icon_92a0b9e87575dbce3259c39fcbb427c6);
var marker_9d6955ed97deb5269d25e60e2f1427c7 = L.marker(
[28.4559902156272, 48.491717025495],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_0d63f6ecae8c6a9b7a912ca6390b35ae = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a0c81fb76cfe731e51d841416fad6be2 = L.popup({
"maxWidth": 320,
});
var html_3649d3657d404b065c2052b1a96ac0d8 = $(`<div id="html_3649d3657d404b065c2052b1a96ac0d8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة دقة المواعيد للنسخ والتصوير<br> <b>الرقم الموحد:</b> 7035953079<br> <b>السجل التجاري:</b> 2057476063<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.4559902156272,48.491717025495" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a0c81fb76cfe731e51d841416fad6be2.setContent(html_3649d3657d404b065c2052b1a96ac0d8);
marker_9d6955ed97deb5269d25e60e2f1427c7.bindPopup(popup_a0c81fb76cfe731e51d841416fad6be2)
;
marker_9d6955ed97deb5269d25e60e2f1427c7.setIcon(icon_0d63f6ecae8c6a9b7a912ca6390b35ae);
var marker_3e4669273b47860b1480eef47d3c65ea = L.marker(
[28.44060048, 48.49421734],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_eca8e2155a4ed29ea3f305cb044993d4 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2b16732114d76ac109974b75297ce958 = L.popup({
"maxWidth": 320,
});
var html_559232129a7d08948cf63bbf5dc1267f = $(`<div id="html_559232129a7d08948cf63bbf5dc1267f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة اركاز التعمير للمقاولات<br> <b>الرقم الموحد:</b> 7013283010<br> <b>السجل التجاري:</b> 2057003692<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=28.44060048,48.49421734" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2b16732114d76ac109974b75297ce958.setContent(html_559232129a7d08948cf63bbf5dc1267f);
marker_3e4669273b47860b1480eef47d3c65ea.bindPopup(popup_2b16732114d76ac109974b75297ce958)
;
marker_3e4669273b47860b1480eef47d3c65ea.setIcon(icon_eca8e2155a4ed29ea3f305cb044993d4);
var marker_dcdc4714c1f1869eeee12a53496a18a6 = L.marker(
[28.4361017, 48.49478157],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_ae4b8ae2c59e1db887e6c36fbc2d998e = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fcab7af3ec4c710b75569884be096e8e = L.popup({
"maxWidth": 320,
});
var html_968b4c5328b8d0c0f2ee5f5803c007f5 = $(`<div id="html_968b4c5328b8d0c0f2ee5f5803c007f5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ضوء قمر للهدايا<br> <b>الرقم الموحد:</b> 7026836408<br> <b>السجل التجاري:</b> 2057474393<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=28.4361017,48.49478157" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fcab7af3ec4c710b75569884be096e8e.setContent(html_968b4c5328b8d0c0f2ee5f5803c007f5);
marker_dcdc4714c1f1869eeee12a53496a18a6.bindPopup(popup_fcab7af3ec4c710b75569884be096e8e)
;
marker_dcdc4714c1f1869eeee12a53496a18a6.setIcon(icon_ae4b8ae2c59e1db887e6c36fbc2d998e);
var marker_b6705e25f2e1239d417e6553b36ac92c = L.marker(
[28.43780196, 48.49486796],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_1be8f743d0048688f596245e4f3122dd = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5291bffd33d63efca1a19995977b62b0 = L.popup({
"maxWidth": 320,
});
var html_f3bb5ceab6461c09411f4468a82eeef4 = $(`<div id="html_f3bb5ceab6461c09411f4468a82eeef4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة طموح الانجاز للتجارة<br> <b>الرقم الموحد:</b> 7002491822<br> <b>السجل التجاري:</b> 2057471214<br> <b>الحي:</b> العزيزيه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.43780196,48.49486796" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5291bffd33d63efca1a19995977b62b0.setContent(html_f3bb5ceab6461c09411f4468a82eeef4);
marker_b6705e25f2e1239d417e6553b36ac92c.bindPopup(popup_5291bffd33d63efca1a19995977b62b0)
;
marker_b6705e25f2e1239d417e6553b36ac92c.setIcon(icon_1be8f743d0048688f596245e4f3122dd);
var marker_0b4218ffba12e57f127340bae3b5202b = L.marker(
[28.41708812, 48.49873756],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_c492b904c46af0aa960a45b4485edfc6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b8dbba91cb85f04c52ea1626440f0fc0 = L.popup({
"maxWidth": 320,
});
var html_672d4673170f5c9ee41584ddbe3b8846 = $(`<div id="html_672d4673170f5c9ee41584ddbe3b8846" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع الموسى للابواب الأتوماتيكية<br> <b>الرقم الموحد:</b> 7011033284<br> <b>السجل التجاري:</b> 2257018603<br> <b>الحي:</b> المحمديه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.41708812,48.49873756" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b8dbba91cb85f04c52ea1626440f0fc0.setContent(html_672d4673170f5c9ee41584ddbe3b8846);
marker_0b4218ffba12e57f127340bae3b5202b.bindPopup(popup_b8dbba91cb85f04c52ea1626440f0fc0)
;
marker_0b4218ffba12e57f127340bae3b5202b.setIcon(icon_c492b904c46af0aa960a45b4485edfc6);
var marker_2a894f2339d444270925c569c3213b91 = L.marker(
[28.4292692, 48.49557438],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_2e49583fccb5e94e24a7fe2623a3ca27 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9404c89a7ed87b5f74d24ba331a72e8d = L.popup({
"maxWidth": 320,
});
var html_9d238eb31e6c15f0eb262575a5f0b1dc = $(`<div id="html_9d238eb31e6c15f0eb262575a5f0b1dc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة توب ستار لزينة السيارات<br> <b>الرقم الموحد:</b> 7033307609<br> <b>السجل التجاري:</b> 2057475545<br> <b>الحي:</b> المحمديه<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.4292692,48.49557438" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9404c89a7ed87b5f74d24ba331a72e8d.setContent(html_9d238eb31e6c15f0eb262575a5f0b1dc);
marker_2a894f2339d444270925c569c3213b91.bindPopup(popup_9404c89a7ed87b5f74d24ba331a72e8d)
;
marker_2a894f2339d444270925c569c3213b91.setIcon(icon_2e49583fccb5e94e24a7fe2623a3ca27);
var marker_34c397eb1d5509a8393ff47eb84a6533 = L.marker(
[28.40448552, 48.50285576],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_5db8433e3a25c7175aa6f343a48a7a72 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8cb3e6e70ec14bfa8e9d4f5f8f802b6a = L.popup({
"maxWidth": 320,
});
var html_0ece858826000ce55760a811037fcecf = $(`<div id="html_0ece858826000ce55760a811037fcecf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع فيول للمنتجات الاسمنتية<br> <b>الرقم الموحد:</b> 7007568285<br> <b>السجل التجاري:</b> 2057002578<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.40448552,48.50285576" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8cb3e6e70ec14bfa8e9d4f5f8f802b6a.setContent(html_0ece858826000ce55760a811037fcecf);
marker_34c397eb1d5509a8393ff47eb84a6533.bindPopup(popup_8cb3e6e70ec14bfa8e9d4f5f8f802b6a)
;
marker_34c397eb1d5509a8393ff47eb84a6533.setIcon(icon_5db8433e3a25c7175aa6f343a48a7a72);
var marker_5162c980d2cc2efbe660723dd2b12a5e = L.marker(
[28.40594328, 48.50452509],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_35edc683c47a6580e89948022b8bf367 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1632c7d7d9f1b0bfb247e972a01a88e9 = L.popup({
"maxWidth": 320,
});
var html_2bb1aa5a2401951f1116102b42e7ed2d = $(`<div id="html_2bb1aa5a2401951f1116102b42e7ed2d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع التسامح للمنتجات الاسمنتية<br> <b>الرقم الموحد:</b> 7011967614<br> <b>السجل التجاري:</b> 2057004216<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.40594328,48.50452509" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1632c7d7d9f1b0bfb247e972a01a88e9.setContent(html_2bb1aa5a2401951f1116102b42e7ed2d);
marker_5162c980d2cc2efbe660723dd2b12a5e.bindPopup(popup_1632c7d7d9f1b0bfb247e972a01a88e9)
;
marker_5162c980d2cc2efbe660723dd2b12a5e.setIcon(icon_35edc683c47a6580e89948022b8bf367);
var marker_f699d54f940b2ddcd634e43486b7c267 = L.marker(
[28.396120055, 48.502045061],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_dc44608192839304d7f1bd946043499f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f464146aff4bc90296db55aa470ee310 = L.popup({
"maxWidth": 320,
});
var html_0bb03dbf2a64a4dabd17d7351c164424 = $(`<div id="html_0bb03dbf2a64a4dabd17d7351c164424" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الرواسي الإتحادية للمقاولات<br> <b>الرقم الموحد:</b> 7012900044<br> <b>السجل التجاري:</b> 2057006889<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.396120055,48.502045061" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f464146aff4bc90296db55aa470ee310.setContent(html_0bb03dbf2a64a4dabd17d7351c164424);
marker_f699d54f940b2ddcd634e43486b7c267.bindPopup(popup_f464146aff4bc90296db55aa470ee310)
;
marker_f699d54f940b2ddcd634e43486b7c267.setIcon(icon_dc44608192839304d7f1bd946043499f);
var marker_3c7b98965f11b7a5a8aebbfd6d92d5f8 = L.marker(
[28.413147911832063, 48.50224949419498],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_2d7db9d90a310b8bce78512ebb3e5638 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_14dbf66aabfbce7b511595cbfab50cde = L.popup({
"maxWidth": 320,
});
var html_72f4887d9f7f927f3c6b59f5f392968b = $(`<div id="html_72f4887d9f7f927f3c6b59f5f392968b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ابن زميع المحدودة<br> <b>الرقم الموحد:</b> 7023421253<br> <b>السجل التجاري:</b> 2057473980<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.413147911832063,48.50224949419498" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_14dbf66aabfbce7b511595cbfab50cde.setContent(html_72f4887d9f7f927f3c6b59f5f392968b);
marker_3c7b98965f11b7a5a8aebbfd6d92d5f8.bindPopup(popup_14dbf66aabfbce7b511595cbfab50cde)
;
marker_3c7b98965f11b7a5a8aebbfd6d92d5f8.setIcon(icon_2d7db9d90a310b8bce78512ebb3e5638);
var marker_08150c5fa937a79b13a4f002945011dc = L.marker(
[28.411058869727295, 48.5075793986002],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_419c6209cde36d582b7808221d8749fb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_94feead6866f76828e707d3f02d6c902 = L.popup({
"maxWidth": 320,
});
var html_edea12b7d4aeb7c8f1fed74ca8beea57 = $(`<div id="html_edea12b7d4aeb7c8f1fed74ca8beea57" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة حميد مدلول الشمري للمعدات<br> <b>الرقم الموحد:</b> 7012065293<br> <b>السجل التجاري:</b> 2057006322<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.411058869727295,48.5075793986002" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_94feead6866f76828e707d3f02d6c902.setContent(html_edea12b7d4aeb7c8f1fed74ca8beea57);
marker_08150c5fa937a79b13a4f002945011dc.bindPopup(popup_94feead6866f76828e707d3f02d6c902)
;
marker_08150c5fa937a79b13a4f002945011dc.setIcon(icon_419c6209cde36d582b7808221d8749fb);
var marker_ba299a497217e2a662fb1d80ed8e8cf3 = L.marker(
[28.416233433388317, 48.49627981893718],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_fde1ae24849e4405ea572ccd9709f67b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_baef896a32652076d743114efc2e9f69 = L.popup({
"maxWidth": 320,
});
var html_a52ed6b76015ef23cffe465e6bb90e1c = $(`<div id="html_a52ed6b76015ef23cffe465e6bb90e1c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مساندة الإمداد للصيانة والتشطيب<br> <b>الرقم الموحد:</b> 7010033400<br> <b>السجل التجاري:</b> 2057469847<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.416233433388317,48.49627981893718" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_baef896a32652076d743114efc2e9f69.setContent(html_a52ed6b76015ef23cffe465e6bb90e1c);
marker_ba299a497217e2a662fb1d80ed8e8cf3.bindPopup(popup_baef896a32652076d743114efc2e9f69)
;
marker_ba299a497217e2a662fb1d80ed8e8cf3.setIcon(icon_fde1ae24849e4405ea572ccd9709f67b);
var marker_55a2d3a60b33da388d0e47919d3069cc = L.marker(
[28.395207152598, 48.5036120083607],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_537e54f07f40ae87efc45f6fe893dd0e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8c148cdb036abd04e82cb345e62bdf72 = L.popup({
"maxWidth": 320,
});
var html_d7ffc708e50f1c521fd840f514716250 = $(`<div id="html_d7ffc708e50f1c521fd840f514716250" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> فرع شركة أديس جي سي سي فور دريلنج ليمتد<br> <b>الرقم الموحد:</b> 7001684112<br> <b>السجل التجاري:</b> 2057004530<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.395207152598,48.5036120083607" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8c148cdb036abd04e82cb345e62bdf72.setContent(html_d7ffc708e50f1c521fd840f514716250);
marker_55a2d3a60b33da388d0e47919d3069cc.bindPopup(popup_8c148cdb036abd04e82cb345e62bdf72)
;
marker_55a2d3a60b33da388d0e47919d3069cc.setIcon(icon_537e54f07f40ae87efc45f6fe893dd0e);
var marker_3e82cda650fd5bb37e41be0a3363addb = L.marker(
[28.41459526, 48.51022652],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_307f3a18a6bf79aaf86a202fe39c5b95 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d7b55d23dd552451065a00d2e321ca7d = L.popup({
"maxWidth": 320,
});
var html_510142425fbb2b4a2ddaf9e87c74b41c = $(`<div id="html_510142425fbb2b4a2ddaf9e87c74b41c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ماريدايف أوف شور بروجكتس المحدودة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001523195<br> <b>السجل التجاري:</b> 2057003652<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.41459526,48.51022652" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d7b55d23dd552451065a00d2e321ca7d.setContent(html_510142425fbb2b4a2ddaf9e87c74b41c);
marker_3e82cda650fd5bb37e41be0a3363addb.bindPopup(popup_d7b55d23dd552451065a00d2e321ca7d)
;
marker_3e82cda650fd5bb37e41be0a3363addb.setIcon(icon_307f3a18a6bf79aaf86a202fe39c5b95);
var marker_829e40cf738cadea53e1d185b3ca7447 = L.marker(
[28.4148550299337, 48.50250570994191],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_f6130356d519d35be723f92f84053d4a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8e411c23b526fc04164c079f5a786c14 = L.popup({
"maxWidth": 320,
});
var html_1f36494ba83ae80ce3f93913aa342c95 = $(`<div id="html_1f36494ba83ae80ce3f93913aa342c95" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة فرع الشركة المتكاملة اللوجستية<br> <b>الرقم الموحد:</b> 7001543870<br> <b>السجل التجاري:</b> 2057003111<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.4148550299337,48.50250570994191" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8e411c23b526fc04164c079f5a786c14.setContent(html_1f36494ba83ae80ce3f93913aa342c95);
marker_829e40cf738cadea53e1d185b3ca7447.bindPopup(popup_8e411c23b526fc04164c079f5a786c14)
;
marker_829e40cf738cadea53e1d185b3ca7447.setIcon(icon_f6130356d519d35be723f92f84053d4a);
var marker_72094b7ceaa2cb22dfc0425987a97f28 = L.marker(
[28.41584786, 48.49679859],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_68048f5bcf0af7bb70af96bc367b9ae4 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c9a46aa128fec2b438a39d3f63ca3884 = L.popup({
"maxWidth": 320,
});
var html_49be80ada9a2d66ecdbba1135a8af2b0 = $(`<div id="html_49be80ada9a2d66ecdbba1135a8af2b0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الجلهمي للمقاولات و التجارة<br> <b>الرقم الموحد:</b> 7001646293<br> <b>السجل التجاري:</b> 2057002822<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.41584786,48.49679859" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c9a46aa128fec2b438a39d3f63ca3884.setContent(html_49be80ada9a2d66ecdbba1135a8af2b0);
marker_72094b7ceaa2cb22dfc0425987a97f28.bindPopup(popup_c9a46aa128fec2b438a39d3f63ca3884)
;
marker_72094b7ceaa2cb22dfc0425987a97f28.setIcon(icon_68048f5bcf0af7bb70af96bc367b9ae4);
var marker_5117688b8500e9e8fed1ed6ed2c121dc = L.marker(
[28.4001501761948, 48.4999961380311],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_6e03a13d9b705ab9daa58c8d497ecfde = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f9af0c5fd7165a05e4d47a3f6cdea677 = L.popup({
"maxWidth": 320,
});
var html_b6639e5daea619e435281fff52e54e98 = $(`<div id="html_b6639e5daea619e435281fff52e54e98" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة فالح فواز السبيعي للمقاولات العامة<br> <b>الرقم الموحد:</b> 7012419920<br> <b>السجل التجاري:</b> 2057002559<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.4001501761948,48.4999961380311" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f9af0c5fd7165a05e4d47a3f6cdea677.setContent(html_b6639e5daea619e435281fff52e54e98);
marker_5117688b8500e9e8fed1ed6ed2c121dc.bindPopup(popup_f9af0c5fd7165a05e4d47a3f6cdea677)
;
marker_5117688b8500e9e8fed1ed6ed2c121dc.setIcon(icon_6e03a13d9b705ab9daa58c8d497ecfde);
var marker_d5939da235c649b41e2bb4f9da3b5b8b = L.marker(
[28.39658614, 48.50421774],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_fc896e71bdabf9e6438da41ad29a7f87 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6aadc7d03d9edd7280625e5b3eddd694 = L.popup({
"maxWidth": 320,
});
var html_f3bcd12c2825efe97bce779a8d69be28 = $(`<div id="html_f3bcd12c2825efe97bce779a8d69be28" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع الأبيض الخفيف للبلك<br> <b>الرقم الموحد:</b> 7012752247<br> <b>السجل التجاري:</b> 2057005684<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.39658614,48.50421774" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6aadc7d03d9edd7280625e5b3eddd694.setContent(html_f3bcd12c2825efe97bce779a8d69be28);
marker_d5939da235c649b41e2bb4f9da3b5b8b.bindPopup(popup_6aadc7d03d9edd7280625e5b3eddd694)
;
marker_d5939da235c649b41e2bb4f9da3b5b8b.setIcon(icon_fc896e71bdabf9e6438da41ad29a7f87);
var marker_62dae5e490217e36c9ef32d088d27786 = L.marker(
[28.4129115648324, 48.5098680084296],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_fceacfff78d1adad6647eafa87408d2e = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b1a667c25a465467371ed42d9da804ed = L.popup({
"maxWidth": 320,
});
var html_72216eaa88889d69cec964220f562ca0 = $(`<div id="html_72216eaa88889d69cec964220f562ca0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة قمة المتوسط لتأجير المعدات<br> <b>الرقم الموحد:</b> 7006799188<br> <b>السجل التجاري:</b> 2057004205<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=28.4129115648324,48.5098680084296" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b1a667c25a465467371ed42d9da804ed.setContent(html_72216eaa88889d69cec964220f562ca0);
marker_62dae5e490217e36c9ef32d088d27786.bindPopup(popup_b1a667c25a465467371ed42d9da804ed)
;
marker_62dae5e490217e36c9ef32d088d27786.setIcon(icon_fceacfff78d1adad6647eafa87408d2e);
var marker_11da56374491ecba48b203dcc81db20d = L.marker(
[28.415698593485125, 48.50372772663832],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_6d9552b494d06c087981b2e6def0aeaa = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_91e5bb400d58390d65f33407be0e6d2b = L.popup({
"maxWidth": 320,
});
var html_8faa86225a73e4c6100d9dec538d3671 = $(`<div id="html_8faa86225a73e4c6100d9dec538d3671" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة النجم المميز للنقليات<br> <b>الرقم الموحد:</b> 7023498541<br> <b>السجل التجاري:</b> 2057473997<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.415698593485125,48.50372772663832" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_91e5bb400d58390d65f33407be0e6d2b.setContent(html_8faa86225a73e4c6100d9dec538d3671);
marker_11da56374491ecba48b203dcc81db20d.bindPopup(popup_91e5bb400d58390d65f33407be0e6d2b)
;
marker_11da56374491ecba48b203dcc81db20d.setIcon(icon_6d9552b494d06c087981b2e6def0aeaa);
var marker_73cfae831419e3479f9bfb37521186bb = L.marker(
[28.41699454, 48.52207853],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_36c91fe027c7d44e57fa5d8767601a6c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_685a2df869fbaf48023edeec5b4efe50 = L.popup({
"maxWidth": 320,
});
var html_53a7b8a3af6c4bbf5a004bdb02a5e199 = $(`<div id="html_53a7b8a3af6c4bbf5a004bdb02a5e199" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أرامكو لأعمال الخليج المحدودة<br> <b>الرقم الموحد:</b> 7001401590<br> <b>السجل التجاري:</b> 2057002097<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.41699454,48.52207853" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_685a2df869fbaf48023edeec5b4efe50.setContent(html_53a7b8a3af6c4bbf5a004bdb02a5e199);
marker_73cfae831419e3479f9bfb37521186bb.bindPopup(popup_685a2df869fbaf48023edeec5b4efe50)
;
marker_73cfae831419e3479f9bfb37521186bb.setIcon(icon_36c91fe027c7d44e57fa5d8767601a6c);
var marker_d726ed523e9a645858f508785e229272 = L.marker(
[28.4134071811426, 48.502181060545],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_2b42bfbacc0b99b4bd7c87cb779c8df0 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_942b69c19416e33ec73989b314b24849 = L.popup({
"maxWidth": 320,
});
var html_848a402a73d7e29ce31e3ee1b53b9da9 = $(`<div id="html_848a402a73d7e29ce31e3ee1b53b9da9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ابن زميع للمقاولات شركة شخص واحد<br> <b>الرقم الموحد:</b> 7015058220<br> <b>السجل التجاري:</b> 2057001166<br> <b>الحي:</b> ج14<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.4134071811426,48.502181060545" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_942b69c19416e33ec73989b314b24849.setContent(html_848a402a73d7e29ce31e3ee1b53b9da9);
marker_d726ed523e9a645858f508785e229272.bindPopup(popup_942b69c19416e33ec73989b314b24849)
;
marker_d726ed523e9a645858f508785e229272.setIcon(icon_2b42bfbacc0b99b4bd7c87cb779c8df0);
var marker_0e80496c59a372d6ab121f4e9c71e500 = L.marker(
[28.40150882, 48.51622851],
{
}
).addTo(map_eca68a44e324594045bc7f220382bcde);
var icon_2912587014a50e0fde105f4a103ae1e7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c44f2d2327428740e216b790880159e5 = L.popup({
"maxWidth": 320,
});
var html_d28f81e64bfa25f53f3a49710fcb564c = $(`<div id="html_d28f81e64bfa25f53f3a49710fcb564c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة التيسير المتميز للتسويق<br> <b>الرقم الموحد:</b> 7028101769<br> <b>السجل التجاري:</b> 2057474649<br> <b>الحي:</b> ج15<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=28.40150882,48.51622851" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c44f2d2327428740e216b790880159e5.setContent(html_d28f81e64bfa25f53f3a49710fcb564c);
marker_0e80496c59a372d6ab121f4e9c71e500.bindPopup(popup_c44f2d2327428740e216b790880159e5)
;
marker_0e80496c59a372d6ab121f4e9c71e500.setIcon(icon_2912587014a50e0fde105f4a103ae1e7);
</script>
</html> |