63d85a4
|
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 |
<!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_44a9c94213a919a2823fa478ce8207fd {
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>
<style>
.stats-box {
position: fixed;
bottom: 14px;
right: 14px;
width: 300px;
background: rgba(255,255,255,0.92);
border-radius: 14px;
box-shadow: 0 2px 14px rgba(0,0,0,0.2);
z-index: 9999;
font-family: Arial, sans-serif;
overflow: hidden;
}
.stats-head {
padding:10px 12px;
font-weight:700;
font-size:14px;
border-bottom:1px solid rgba(0,0,0,0.08);
direction:rtl;
display:flex;
justify-content:space-between;
align-items:center;
gap:10px;
}
.stats-title {
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
max-width: 210px;
}
.toggle {
cursor:pointer;
background:rgba(0,0,0,0.06);
border-radius:10px;
padding:4px 8px;
font-size:12px;
}
.stats-body {
padding:10px 12px;
direction:rtl;
font-size:13px;
line-height:1.8;
}
.legend {
max-height: 180px;
overflow:auto;
padding-right: 2px;
margin-top: 8px;
}
.stats-fab {
position: fixed;
bottom: 14px;
right: 14px;
z-index: 9999;
display:none;
cursor:pointer;
background: rgba(255,255,255,0.92);
padding: 10px 12px;
border-radius: 14px;
box-shadow: 0 2px 14px rgba(0,0,0,0.2);
font-family: Arial, sans-serif;
font-size: 13px;
direction: rtl;
}
hr {
border:none;
border-top:1px solid rgba(0,0,0,0.08);
margin:10px 0;
}
</style>
<div id="statsFab" class="stats-fab">إظهار الإحصاءات</div>
<div id="statsBox" class="stats-box">
<div class="stats-head">
<span class="stats-title">جواهر عبدالله عامر القرني - 6</span>
<span class="toggle" id="hideStats">إخفاء</span>
</div>
<div class="stats-body" id="statsBody">
<b>عدد المواقع:</b> 32<br>
<b>عدد الحارات:</b> 5<br>
<b>الأكثر:</b> <b>النور</b>: 13 | <b>بدر</b>: 8 | <b>أحد</b>: 7
<hr>
<b>تلوين حسب الحارة</b>
<div class="legend">
<div style="display:flex;gap:6px;align-items:center;margin:4px 0;">
<span style="width:12px;height:12px;border-radius:50%;
background:#8b0000;display:inline-block;border:1px solid rgba(0,0,0,0.2);"></span>
<span style="font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:170px;">النور</span>
<span style="font-size:12px;color:#666;">(13)</span>
</div>
<div style="display:flex;gap:6px;align-items:center;margin:4px 0;">
<span style="width:12px;height:12px;border-radius:50%;
background:#6c757d;display:inline-block;border:1px solid rgba(0,0,0,0.2);"></span>
<span style="font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:170px;">بدر</span>
<span style="font-size:12px;color:#666;">(8)</span>
</div>
<div style="display:flex;gap:6px;align-items:center;margin:4px 0;">
<span style="width:12px;height:12px;border-radius:50%;
background:#4b0082;display:inline-block;border:1px solid rgba(0,0,0,0.2);"></span>
<span style="font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:170px;">أحد</span>
<span style="font-size:12px;color:#666;">(7)</span>
</div>
<div style="display:flex;gap:6px;align-items:center;margin:4px 0;">
<span style="width:12px;height:12px;border-radius:50%;
background:#8b0000;display:inline-block;border:1px solid rgba(0,0,0,0.2);"></span>
<span style="font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:170px;">الضباب</span>
<span style="font-size:12px;color:#666;">(3)</span>
</div>
<div style="display:flex;gap:6px;align-items:center;margin:4px 0;">
<span style="width:12px;height:12px;border-radius:50%;
background:#8b0000;display:inline-block;border:1px solid rgba(0,0,0,0.2);"></span>
<span style="font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:170px;">الدانة</span>
<span style="font-size:12px;color:#666;">(1)</span>
</div>
</div>
</div>
</div>
<script>
(function(){
const box = document.getElementById('statsBox');
const fab = document.getElementById('statsFab');
const hide = document.getElementById('hideStats');
hide.addEventListener('click', function(){
box.style.display = 'none';
fab.style.display = 'block';
});
fab.addEventListener('click', function(){
box.style.display = 'block';
fab.style.display = 'none';
});
})();
</script>
<style>
.leaflet-control.est-search-control {
background: rgba(255,255,255,0.92);
box-shadow: 0 2px 14px rgba(0,0,0,0.20);
border-radius: 14px;
padding: 10px 10px;
width: 320px;
direction: rtl;
font-family: Arial, sans-serif;
}
.est-search-control input {
width: 100%;
border: 1px solid rgba(0,0,0,0.15);
border-radius: 10px;
padding: 10px 12px;
font-size: 13px;
outline: none;
}
.est-search-meta {
margin-top: 6px;
font-size: 12px;
color: #666;
display:flex;
justify-content:space-between;
gap:8px;
}
.est-results {
margin-top: 8px;
max-height: 180px;
overflow: auto;
border-top: 1px solid rgba(0,0,0,0.08);
padding-top: 6px;
}
.est-item {
cursor: pointer;
padding: 8px 10px;
border-radius: 10px;
font-size: 13px;
line-height: 1.4;
}
.est-item:hover {
background: rgba(0,0,0,0.06);
}
.est-badge {
font-size: 12px;
color: #333;
}
.est-clear {
cursor:pointer;
user-select:none;
font-size:12px;
color:#0b6efd;
}
</style>
<script>
(function(){
const map = map_44a9c94213a919a2823fa478ce8207fd;
const items = [{"title": "شركة اضواء سهيل للمواد الغذائية", "lat": 26.42128942, "lon": 50.02435246, "markerVar": "marker_fc8812cc98d5a4cf2e5dad85eef0a631"}, {"title": "شركة اكنان تشييد وطاقة المحدودة شخص واحد", "lat": 26.42488329053771, "lon": 50.02393238246441, "markerVar": "marker_dcafb8eb4f627510cdcee6e283ff685e"}, {"title": "شركة عاصمة الكنانة للمقاولات العامة شركة الشخص الواحد", "lat": 26.42505136, "lon": 50.02383918, "markerVar": "marker_1073a8e2b5ca94691b46da484eb80ab8"}, {"title": "شركة يونايتد جولد العربية للمقاولات شركة شخص واحد", "lat": 26.42633975, "lon": 50.0235448299999, "markerVar": "marker_8ef7b2c77c175e25c8814d5535961a81"}, {"title": "مؤسسة حروة مشارف التجارية", "lat": 26.42781885, "lon": 50.0235328699999, "markerVar": "marker_be2bea95a8b2cb7e9576287e8881a62b"}, {"title": "فرع شركة القمر العالمي للتجارة", "lat": 26.4284237399999, "lon": 50.02238174, "markerVar": "marker_b10e674f55996f81d3c7d4ec3b6c4f3f"}, {"title": "شركة ربيع النكهات الصناعية", "lat": 26.43346578827111, "lon": 50.02028782796648, "markerVar": "marker_73473a34516ae657e5747bfe80e7cf60"}, {"title": "شركة السيارة الذهبية لتأجير السيارات", "lat": 26.43360605, "lon": 50.0233930899999, "markerVar": "marker_8cbb3d8c90c404068f1ddc0039590705"}, {"title": "شركة رواد العصر لخدمات السيارات", "lat": 26.4344685499999, "lon": 50.03599459, "markerVar": "marker_e67f7ab5f8c7efa2dd3ecea235b52b69"}, {"title": "شركة بلادي المميزة التجارية", "lat": 26.4347595867401, "lon": 50.0262303526683, "markerVar": "marker_bd955fb1e6f49874fab59bfdcbcee3b8"}, {"title": "شركة بسمي للتجارة", "lat": 26.43508632, "lon": 50.02369362, "markerVar": "marker_c382e3e8f520b4282cfbffd15c076a8c"}, {"title": "شركة بيارق النعمان التجارية شخص واحد", "lat": 26.43586321, "lon": 50.03469605, "markerVar": "marker_5f102a32816ccec7ef2b6547e42f1931"}, {"title": "شركة الالات المتقدمة للخدمات الصناعية", "lat": 26.43810258903365, "lon": 50.03238729201257, "markerVar": "marker_7ee7eb1dc721c96399edbb99b4ecdf5e"}, {"title": "شركة الأهلة للأدوية شركة شخص واحد", "lat": 26.40705127, "lon": 50.0356074999999, "markerVar": "marker_d64974993909d55f002ec61abb286425"}, {"title": "شركة مطعم شباب البخاري لتقديم الوجبات", "lat": 26.40873815, "lon": 50.03440235, "markerVar": "marker_110549bee95c8bca6fee6cc0c4ad7c83"}, {"title": "شركة شاهين اليمن التجارية", "lat": 26.4115526699999, "lon": 50.02604025, "markerVar": "marker_6e0dcdf2357fb43cd59b60390f605694"}, {"title": "شركة فخامة التفصيل التجارية", "lat": 26.41178889419053, "lon": 50.01656477339566, "markerVar": "marker_c6425f486a4d624b1a31d22a45a81503"}, {"title": "شركة نفوذ التبريد التجارية شركة شخص واحد", "lat": 26.41256625, "lon": 50.03178452, "markerVar": "marker_14b03391ec13cd4d15c273a82e0e26bd"}, {"title": "حلاق الأبداع الذهبي للحلاقة الرجالية", "lat": 26.41445848, "lon": 50.0223063999999, "markerVar": "marker_8a65c8f829bebf1a852f8e3350b2f08a"}, {"title": "شركه زين و سميرة للتجارة", "lat": 26.41526588, "lon": 50.0301222399999, "markerVar": "marker_1dbdaf1b12765ac4a0c3491706ad469c"}, {"title": "شركة صمام الخير التجارية", "lat": 26.4190895634904, "lon": 50.0250833664874, "markerVar": "marker_f88a08389012418ee04a6a56629c7218"}, {"title": "مؤسسة موج الشرق للتجارة", "lat": 26.4040815663834, "lon": 50.0540586206208, "markerVar": "marker_3d1867b90dafdc76a2be763a47d9ce70"}, {"title": "شركة شبوة للتجارة", "lat": 26.4074512199999, "lon": 50.0589966599999, "markerVar": "marker_37a9b9a57fe42af7450f0fb5cfb613b4"}, {"title": "شركة روائع الاختيار للتجارة", "lat": 26.4156817, "lon": 50.03048958, "markerVar": "marker_338b9a44121da31923b571eff2727bc6"}, {"title": "شركة نجمة الشرقية لالعاب الأطفال", "lat": 26.4158961599999, "lon": 50.03012755, "markerVar": "marker_f1053d39bd1db8633acf89b3a9a6aa6f"}, {"title": "شركة عصر الفخامة للملابس", "lat": 26.42087853, "lon": 50.0268321599999, "markerVar": "marker_ce935aa9e45588735898c34efc31fd81"}, {"title": "شركة هامور الخليج المحدودة", "lat": 26.42183774078678, "lon": 50.02786766220862, "markerVar": "marker_db68bed048c464d2efc8149198154c23"}, {"title": "شركة المساندة الذهبية للمقاولات", "lat": 26.42497208825761, "lon": 50.04330178722739, "markerVar": "marker_9e4eaaf35958526fe551e0b3d27d49dc"}, {"title": "شركة هياكل القمة العالمية للمقاولات العامة", "lat": 26.46831139, "lon": 50.0443100299999, "markerVar": "marker_0d590a8e81fb5667b836bfa694f59c22"}, {"title": "شركة حلول الخطوط للأنابيب", "lat": 26.41796346349863, "lon": 50.05915540270507, "markerVar": "marker_6b913648208ceb84638e53927c877e3d"}, {"title": "شركة البحر الأحمر للمقاولات", "lat": 26.41876361051045, "lon": 50.061623376424, "markerVar": "marker_c5b0c33a15f21add3b33e1fe159b9b1d"}, {"title": "شركة المندرية للمقاولات", "lat": 26.4227192799999, "lon": 50.059308, "markerVar": "marker_c9af2b2c3da16623b9299e0be0c43048"}];
function norm(s){
if(!s) return "";
s = (""+s).toLowerCase();
s = s.replace(/[\u064B-\u065F]/g, "");
s = s.replace(/[إأآا]/g, "ا")
.replace(/ى/g, "ي")
.replace(/ة/g, "ه")
.replace(/ؤ/g, "و")
.replace(/ئ/g, "ي")
.replace(/ـ/g, "");
s = s.replace(/\s+/g, " ").trim();
return s;
}
const SearchControl = L.Control.extend({
options: { position: 'bottomleft' },
onAdd: function(){
const div = L.DomUtil.create('div', 'leaflet-control est-search-control');
div.innerHTML = `
<input id="estQ" type="text" placeholder="ابحث باسم المنشأة (جزء من الاسم)..." />
<div class="est-search-meta">
<span id="estCount" class="est-badge"></span>
<span id="estClear" class="est-clear">مسح</span>
</div>
<div id="estResults" class="est-results"></div>
`;
L.DomEvent.disableClickPropagation(div);
L.DomEvent.disableScrollPropagation(div);
return div;
}
});
map.addControl(new SearchControl());
function renderResults(hits){
const results = document.getElementById('estResults');
const count = document.getElementById('estCount');
results.innerHTML = "";
if(!hits.length){
count.textContent = "لا توجد نتائج";
return;
}
count.textContent = "النتائج: " + hits.length;
for(const h of hits.slice(0, 50)){
const el = document.createElement('div');
el.className = 'est-item';
el.textContent = h.title;
el.onclick = function(){
try {
const mv = window[h.markerVar];
if(mv && mv.getLatLng){
map.setView(mv.getLatLng(), Math.max(map.getZoom(), 17), {animate:true});
if(mv.openPopup) mv.openPopup();
} else {
map.setView([h.lat, h.lon], Math.max(map.getZoom(), 17), {animate:true});
}
} catch(e) {}
};
results.appendChild(el);
}
}
function search(q){
const nq = norm(q);
if(!nq) return [];
const hits = [];
for(const it of items){
if(norm(it.title).includes(nq)) hits.push(it);
}
return hits;
}
setTimeout(function(){
const input = document.getElementById('estQ');
const clearBtn = document.getElementById('estClear');
input.addEventListener('input', function(){
renderResults(search(this.value));
});
input.addEventListener('keydown', function(e){
if(e.key === 'Enter'){
const hits = search(this.value);
renderResults(hits);
if(hits.length){
try {
const mv = window[hits[0].markerVar];
if(mv && mv.getLatLng){
map.setView(mv.getLatLng(), Math.max(map.getZoom(), 17), {animate:true});
if(mv.openPopup) mv.openPopup();
}
} catch(e) {}
}
}
});
clearBtn.addEventListener('click', function(){
input.value = "";
document.getElementById('estResults').innerHTML = "";
document.getElementById('estCount').textContent = "";
});
}, 0);
})();
</script>
<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);
font-family: Arial, sans-serif;
">
تصميم وإعداد <b>نوف الناصر</b>
</div>
<div class="folium-map" id="map_44a9c94213a919a2823fa478ce8207fd" ></div>
</body>
<script>
var map_44a9c94213a919a2823fa478ce8207fd = L.map(
"map_44a9c94213a919a2823fa478ce8207fd",
{
center: [26.423069575365616, 50.03300776606812],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
L.control.scale().addTo(map_44a9c94213a919a2823fa478ce8207fd);
var tile_layer_00b9d225159067a1b4bce01b700c88e2 = 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_00b9d225159067a1b4bce01b700c88e2.addTo(map_44a9c94213a919a2823fa478ce8207fd);
var tile_layer_30937cf24f77b0edee1814beb00fa42c = 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_30937cf24f77b0edee1814beb00fa42c.addTo(map_44a9c94213a919a2823fa478ce8207fd);
var locate_control_c597f50a595e6c74f253590ac8b50116 = L.control.locate(
{"flyTo": true}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var marker_fc8812cc98d5a4cf2e5dad85eef0a631 = L.marker(
[26.42128942, 50.02435246],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_fd555875ef9d1853befcbfabd27b066f = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b1c1f9d266851e5b0fdd22d48a0c7e01 = L.popup({
"maxWidth": 320,
});
var html_a3955f7774e0282c4d059c91544b009e = $(`<div id="html_a3955f7774e0282c4d059c91544b009e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة اضواء سهيل للمواد الغذائية</b><br> السجل التجاري: 2050056375<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.42128942,50.02435246" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b1c1f9d266851e5b0fdd22d48a0c7e01.setContent(html_a3955f7774e0282c4d059c91544b009e);
marker_fc8812cc98d5a4cf2e5dad85eef0a631.bindPopup(popup_b1c1f9d266851e5b0fdd22d48a0c7e01)
;
marker_fc8812cc98d5a4cf2e5dad85eef0a631.bindTooltip(
`<div>
شركة اضواء سهيل للمواد الغذائية
</div>`,
{
"sticky": true,
}
);
marker_fc8812cc98d5a4cf2e5dad85eef0a631.setIcon(icon_fd555875ef9d1853befcbfabd27b066f);
var marker_dcafb8eb4f627510cdcee6e283ff685e = L.marker(
[26.42488329053771, 50.02393238246441],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_36f0324e1da38d067a852c820cf99a92 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6f33d642967a4b4458b31ef682823492 = L.popup({
"maxWidth": 320,
});
var html_74b1d803b67a223e5831c1de155b927c = $(`<div id="html_74b1d803b67a223e5831c1de155b927c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة اكنان تشييد وطاقة المحدودة شخص واحد</b><br> السجل التجاري: 2051248457<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.42488329053771,50.02393238246441" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6f33d642967a4b4458b31ef682823492.setContent(html_74b1d803b67a223e5831c1de155b927c);
marker_dcafb8eb4f627510cdcee6e283ff685e.bindPopup(popup_6f33d642967a4b4458b31ef682823492)
;
marker_dcafb8eb4f627510cdcee6e283ff685e.bindTooltip(
`<div>
شركة اكنان تشييد وطاقة المحدودة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_dcafb8eb4f627510cdcee6e283ff685e.setIcon(icon_36f0324e1da38d067a852c820cf99a92);
var marker_1073a8e2b5ca94691b46da484eb80ab8 = L.marker(
[26.42505136, 50.02383918],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_926f432c716c1ff4e6ac828b8cbf5af6 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4796dc54ae02bac2944abbc203aec42d = L.popup({
"maxWidth": 320,
});
var html_9b99f73086cd488d5ce07af9c6975c26 = $(`<div id="html_9b99f73086cd488d5ce07af9c6975c26" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة عاصمة الكنانة للمقاولات العامة شركة الشخص الواحد</b><br> السجل التجاري: 2050138718<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.42505136,50.02383918" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4796dc54ae02bac2944abbc203aec42d.setContent(html_9b99f73086cd488d5ce07af9c6975c26);
marker_1073a8e2b5ca94691b46da484eb80ab8.bindPopup(popup_4796dc54ae02bac2944abbc203aec42d)
;
marker_1073a8e2b5ca94691b46da484eb80ab8.bindTooltip(
`<div>
شركة عاصمة الكنانة للمقاولات العامة شركة الشخص الواحد
</div>`,
{
"sticky": true,
}
);
marker_1073a8e2b5ca94691b46da484eb80ab8.setIcon(icon_926f432c716c1ff4e6ac828b8cbf5af6);
var marker_8ef7b2c77c175e25c8814d5535961a81 = L.marker(
[26.42633975, 50.0235448299999],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_15c26becc7e2f1c5492b43b1594809bd = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1136885298ca40da14e3ccc832a7ced8 = L.popup({
"maxWidth": 320,
});
var html_76216e55b73706debd04fde68cf9eac6 = $(`<div id="html_76216e55b73706debd04fde68cf9eac6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة يونايتد جولد العربية للمقاولات شركة شخص واحد</b><br> السجل التجاري: 2050161917<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.42633975,50.0235448299999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1136885298ca40da14e3ccc832a7ced8.setContent(html_76216e55b73706debd04fde68cf9eac6);
marker_8ef7b2c77c175e25c8814d5535961a81.bindPopup(popup_1136885298ca40da14e3ccc832a7ced8)
;
marker_8ef7b2c77c175e25c8814d5535961a81.bindTooltip(
`<div>
شركة يونايتد جولد العربية للمقاولات شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_8ef7b2c77c175e25c8814d5535961a81.setIcon(icon_15c26becc7e2f1c5492b43b1594809bd);
var marker_be2bea95a8b2cb7e9576287e8881a62b = L.marker(
[26.42781885, 50.0235328699999],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_97d5cf4b14d9de0bbe93a19f6736c12a = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e965dac8aaf8eac85b4a0b2a1859c313 = L.popup({
"maxWidth": 320,
});
var html_319c1053109517ec90ca3448bec3df9f = $(`<div id="html_319c1053109517ec90ca3448bec3df9f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>مؤسسة حروة مشارف التجارية</b><br> السجل التجاري: 2050115625<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.42781885,50.0235328699999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e965dac8aaf8eac85b4a0b2a1859c313.setContent(html_319c1053109517ec90ca3448bec3df9f);
marker_be2bea95a8b2cb7e9576287e8881a62b.bindPopup(popup_e965dac8aaf8eac85b4a0b2a1859c313)
;
marker_be2bea95a8b2cb7e9576287e8881a62b.bindTooltip(
`<div>
مؤسسة حروة مشارف التجارية
</div>`,
{
"sticky": true,
}
);
marker_be2bea95a8b2cb7e9576287e8881a62b.setIcon(icon_97d5cf4b14d9de0bbe93a19f6736c12a);
var marker_b10e674f55996f81d3c7d4ec3b6c4f3f = L.marker(
[26.4284237399999, 50.02238174],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_d04747241e68624b7713acda5245288d = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8338aabda3cdff216448c49c915f560d = L.popup({
"maxWidth": 320,
});
var html_fea4a5f726ded481d83aba1e1c54283a = $(`<div id="html_fea4a5f726ded481d83aba1e1c54283a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>فرع شركة القمر العالمي للتجارة</b><br> السجل التجاري: 2050155158<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.4284237399999,50.02238174" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8338aabda3cdff216448c49c915f560d.setContent(html_fea4a5f726ded481d83aba1e1c54283a);
marker_b10e674f55996f81d3c7d4ec3b6c4f3f.bindPopup(popup_8338aabda3cdff216448c49c915f560d)
;
marker_b10e674f55996f81d3c7d4ec3b6c4f3f.bindTooltip(
`<div>
فرع شركة القمر العالمي للتجارة
</div>`,
{
"sticky": true,
}
);
marker_b10e674f55996f81d3c7d4ec3b6c4f3f.setIcon(icon_d04747241e68624b7713acda5245288d);
var marker_73473a34516ae657e5747bfe80e7cf60 = L.marker(
[26.43346578827111, 50.02028782796648],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_e8ec9a788d5b9cc5d4bca4df91587888 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1208417c2c916a89c0060acb0540b1d9 = L.popup({
"maxWidth": 320,
});
var html_166510cffbed31473322d37ee260be64 = $(`<div id="html_166510cffbed31473322d37ee260be64" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة ربيع النكهات الصناعية</b><br> السجل التجاري: 1009013391<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.43346578827111,50.02028782796648" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1208417c2c916a89c0060acb0540b1d9.setContent(html_166510cffbed31473322d37ee260be64);
marker_73473a34516ae657e5747bfe80e7cf60.bindPopup(popup_1208417c2c916a89c0060acb0540b1d9)
;
marker_73473a34516ae657e5747bfe80e7cf60.bindTooltip(
`<div>
شركة ربيع النكهات الصناعية
</div>`,
{
"sticky": true,
}
);
marker_73473a34516ae657e5747bfe80e7cf60.setIcon(icon_e8ec9a788d5b9cc5d4bca4df91587888);
var marker_8cbb3d8c90c404068f1ddc0039590705 = L.marker(
[26.43360605, 50.0233930899999],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_f47a258e0eea933e71729eb33fbff195 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b9bddb29a93bdde6bdf8fefad526cdb6 = L.popup({
"maxWidth": 320,
});
var html_7b233350f6f5fb9e96be289d6b429cda = $(`<div id="html_7b233350f6f5fb9e96be289d6b429cda" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة السيارة الذهبية لتأجير السيارات</b><br> السجل التجاري: 2050097098<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.43360605,50.0233930899999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b9bddb29a93bdde6bdf8fefad526cdb6.setContent(html_7b233350f6f5fb9e96be289d6b429cda);
marker_8cbb3d8c90c404068f1ddc0039590705.bindPopup(popup_b9bddb29a93bdde6bdf8fefad526cdb6)
;
marker_8cbb3d8c90c404068f1ddc0039590705.bindTooltip(
`<div>
شركة السيارة الذهبية لتأجير السيارات
</div>`,
{
"sticky": true,
}
);
marker_8cbb3d8c90c404068f1ddc0039590705.setIcon(icon_f47a258e0eea933e71729eb33fbff195);
var marker_e67f7ab5f8c7efa2dd3ecea235b52b69 = L.marker(
[26.4344685499999, 50.03599459],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_9c3d7822b9ef152e160651f173c5759e = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8bd4e8d05cc2b8f5da63621d6ad046b8 = L.popup({
"maxWidth": 320,
});
var html_3b5042f1730ebbb90911d70420cc3a1e = $(`<div id="html_3b5042f1730ebbb90911d70420cc3a1e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة رواد العصر لخدمات السيارات</b><br> السجل التجاري: 2050233672<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.4344685499999,50.03599459" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8bd4e8d05cc2b8f5da63621d6ad046b8.setContent(html_3b5042f1730ebbb90911d70420cc3a1e);
marker_e67f7ab5f8c7efa2dd3ecea235b52b69.bindPopup(popup_8bd4e8d05cc2b8f5da63621d6ad046b8)
;
marker_e67f7ab5f8c7efa2dd3ecea235b52b69.bindTooltip(
`<div>
شركة رواد العصر لخدمات السيارات
</div>`,
{
"sticky": true,
}
);
marker_e67f7ab5f8c7efa2dd3ecea235b52b69.setIcon(icon_9c3d7822b9ef152e160651f173c5759e);
var marker_bd955fb1e6f49874fab59bfdcbcee3b8 = L.marker(
[26.4347595867401, 50.0262303526683],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_d724d7dd59df7973e52828e6816a170f = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d76690a3c526886664dfe2f0ed4ff063 = L.popup({
"maxWidth": 320,
});
var html_4bce0033cc78e90aded1d2c051282554 = $(`<div id="html_4bce0033cc78e90aded1d2c051282554" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة بلادي المميزة التجارية</b><br> السجل التجاري: 2050140773<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.4347595867401,50.0262303526683" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d76690a3c526886664dfe2f0ed4ff063.setContent(html_4bce0033cc78e90aded1d2c051282554);
marker_bd955fb1e6f49874fab59bfdcbcee3b8.bindPopup(popup_d76690a3c526886664dfe2f0ed4ff063)
;
marker_bd955fb1e6f49874fab59bfdcbcee3b8.bindTooltip(
`<div>
شركة بلادي المميزة التجارية
</div>`,
{
"sticky": true,
}
);
marker_bd955fb1e6f49874fab59bfdcbcee3b8.setIcon(icon_d724d7dd59df7973e52828e6816a170f);
var marker_c382e3e8f520b4282cfbffd15c076a8c = L.marker(
[26.43508632, 50.02369362],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_56136597eb502007200101c305b0284a = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e90431d9a36f86674d1b5c863ceedaa9 = L.popup({
"maxWidth": 320,
});
var html_bf18aa00e91bff860f1016e6198716d2 = $(`<div id="html_bf18aa00e91bff860f1016e6198716d2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة بسمي للتجارة</b><br> السجل التجاري: 2050133084<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.43508632,50.02369362" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e90431d9a36f86674d1b5c863ceedaa9.setContent(html_bf18aa00e91bff860f1016e6198716d2);
marker_c382e3e8f520b4282cfbffd15c076a8c.bindPopup(popup_e90431d9a36f86674d1b5c863ceedaa9)
;
marker_c382e3e8f520b4282cfbffd15c076a8c.bindTooltip(
`<div>
شركة بسمي للتجارة
</div>`,
{
"sticky": true,
}
);
marker_c382e3e8f520b4282cfbffd15c076a8c.setIcon(icon_56136597eb502007200101c305b0284a);
var marker_5f102a32816ccec7ef2b6547e42f1931 = L.marker(
[26.43586321, 50.03469605],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_bf5f15e74ae17d2f4c0b30b4dd68548d = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ddd24c352b0814f7dd8be1f94f1b51bd = L.popup({
"maxWidth": 320,
});
var html_c6122a3505a2f0cd72c7a0321dcb78e5 = $(`<div id="html_c6122a3505a2f0cd72c7a0321dcb78e5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة بيارق النعمان التجارية شخص واحد</b><br> السجل التجاري: 2050026424<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.43586321,50.03469605" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ddd24c352b0814f7dd8be1f94f1b51bd.setContent(html_c6122a3505a2f0cd72c7a0321dcb78e5);
marker_5f102a32816ccec7ef2b6547e42f1931.bindPopup(popup_ddd24c352b0814f7dd8be1f94f1b51bd)
;
marker_5f102a32816ccec7ef2b6547e42f1931.bindTooltip(
`<div>
شركة بيارق النعمان التجارية شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_5f102a32816ccec7ef2b6547e42f1931.setIcon(icon_bf5f15e74ae17d2f4c0b30b4dd68548d);
var marker_7ee7eb1dc721c96399edbb99b4ecdf5e = L.marker(
[26.43810258903365, 50.03238729201257],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_ad983114e0aa7a5c044a61cb46856168 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_96e02bcaed83879593d6d917e8a5af92 = L.popup({
"maxWidth": 320,
});
var html_a57e1a16afbb2a0bf43630dce1a49beb = $(`<div id="html_a57e1a16afbb2a0bf43630dce1a49beb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الالات المتقدمة للخدمات الصناعية</b><br> السجل التجاري: 2050192850<br> المنطقة: الدمام<br> الحارة: النور<br> <a href="https://www.google.com/maps?q=26.43810258903365,50.03238729201257" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_96e02bcaed83879593d6d917e8a5af92.setContent(html_a57e1a16afbb2a0bf43630dce1a49beb);
marker_7ee7eb1dc721c96399edbb99b4ecdf5e.bindPopup(popup_96e02bcaed83879593d6d917e8a5af92)
;
marker_7ee7eb1dc721c96399edbb99b4ecdf5e.bindTooltip(
`<div>
شركة الالات المتقدمة للخدمات الصناعية
</div>`,
{
"sticky": true,
}
);
marker_7ee7eb1dc721c96399edbb99b4ecdf5e.setIcon(icon_ad983114e0aa7a5c044a61cb46856168);
var marker_d64974993909d55f002ec61abb286425 = L.marker(
[26.40705127, 50.0356074999999],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_c47c4e4242da8b6504044f7b1f48308f = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b212aee232d62eeab17204cf95b1d1d3 = L.popup({
"maxWidth": 320,
});
var html_238f83579a8d080c81ea12c622d0eeb7 = $(`<div id="html_238f83579a8d080c81ea12c622d0eeb7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الأهلة للأدوية شركة شخص واحد</b><br> السجل التجاري: 2050121993<br> المنطقة: الدمام<br> الحارة: بدر<br> <a href="https://www.google.com/maps?q=26.40705127,50.0356074999999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b212aee232d62eeab17204cf95b1d1d3.setContent(html_238f83579a8d080c81ea12c622d0eeb7);
marker_d64974993909d55f002ec61abb286425.bindPopup(popup_b212aee232d62eeab17204cf95b1d1d3)
;
marker_d64974993909d55f002ec61abb286425.bindTooltip(
`<div>
شركة الأهلة للأدوية شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_d64974993909d55f002ec61abb286425.setIcon(icon_c47c4e4242da8b6504044f7b1f48308f);
var marker_110549bee95c8bca6fee6cc0c4ad7c83 = L.marker(
[26.40873815, 50.03440235],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_46dfb3e431947625cb305e95406dcf9e = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8463fca23e14297d639f89cfca2cd294 = L.popup({
"maxWidth": 320,
});
var html_70c575e2170563c5d1b011a6201e92cd = $(`<div id="html_70c575e2170563c5d1b011a6201e92cd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة مطعم شباب البخاري لتقديم الوجبات</b><br> السجل التجاري: 2050081375<br> المنطقة: الدمام<br> الحارة: بدر<br> <a href="https://www.google.com/maps?q=26.40873815,50.03440235" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8463fca23e14297d639f89cfca2cd294.setContent(html_70c575e2170563c5d1b011a6201e92cd);
marker_110549bee95c8bca6fee6cc0c4ad7c83.bindPopup(popup_8463fca23e14297d639f89cfca2cd294)
;
marker_110549bee95c8bca6fee6cc0c4ad7c83.bindTooltip(
`<div>
شركة مطعم شباب البخاري لتقديم الوجبات
</div>`,
{
"sticky": true,
}
);
marker_110549bee95c8bca6fee6cc0c4ad7c83.setIcon(icon_46dfb3e431947625cb305e95406dcf9e);
var marker_6e0dcdf2357fb43cd59b60390f605694 = L.marker(
[26.4115526699999, 50.02604025],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_8155510b17f3382653cafbd3b0bfac98 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4c77af68f7d339fa35e0f85600a79aeb = L.popup({
"maxWidth": 320,
});
var html_84aba81859122fc2a4a9d1514e8d9f69 = $(`<div id="html_84aba81859122fc2a4a9d1514e8d9f69" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة شاهين اليمن التجارية</b><br> السجل التجاري: 2050115343<br> المنطقة: الدمام<br> الحارة: بدر<br> <a href="https://www.google.com/maps?q=26.4115526699999,50.02604025" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4c77af68f7d339fa35e0f85600a79aeb.setContent(html_84aba81859122fc2a4a9d1514e8d9f69);
marker_6e0dcdf2357fb43cd59b60390f605694.bindPopup(popup_4c77af68f7d339fa35e0f85600a79aeb)
;
marker_6e0dcdf2357fb43cd59b60390f605694.bindTooltip(
`<div>
شركة شاهين اليمن التجارية
</div>`,
{
"sticky": true,
}
);
marker_6e0dcdf2357fb43cd59b60390f605694.setIcon(icon_8155510b17f3382653cafbd3b0bfac98);
var marker_c6425f486a4d624b1a31d22a45a81503 = L.marker(
[26.41178889419053, 50.01656477339566],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_7fc8d3b5d3e0fd63dc0ac34477870296 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5268234cbcc34c467c85d5cdfba592d2 = L.popup({
"maxWidth": 320,
});
var html_0a74daec33d192a87b974883e1c1acc4 = $(`<div id="html_0a74daec33d192a87b974883e1c1acc4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة فخامة التفصيل التجارية</b><br> السجل التجاري: 2050191442<br> المنطقة: الدمام<br> الحارة: بدر<br> <a href="https://www.google.com/maps?q=26.41178889419053,50.01656477339566" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5268234cbcc34c467c85d5cdfba592d2.setContent(html_0a74daec33d192a87b974883e1c1acc4);
marker_c6425f486a4d624b1a31d22a45a81503.bindPopup(popup_5268234cbcc34c467c85d5cdfba592d2)
;
marker_c6425f486a4d624b1a31d22a45a81503.bindTooltip(
`<div>
شركة فخامة التفصيل التجارية
</div>`,
{
"sticky": true,
}
);
marker_c6425f486a4d624b1a31d22a45a81503.setIcon(icon_7fc8d3b5d3e0fd63dc0ac34477870296);
var marker_14b03391ec13cd4d15c273a82e0e26bd = L.marker(
[26.41256625, 50.03178452],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_79d650cba33b750f29c92e11ebc2bf48 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_20bd5fd9a771c4afd37174bf5ba4cb24 = L.popup({
"maxWidth": 320,
});
var html_3b377d1ecf73365dd01e4097638ca50b = $(`<div id="html_3b377d1ecf73365dd01e4097638ca50b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة نفوذ التبريد التجارية شركة شخص واحد</b><br> السجل التجاري: 2050241103<br> المنطقة: الدمام<br> الحارة: بدر<br> <a href="https://www.google.com/maps?q=26.41256625,50.03178452" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_20bd5fd9a771c4afd37174bf5ba4cb24.setContent(html_3b377d1ecf73365dd01e4097638ca50b);
marker_14b03391ec13cd4d15c273a82e0e26bd.bindPopup(popup_20bd5fd9a771c4afd37174bf5ba4cb24)
;
marker_14b03391ec13cd4d15c273a82e0e26bd.bindTooltip(
`<div>
شركة نفوذ التبريد التجارية شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_14b03391ec13cd4d15c273a82e0e26bd.setIcon(icon_79d650cba33b750f29c92e11ebc2bf48);
var marker_8a65c8f829bebf1a852f8e3350b2f08a = L.marker(
[26.41445848, 50.0223063999999],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_c2382621f25859110dda91ea99b8fc63 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_523379b1c2e075a9b7419cd25eb26f3c = L.popup({
"maxWidth": 320,
});
var html_f28cdb5f1da614cf9e3e476883436590 = $(`<div id="html_f28cdb5f1da614cf9e3e476883436590" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>حلاق الأبداع الذهبي للحلاقة الرجالية</b><br> السجل التجاري: 2050125538<br> المنطقة: الدمام<br> الحارة: بدر<br> <a href="https://www.google.com/maps?q=26.41445848,50.0223063999999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_523379b1c2e075a9b7419cd25eb26f3c.setContent(html_f28cdb5f1da614cf9e3e476883436590);
marker_8a65c8f829bebf1a852f8e3350b2f08a.bindPopup(popup_523379b1c2e075a9b7419cd25eb26f3c)
;
marker_8a65c8f829bebf1a852f8e3350b2f08a.bindTooltip(
`<div>
حلاق الأبداع الذهبي للحلاقة الرجالية
</div>`,
{
"sticky": true,
}
);
marker_8a65c8f829bebf1a852f8e3350b2f08a.setIcon(icon_c2382621f25859110dda91ea99b8fc63);
var marker_1dbdaf1b12765ac4a0c3491706ad469c = L.marker(
[26.41526588, 50.0301222399999],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_ac516ba3a1ffcb63d7c208cb1f62f3e5 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6bb2e88864fcb88155f6d03644db68ee = L.popup({
"maxWidth": 320,
});
var html_cfa433800cb5bfca8ecbf2aabbd12f37 = $(`<div id="html_cfa433800cb5bfca8ecbf2aabbd12f37" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركه زين و سميرة للتجارة</b><br> السجل التجاري: 2050081057<br> المنطقة: الدمام<br> الحارة: بدر<br> <a href="https://www.google.com/maps?q=26.41526588,50.0301222399999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6bb2e88864fcb88155f6d03644db68ee.setContent(html_cfa433800cb5bfca8ecbf2aabbd12f37);
marker_1dbdaf1b12765ac4a0c3491706ad469c.bindPopup(popup_6bb2e88864fcb88155f6d03644db68ee)
;
marker_1dbdaf1b12765ac4a0c3491706ad469c.bindTooltip(
`<div>
شركه زين و سميرة للتجارة
</div>`,
{
"sticky": true,
}
);
marker_1dbdaf1b12765ac4a0c3491706ad469c.setIcon(icon_ac516ba3a1ffcb63d7c208cb1f62f3e5);
var marker_f88a08389012418ee04a6a56629c7218 = L.marker(
[26.4190895634904, 50.0250833664874],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_f55ca829de25a89259bcdb100a1c9e3c = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3510799d35ae3bc23e98924d0aecae9e = L.popup({
"maxWidth": 320,
});
var html_162713eadecad25a08ee63d0662ac014 = $(`<div id="html_162713eadecad25a08ee63d0662ac014" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة صمام الخير التجارية</b><br> السجل التجاري: 2051223781<br> المنطقة: الدمام<br> الحارة: بدر<br> <a href="https://www.google.com/maps?q=26.4190895634904,50.0250833664874" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3510799d35ae3bc23e98924d0aecae9e.setContent(html_162713eadecad25a08ee63d0662ac014);
marker_f88a08389012418ee04a6a56629c7218.bindPopup(popup_3510799d35ae3bc23e98924d0aecae9e)
;
marker_f88a08389012418ee04a6a56629c7218.bindTooltip(
`<div>
شركة صمام الخير التجارية
</div>`,
{
"sticky": true,
}
);
marker_f88a08389012418ee04a6a56629c7218.setIcon(icon_f55ca829de25a89259bcdb100a1c9e3c);
var marker_3d1867b90dafdc76a2be763a47d9ce70 = L.marker(
[26.4040815663834, 50.0540586206208],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_53cb3578322ed95148242004e8b85b1a = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_18de4a52b169475996820f8e46b003a6 = L.popup({
"maxWidth": 320,
});
var html_7e2ffdd313c06cafb98fa9c45370a6d8 = $(`<div id="html_7e2ffdd313c06cafb98fa9c45370a6d8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>مؤسسة موج الشرق للتجارة</b><br> السجل التجاري: 2050090033<br> المنطقة: الدمام<br> الحارة: أحد<br> <a href="https://www.google.com/maps?q=26.4040815663834,50.0540586206208" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_18de4a52b169475996820f8e46b003a6.setContent(html_7e2ffdd313c06cafb98fa9c45370a6d8);
marker_3d1867b90dafdc76a2be763a47d9ce70.bindPopup(popup_18de4a52b169475996820f8e46b003a6)
;
marker_3d1867b90dafdc76a2be763a47d9ce70.bindTooltip(
`<div>
مؤسسة موج الشرق للتجارة
</div>`,
{
"sticky": true,
}
);
marker_3d1867b90dafdc76a2be763a47d9ce70.setIcon(icon_53cb3578322ed95148242004e8b85b1a);
var marker_37a9b9a57fe42af7450f0fb5cfb613b4 = L.marker(
[26.4074512199999, 50.0589966599999],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_54456769296ff8e709e5f641bed7a101 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6dd03e78a626a5d7721192231fa52cc3 = L.popup({
"maxWidth": 320,
});
var html_0dbbd67610f845aa662a257fe98209d3 = $(`<div id="html_0dbbd67610f845aa662a257fe98209d3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة شبوة للتجارة</b><br> السجل التجاري: 2050037506<br> المنطقة: الدمام<br> الحارة: أحد<br> <a href="https://www.google.com/maps?q=26.4074512199999,50.0589966599999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6dd03e78a626a5d7721192231fa52cc3.setContent(html_0dbbd67610f845aa662a257fe98209d3);
marker_37a9b9a57fe42af7450f0fb5cfb613b4.bindPopup(popup_6dd03e78a626a5d7721192231fa52cc3)
;
marker_37a9b9a57fe42af7450f0fb5cfb613b4.bindTooltip(
`<div>
شركة شبوة للتجارة
</div>`,
{
"sticky": true,
}
);
marker_37a9b9a57fe42af7450f0fb5cfb613b4.setIcon(icon_54456769296ff8e709e5f641bed7a101);
var marker_338b9a44121da31923b571eff2727bc6 = L.marker(
[26.4156817, 50.03048958],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_993a9cc1ada1104c71a69372e0b415b6 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d29882fd0cbad94fcb6d0e8cf1953854 = L.popup({
"maxWidth": 320,
});
var html_230c0f9423e6732c13aae082d5eb0fe1 = $(`<div id="html_230c0f9423e6732c13aae082d5eb0fe1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة روائع الاختيار للتجارة</b><br> السجل التجاري: 2050205087<br> المنطقة: الدمام<br> الحارة: أحد<br> <a href="https://www.google.com/maps?q=26.4156817,50.03048958" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d29882fd0cbad94fcb6d0e8cf1953854.setContent(html_230c0f9423e6732c13aae082d5eb0fe1);
marker_338b9a44121da31923b571eff2727bc6.bindPopup(popup_d29882fd0cbad94fcb6d0e8cf1953854)
;
marker_338b9a44121da31923b571eff2727bc6.bindTooltip(
`<div>
شركة روائع الاختيار للتجارة
</div>`,
{
"sticky": true,
}
);
marker_338b9a44121da31923b571eff2727bc6.setIcon(icon_993a9cc1ada1104c71a69372e0b415b6);
var marker_f1053d39bd1db8633acf89b3a9a6aa6f = L.marker(
[26.4158961599999, 50.03012755],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_4e5b0cf73485a1381521060b907bd422 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6d66b8c1cd116df1744a235f0a1c7beb = L.popup({
"maxWidth": 320,
});
var html_a86b6e4b4b84b83df5f45108d13b6e2f = $(`<div id="html_a86b6e4b4b84b83df5f45108d13b6e2f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة نجمة الشرقية لالعاب الأطفال</b><br> السجل التجاري: 2050120587<br> المنطقة: الدمام<br> الحارة: أحد<br> <a href="https://www.google.com/maps?q=26.4158961599999,50.03012755" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6d66b8c1cd116df1744a235f0a1c7beb.setContent(html_a86b6e4b4b84b83df5f45108d13b6e2f);
marker_f1053d39bd1db8633acf89b3a9a6aa6f.bindPopup(popup_6d66b8c1cd116df1744a235f0a1c7beb)
;
marker_f1053d39bd1db8633acf89b3a9a6aa6f.bindTooltip(
`<div>
شركة نجمة الشرقية لالعاب الأطفال
</div>`,
{
"sticky": true,
}
);
marker_f1053d39bd1db8633acf89b3a9a6aa6f.setIcon(icon_4e5b0cf73485a1381521060b907bd422);
var marker_ce935aa9e45588735898c34efc31fd81 = L.marker(
[26.42087853, 50.0268321599999],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_d7fefc409c12d5b14d401e4b373a4009 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a22ad0a16aa27c73f7691a9db504e62c = L.popup({
"maxWidth": 320,
});
var html_0ab0e20300968d0e7225961c5018d9e9 = $(`<div id="html_0ab0e20300968d0e7225961c5018d9e9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة عصر الفخامة للملابس</b><br> السجل التجاري: 2050134190<br> المنطقة: الدمام<br> الحارة: أحد<br> <a href="https://www.google.com/maps?q=26.42087853,50.0268321599999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a22ad0a16aa27c73f7691a9db504e62c.setContent(html_0ab0e20300968d0e7225961c5018d9e9);
marker_ce935aa9e45588735898c34efc31fd81.bindPopup(popup_a22ad0a16aa27c73f7691a9db504e62c)
;
marker_ce935aa9e45588735898c34efc31fd81.bindTooltip(
`<div>
شركة عصر الفخامة للملابس
</div>`,
{
"sticky": true,
}
);
marker_ce935aa9e45588735898c34efc31fd81.setIcon(icon_d7fefc409c12d5b14d401e4b373a4009);
var marker_db68bed048c464d2efc8149198154c23 = L.marker(
[26.42183774078678, 50.02786766220862],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_556ed318a74232960f3969c0d5ae9d2b = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a38739ef5aa828f482e834f779d19708 = L.popup({
"maxWidth": 320,
});
var html_9d9523586d68694247b48dd15b3a3429 = $(`<div id="html_9d9523586d68694247b48dd15b3a3429" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة هامور الخليج المحدودة</b><br> السجل التجاري: 2511141357<br> المنطقة: الدمام<br> الحارة: أحد<br> <a href="https://www.google.com/maps?q=26.42183774078678,50.02786766220862" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a38739ef5aa828f482e834f779d19708.setContent(html_9d9523586d68694247b48dd15b3a3429);
marker_db68bed048c464d2efc8149198154c23.bindPopup(popup_a38739ef5aa828f482e834f779d19708)
;
marker_db68bed048c464d2efc8149198154c23.bindTooltip(
`<div>
شركة هامور الخليج المحدودة
</div>`,
{
"sticky": true,
}
);
marker_db68bed048c464d2efc8149198154c23.setIcon(icon_556ed318a74232960f3969c0d5ae9d2b);
var marker_9e4eaaf35958526fe551e0b3d27d49dc = L.marker(
[26.42497208825761, 50.04330178722739],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_0ebeddec49c4f981cffd684f6f807ad6 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_13a0d9074f2c7936ac7434534314883c = L.popup({
"maxWidth": 320,
});
var html_dfd127f44ddac3ea04697799a3ac450b = $(`<div id="html_dfd127f44ddac3ea04697799a3ac450b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة المساندة الذهبية للمقاولات</b><br> السجل التجاري: 2050196965<br> المنطقة: الدمام<br> الحارة: أحد<br> <a href="https://www.google.com/maps?q=26.42497208825761,50.04330178722739" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_13a0d9074f2c7936ac7434534314883c.setContent(html_dfd127f44ddac3ea04697799a3ac450b);
marker_9e4eaaf35958526fe551e0b3d27d49dc.bindPopup(popup_13a0d9074f2c7936ac7434534314883c)
;
marker_9e4eaaf35958526fe551e0b3d27d49dc.bindTooltip(
`<div>
شركة المساندة الذهبية للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_9e4eaaf35958526fe551e0b3d27d49dc.setIcon(icon_0ebeddec49c4f981cffd684f6f807ad6);
var marker_0d590a8e81fb5667b836bfa694f59c22 = L.marker(
[26.46831139, 50.0443100299999],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_50edc49388fdd0ae262729ce4f78d72d = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8e1889fd60c38dc0e02a2a1495cbb69c = L.popup({
"maxWidth": 320,
});
var html_ca0961dd0d273a37ec8df344cab51fac = $(`<div id="html_ca0961dd0d273a37ec8df344cab51fac" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة هياكل القمة العالمية للمقاولات العامة</b><br> السجل التجاري: 2050035305<br> المنطقة: الدمام<br> الحارة: الدانة<br> <a href="https://www.google.com/maps?q=26.46831139,50.0443100299999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8e1889fd60c38dc0e02a2a1495cbb69c.setContent(html_ca0961dd0d273a37ec8df344cab51fac);
marker_0d590a8e81fb5667b836bfa694f59c22.bindPopup(popup_8e1889fd60c38dc0e02a2a1495cbb69c)
;
marker_0d590a8e81fb5667b836bfa694f59c22.bindTooltip(
`<div>
شركة هياكل القمة العالمية للمقاولات العامة
</div>`,
{
"sticky": true,
}
);
marker_0d590a8e81fb5667b836bfa694f59c22.setIcon(icon_50edc49388fdd0ae262729ce4f78d72d);
var marker_6b913648208ceb84638e53927c877e3d = L.marker(
[26.41796346349863, 50.05915540270507],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_8a1f94adb8a8b183ed626745feafa551 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ed7c7305b1bbcecc882adc66183b6db6 = L.popup({
"maxWidth": 320,
});
var html_e7d727c0f3ecdecaf59a949a7d3066f9 = $(`<div id="html_e7d727c0f3ecdecaf59a949a7d3066f9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة حلول الخطوط للأنابيب</b><br> السجل التجاري: 2052104388<br> المنطقة: الدمام<br> الحارة: الضباب<br> <a href="https://www.google.com/maps?q=26.41796346349863,50.05915540270507" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ed7c7305b1bbcecc882adc66183b6db6.setContent(html_e7d727c0f3ecdecaf59a949a7d3066f9);
marker_6b913648208ceb84638e53927c877e3d.bindPopup(popup_ed7c7305b1bbcecc882adc66183b6db6)
;
marker_6b913648208ceb84638e53927c877e3d.bindTooltip(
`<div>
شركة حلول الخطوط للأنابيب
</div>`,
{
"sticky": true,
}
);
marker_6b913648208ceb84638e53927c877e3d.setIcon(icon_8a1f94adb8a8b183ed626745feafa551);
var marker_c5b0c33a15f21add3b33e1fe159b9b1d = L.marker(
[26.41876361051045, 50.061623376424],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_492e623b9ad76115d29fce1d20fa21aa = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_db38a21f4c994739db76c9cf93f8a970 = L.popup({
"maxWidth": 320,
});
var html_48f57abcdb52975111567ae99416c545 = $(`<div id="html_48f57abcdb52975111567ae99416c545" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة البحر الأحمر للمقاولات</b><br> السجل التجاري: 2051005886<br> المنطقة: الدمام<br> الحارة: الضباب<br> <a href="https://www.google.com/maps?q=26.41876361051045,50.061623376424" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_db38a21f4c994739db76c9cf93f8a970.setContent(html_48f57abcdb52975111567ae99416c545);
marker_c5b0c33a15f21add3b33e1fe159b9b1d.bindPopup(popup_db38a21f4c994739db76c9cf93f8a970)
;
marker_c5b0c33a15f21add3b33e1fe159b9b1d.bindTooltip(
`<div>
شركة البحر الأحمر للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_c5b0c33a15f21add3b33e1fe159b9b1d.setIcon(icon_492e623b9ad76115d29fce1d20fa21aa);
var marker_c9af2b2c3da16623b9299e0be0c43048 = L.marker(
[26.4227192799999, 50.059308],
{
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
var icon_d950d4b7148a2c1996bcf35dbd50717d = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7aeef2caeb10d02f7e01278e2e6afec5 = L.popup({
"maxWidth": 320,
});
var html_78df2fb44ed06bb8e4e490ea7bf4a166 = $(`<div id="html_78df2fb44ed06bb8e4e490ea7bf4a166" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة المندرية للمقاولات</b><br> السجل التجاري: 2050096244<br> المنطقة: الدمام<br> الحارة: الضباب<br> <a href="https://www.google.com/maps?q=26.4227192799999,50.059308" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7aeef2caeb10d02f7e01278e2e6afec5.setContent(html_78df2fb44ed06bb8e4e490ea7bf4a166);
marker_c9af2b2c3da16623b9299e0be0c43048.bindPopup(popup_7aeef2caeb10d02f7e01278e2e6afec5)
;
marker_c9af2b2c3da16623b9299e0be0c43048.bindTooltip(
`<div>
شركة المندرية للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_c9af2b2c3da16623b9299e0be0c43048.setIcon(icon_d950d4b7148a2c1996bcf35dbd50717d);
map_44a9c94213a919a2823fa478ce8207fd.fitBounds(
[[26.42128942, 50.02435246], [26.42488329053771, 50.02393238246441], [26.42505136, 50.02383918], [26.42633975, 50.0235448299999], [26.42781885, 50.0235328699999], [26.4284237399999, 50.02238174], [26.43346578827111, 50.02028782796648], [26.43360605, 50.0233930899999], [26.4344685499999, 50.03599459], [26.4347595867401, 50.0262303526683], [26.43508632, 50.02369362], [26.43586321, 50.03469605], [26.43810258903365, 50.03238729201257], [26.40705127, 50.0356074999999], [26.40873815, 50.03440235], [26.4115526699999, 50.02604025], [26.41178889419053, 50.01656477339566], [26.41256625, 50.03178452], [26.41445848, 50.0223063999999], [26.41526588, 50.0301222399999], [26.4190895634904, 50.0250833664874], [26.4040815663834, 50.0540586206208], [26.4074512199999, 50.0589966599999], [26.4156817, 50.03048958], [26.4158961599999, 50.03012755], [26.42087853, 50.0268321599999], [26.42183774078678, 50.02786766220862], [26.42497208825761, 50.04330178722739], [26.46831139, 50.0443100299999], [26.41796346349863, 50.05915540270507], [26.41876361051045, 50.061623376424], [26.4227192799999, 50.059308]],
{"padding": [30, 30]}
);
var layer_control_385a890a4f5dea120eec908b7331625a_layers = {
base_layers : {
"\u062e\u0631\u064a\u0637\u0629 \u0627\u0644\u0634\u0627\u0631\u0639" : tile_layer_00b9d225159067a1b4bce01b700c88e2,
"\u0623\u0642\u0645\u0627\u0631 \u0635\u0646\u0627\u0639\u064a\u0629 (Esri)" : tile_layer_30937cf24f77b0edee1814beb00fa42c,
},
overlays : {
},
};
let layer_control_385a890a4f5dea120eec908b7331625a = L.control.layers(
layer_control_385a890a4f5dea120eec908b7331625a_layers.base_layers,
layer_control_385a890a4f5dea120eec908b7331625a_layers.overlays,
{
"position": "topright",
"collapsed": false,
"autoZIndex": true,
}
).addTo(map_44a9c94213a919a2823fa478ce8207fd);
</script>
</html> |