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 |
<!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_ae5e320dc4e965c6b32e7a24c2573230 {
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">زهره علي بن حسن الجاسم - 9</span>
<span class="toggle" id="hideStats">إخفاء</span>
</div>
<div class="stats-body" id="statsBody">
<b>عدد المواقع:</b> 25<br>
<b>عدد الحارات:</b> 2<br>
<b>الأكثر:</b> <b>الأثير</b>: 21 | <b>الضباب</b>: 4
<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:#212529;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;">(21)</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;">(4)</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_ae5e320dc4e965c6b32e7a24c2573230;
const items = [{"title": "شركة مسكوا المحدودة", "lat": 26.42803126835356, "lon": 50.0440512150338, "markerVar": "marker_cd42c24aafc522a87ca62d92d0e73f64"}, {"title": "شركة بصمة جاما المحدودة", "lat": 26.4307221199999, "lon": 50.04237313, "markerVar": "marker_e2ac61b35346a5f814c9b2bf3b19f573"}, {"title": "شركة الثريا الدولية لمواد البناء المحدودة", "lat": 26.43142260028988, "lon": 50.05435628016571, "markerVar": "marker_a0c50313e0c826965273c1ced45763a7"}, {"title": "شركة صدف الولائم لتقديم الوجبات", "lat": 26.4323957999999, "lon": 50.04443904, "markerVar": "marker_a96582891adce408ca06b5c30ba0360f"}, {"title": "شركة انسبيكتيفاي اند انجينيرنغ سيرفيسز المحدودة", "lat": 26.42506146787132, "lon": 50.06027705335249, "markerVar": "marker_a05c9c0c9b7ec8c913d462caf9c46a82"}, {"title": "شركة قمر الخليج للمقاولات العامة", "lat": 26.42512327, "lon": 50.06039063, "markerVar": "marker_46f875ed91fbca6ebcb07e516c5b385d"}, {"title": "شركة أرتسين ماشينري سيرفيسز للمقاولات", "lat": 26.4251410514394, "lon": 50.06042459048331, "markerVar": "marker_2e01eb14d03eb478b2d703307b106077"}, {"title": "شركة ايسوف العالمية للمقاولات", "lat": 26.42520417800219, "lon": 50.06050027906895, "markerVar": "marker_e3dcb87f4ff81ab1823e6e7212ccd9be"}, {"title": "شركة مفضل العربية للمقاولات شخص واحد", "lat": 26.4257187, "lon": 50.0611280199999, "markerVar": "marker_9069f6881083111fe1f76e85bb577d5b"}, {"title": "شركة السوائل الميكانيكية التجارية", "lat": 26.42659779544694, "lon": 50.06823202885224, "markerVar": "marker_d44b03f4a0ab2897bf878cfffb2e7d98"}, {"title": "شركة الاشكال العصرية المحدودة", "lat": 26.426709067686, "lon": 50.06658028806989, "markerVar": "marker_1be03cc0da8eca775404b295cf9db8a9"}, {"title": "شركة الاعمال المتقدمة و التنمية التجارية", "lat": 26.4273124446126, "lon": 50.0645057818219, "markerVar": "marker_1aa73a3055c15a45f443a66aaebbd4a2"}, {"title": "شركة فكرة أسطورة للتجارة شركة شخص واحد", "lat": 26.4276064694184, "lon": 50.0666647179997, "markerVar": "marker_0b038205bd1f24e23dabdaaded3ab515"}, {"title": "شركة درة الكمال للأقمشة الراقية", "lat": 26.42797202987307, "lon": 50.06411589682102, "markerVar": "marker_1f5e4dbe9b40848c1f018f9f04bce8f1"}, {"title": "شركة مفتاح الشرق التجارية", "lat": 26.42864643, "lon": 50.0682813, "markerVar": "marker_6ff644084fdf4fb779665c8bebec6cc6"}, {"title": "شركة دنيا النواعم للاثاث", "lat": 26.42900114, "lon": 50.06820916, "markerVar": "marker_845b2fd82c28749d2a09503349b5d156"}, {"title": "شركة البيت الحديث للتجارة", "lat": 26.4292179199999, "lon": 50.06679089, "markerVar": "marker_7993d8c4c8415e033e239641b50213eb"}, {"title": "شركة خدمات اصدقاء البركة المحدودة", "lat": 26.42975152649565, "lon": 50.0635590031743, "markerVar": "marker_78ca270d1842c35491238b4b9676ced6"}, {"title": "شركة سرايا العز لتنجيد الاثاث", "lat": 26.4297602332616, "lon": 50.06376251578331, "markerVar": "marker_222ec435d12fbd4935872e78c368c5e1"}, {"title": "شركة ايه ار اس انترناشنل شركة الشخص الواحد", "lat": 26.43448142836402, "lon": 50.0559134801516, "markerVar": "marker_ebfce93d52918e0096e4c7128a2e770f"}, {"title": "شركة اقبال مرحبة للمقاولات المحدودة شركة شخص واحد", "lat": 26.43563866819325, "lon": 50.05862981223696, "markerVar": "marker_30415ca4242b71c8df4becaca6d41427"}, {"title": "شركة تجهيز الأسطح للالات والمعدات شخص واحد", "lat": 26.43604022350086, "lon": 50.0639490811683, "markerVar": "marker_87ce60d6a62a1532f018f2fd891e0ee9"}, {"title": "شركة عالم البلاد للتجارة شركة شخص واحد", "lat": 26.43688955, "lon": 50.06533248, "markerVar": "marker_fd9ef302494de9e4b0911cb6224c582c"}, {"title": "شركة سفح وطلاء المعادن للمقاولات العامة", "lat": 26.4372551999999, "lon": 50.0649156899999, "markerVar": "marker_858dbef8c71d2136adf32b629a035dbb"}, {"title": "شركة علي محمد الحميدي للتجارة", "lat": 26.4375537399999, "lon": 50.06463591, "markerVar": "marker_faad7665363508f1b92f3d009864b7be"}];
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_ae5e320dc4e965c6b32e7a24c2573230" ></div>
</body>
<script>
var map_ae5e320dc4e965c6b32e7a24c2573230 = L.map(
"map_ae5e320dc4e965c6b32e7a24c2573230",
{
center: [26.42997017291233, 50.06088073096733],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
L.control.scale().addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var tile_layer_32800f685cd6453d237d20f228f70ced = 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_32800f685cd6453d237d20f228f70ced.addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var tile_layer_12087c08b52d5335cf05cca9c776583f = 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_12087c08b52d5335cf05cca9c776583f.addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var locate_control_f96bf21793d52dda55f07f25920e2958 = L.control.locate(
{"flyTo": true}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var marker_cd42c24aafc522a87ca62d92d0e73f64 = L.marker(
[26.42803126835356, 50.0440512150338],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_bfff9f6d63680b38aced440eeeb25e47 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b1249f81dd1335167a0c292649bd723c = L.popup({
"maxWidth": 320,
});
var html_05a4eaf61cbeb8f157af036baed28cc8 = $(`<div id="html_05a4eaf61cbeb8f157af036baed28cc8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة مسكوا المحدودة</b><br> السجل التجاري: 2053127427<br> المنطقة: الدمام<br> الحارة: الضباب<br> <a href="https://www.google.com/maps?q=26.42803126835356,50.0440512150338" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b1249f81dd1335167a0c292649bd723c.setContent(html_05a4eaf61cbeb8f157af036baed28cc8);
marker_cd42c24aafc522a87ca62d92d0e73f64.bindPopup(popup_b1249f81dd1335167a0c292649bd723c)
;
marker_cd42c24aafc522a87ca62d92d0e73f64.bindTooltip(
`<div>
شركة مسكوا المحدودة
</div>`,
{
"sticky": true,
}
);
marker_cd42c24aafc522a87ca62d92d0e73f64.setIcon(icon_bfff9f6d63680b38aced440eeeb25e47);
var marker_e2ac61b35346a5f814c9b2bf3b19f573 = L.marker(
[26.4307221199999, 50.04237313],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_3e98388d7f40885d3b1aee1df15db5b0 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_67a45677e06d368ba3f1ad3e22f0bf80 = L.popup({
"maxWidth": 320,
});
var html_334cb7c75d1864755aa54226418cb84f = $(`<div id="html_334cb7c75d1864755aa54226418cb84f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة بصمة جاما المحدودة</b><br> السجل التجاري: 2050164407<br> المنطقة: الدمام<br> الحارة: الضباب<br> <a href="https://www.google.com/maps?q=26.4307221199999,50.04237313" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_67a45677e06d368ba3f1ad3e22f0bf80.setContent(html_334cb7c75d1864755aa54226418cb84f);
marker_e2ac61b35346a5f814c9b2bf3b19f573.bindPopup(popup_67a45677e06d368ba3f1ad3e22f0bf80)
;
marker_e2ac61b35346a5f814c9b2bf3b19f573.bindTooltip(
`<div>
شركة بصمة جاما المحدودة
</div>`,
{
"sticky": true,
}
);
marker_e2ac61b35346a5f814c9b2bf3b19f573.setIcon(icon_3e98388d7f40885d3b1aee1df15db5b0);
var marker_a0c50313e0c826965273c1ced45763a7 = L.marker(
[26.43142260028988, 50.05435628016571],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_e758ac36adc87af6845990eacc5e0fe0 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4304288958eeb3e519ce2a1179101a17 = L.popup({
"maxWidth": 320,
});
var html_939420922517dd238f751552ff577bc6 = $(`<div id="html_939420922517dd238f751552ff577bc6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الثريا الدولية لمواد البناء المحدودة</b><br> السجل التجاري: 2050058982<br> المنطقة: الدمام<br> الحارة: الضباب<br> <a href="https://www.google.com/maps?q=26.43142260028988,50.05435628016571" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4304288958eeb3e519ce2a1179101a17.setContent(html_939420922517dd238f751552ff577bc6);
marker_a0c50313e0c826965273c1ced45763a7.bindPopup(popup_4304288958eeb3e519ce2a1179101a17)
;
marker_a0c50313e0c826965273c1ced45763a7.bindTooltip(
`<div>
شركة الثريا الدولية لمواد البناء المحدودة
</div>`,
{
"sticky": true,
}
);
marker_a0c50313e0c826965273c1ced45763a7.setIcon(icon_e758ac36adc87af6845990eacc5e0fe0);
var marker_a96582891adce408ca06b5c30ba0360f = L.marker(
[26.4323957999999, 50.04443904],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_0d3cb0849f7ec59a016d48d4f4716e8e = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6aaab0ba0643d30d4ce3fc76ff8b4b84 = L.popup({
"maxWidth": 320,
});
var html_ce28353f5bd6dd8710034882be33e890 = $(`<div id="html_ce28353f5bd6dd8710034882be33e890" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة صدف الولائم لتقديم الوجبات</b><br> السجل التجاري: 2050172878<br> المنطقة: الدمام<br> الحارة: الضباب<br> <a href="https://www.google.com/maps?q=26.4323957999999,50.04443904" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6aaab0ba0643d30d4ce3fc76ff8b4b84.setContent(html_ce28353f5bd6dd8710034882be33e890);
marker_a96582891adce408ca06b5c30ba0360f.bindPopup(popup_6aaab0ba0643d30d4ce3fc76ff8b4b84)
;
marker_a96582891adce408ca06b5c30ba0360f.bindTooltip(
`<div>
شركة صدف الولائم لتقديم الوجبات
</div>`,
{
"sticky": true,
}
);
marker_a96582891adce408ca06b5c30ba0360f.setIcon(icon_0d3cb0849f7ec59a016d48d4f4716e8e);
var marker_a05c9c0c9b7ec8c913d462caf9c46a82 = L.marker(
[26.42506146787132, 50.06027705335249],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_933982f0569d9944d328fc15eb297d26 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6e20e536b7cf494cf436c2b3b0deaaf1 = L.popup({
"maxWidth": 320,
});
var html_112c1d04b7a39496fe68a9f0a5ab86c9 = $(`<div id="html_112c1d04b7a39496fe68a9f0a5ab86c9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة انسبيكتيفاي اند انجينيرنغ سيرفيسز المحدودة</b><br> السجل التجاري: 2050190268<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.42506146787132,50.06027705335249" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6e20e536b7cf494cf436c2b3b0deaaf1.setContent(html_112c1d04b7a39496fe68a9f0a5ab86c9);
marker_a05c9c0c9b7ec8c913d462caf9c46a82.bindPopup(popup_6e20e536b7cf494cf436c2b3b0deaaf1)
;
marker_a05c9c0c9b7ec8c913d462caf9c46a82.bindTooltip(
`<div>
شركة انسبيكتيفاي اند انجينيرنغ سيرفيسز المحدودة
</div>`,
{
"sticky": true,
}
);
marker_a05c9c0c9b7ec8c913d462caf9c46a82.setIcon(icon_933982f0569d9944d328fc15eb297d26);
var marker_46f875ed91fbca6ebcb07e516c5b385d = L.marker(
[26.42512327, 50.06039063],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_2f001818a10ef21f5d272143d6179982 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_927f3eec4fe7825de7f0f15810fdab20 = L.popup({
"maxWidth": 320,
});
var html_10a9681b9b8e3485748a5a0b6c381189 = $(`<div id="html_10a9681b9b8e3485748a5a0b6c381189" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة قمر الخليج للمقاولات العامة</b><br> السجل التجاري: 2050060327<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.42512327,50.06039063" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_927f3eec4fe7825de7f0f15810fdab20.setContent(html_10a9681b9b8e3485748a5a0b6c381189);
marker_46f875ed91fbca6ebcb07e516c5b385d.bindPopup(popup_927f3eec4fe7825de7f0f15810fdab20)
;
marker_46f875ed91fbca6ebcb07e516c5b385d.bindTooltip(
`<div>
شركة قمر الخليج للمقاولات العامة
</div>`,
{
"sticky": true,
}
);
marker_46f875ed91fbca6ebcb07e516c5b385d.setIcon(icon_2f001818a10ef21f5d272143d6179982);
var marker_2e01eb14d03eb478b2d703307b106077 = L.marker(
[26.4251410514394, 50.06042459048331],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_236a16686f815a11e31fe49bc6e5eefd = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9c085f6d35c86b86254603e34c756e4e = L.popup({
"maxWidth": 320,
});
var html_0f2d946fb69eabf3fe896acae7942730 = $(`<div id="html_0f2d946fb69eabf3fe896acae7942730" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة أرتسين ماشينري سيرفيسز للمقاولات</b><br> السجل التجاري: 2050179083<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.4251410514394,50.06042459048331" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9c085f6d35c86b86254603e34c756e4e.setContent(html_0f2d946fb69eabf3fe896acae7942730);
marker_2e01eb14d03eb478b2d703307b106077.bindPopup(popup_9c085f6d35c86b86254603e34c756e4e)
;
marker_2e01eb14d03eb478b2d703307b106077.bindTooltip(
`<div>
شركة أرتسين ماشينري سيرفيسز للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_2e01eb14d03eb478b2d703307b106077.setIcon(icon_236a16686f815a11e31fe49bc6e5eefd);
var marker_e3dcb87f4ff81ab1823e6e7212ccd9be = L.marker(
[26.42520417800219, 50.06050027906895],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_e595556deda437ac20db643f25ccd401 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a3239c31a277fb95ce20050e59edf5e4 = L.popup({
"maxWidth": 320,
});
var html_63382472c22ef15afe4173ab05189e58 = $(`<div id="html_63382472c22ef15afe4173ab05189e58" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة ايسوف العالمية للمقاولات</b><br> السجل التجاري: 2050192242<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.42520417800219,50.06050027906895" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a3239c31a277fb95ce20050e59edf5e4.setContent(html_63382472c22ef15afe4173ab05189e58);
marker_e3dcb87f4ff81ab1823e6e7212ccd9be.bindPopup(popup_a3239c31a277fb95ce20050e59edf5e4)
;
marker_e3dcb87f4ff81ab1823e6e7212ccd9be.bindTooltip(
`<div>
شركة ايسوف العالمية للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_e3dcb87f4ff81ab1823e6e7212ccd9be.setIcon(icon_e595556deda437ac20db643f25ccd401);
var marker_9069f6881083111fe1f76e85bb577d5b = L.marker(
[26.4257187, 50.0611280199999],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_73e2a1806c235c7995dadcdf5606e440 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_13c3224c6790ff7c23573b1bd91998b0 = L.popup({
"maxWidth": 320,
});
var html_ac3552c1fa709f3e06328c3fd16ffaca = $(`<div id="html_ac3552c1fa709f3e06328c3fd16ffaca" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة مفضل العربية للمقاولات شخص واحد</b><br> السجل التجاري: 2050172420<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.4257187,50.0611280199999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_13c3224c6790ff7c23573b1bd91998b0.setContent(html_ac3552c1fa709f3e06328c3fd16ffaca);
marker_9069f6881083111fe1f76e85bb577d5b.bindPopup(popup_13c3224c6790ff7c23573b1bd91998b0)
;
marker_9069f6881083111fe1f76e85bb577d5b.bindTooltip(
`<div>
شركة مفضل العربية للمقاولات شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_9069f6881083111fe1f76e85bb577d5b.setIcon(icon_73e2a1806c235c7995dadcdf5606e440);
var marker_d44b03f4a0ab2897bf878cfffb2e7d98 = L.marker(
[26.42659779544694, 50.06823202885224],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_111ab41bb795cb9967290f7953aaafbb = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_38ab306083a09c9bb004699ab10f89a4 = L.popup({
"maxWidth": 320,
});
var html_d1e90e49e1d8224b73cdc59db005cfd0 = $(`<div id="html_d1e90e49e1d8224b73cdc59db005cfd0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة السوائل الميكانيكية التجارية</b><br> السجل التجاري: 2055014072<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.42659779544694,50.06823202885224" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_38ab306083a09c9bb004699ab10f89a4.setContent(html_d1e90e49e1d8224b73cdc59db005cfd0);
marker_d44b03f4a0ab2897bf878cfffb2e7d98.bindPopup(popup_38ab306083a09c9bb004699ab10f89a4)
;
marker_d44b03f4a0ab2897bf878cfffb2e7d98.bindTooltip(
`<div>
شركة السوائل الميكانيكية التجارية
</div>`,
{
"sticky": true,
}
);
marker_d44b03f4a0ab2897bf878cfffb2e7d98.setIcon(icon_111ab41bb795cb9967290f7953aaafbb);
var marker_1be03cc0da8eca775404b295cf9db8a9 = L.marker(
[26.426709067686, 50.06658028806989],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_50437cab5de2cc8384830a71174beab5 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bc441cff626c9275614ed65a48ebbf38 = L.popup({
"maxWidth": 320,
});
var html_7c027a7e38ee2938238ebe4380da2218 = $(`<div id="html_7c027a7e38ee2938238ebe4380da2218" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الاشكال العصرية المحدودة</b><br> السجل التجاري: 2050032996<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.426709067686,50.06658028806989" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bc441cff626c9275614ed65a48ebbf38.setContent(html_7c027a7e38ee2938238ebe4380da2218);
marker_1be03cc0da8eca775404b295cf9db8a9.bindPopup(popup_bc441cff626c9275614ed65a48ebbf38)
;
marker_1be03cc0da8eca775404b295cf9db8a9.bindTooltip(
`<div>
شركة الاشكال العصرية المحدودة
</div>`,
{
"sticky": true,
}
);
marker_1be03cc0da8eca775404b295cf9db8a9.setIcon(icon_50437cab5de2cc8384830a71174beab5);
var marker_1aa73a3055c15a45f443a66aaebbd4a2 = L.marker(
[26.4273124446126, 50.0645057818219],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_f32c4ddb9e1d305a454d033836348c42 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e1d9e0b90022d39b2b37a4f6ed67b83a = L.popup({
"maxWidth": 320,
});
var html_eaae7f5c9400e96032c6f9b7d6c5d9e3 = $(`<div id="html_eaae7f5c9400e96032c6f9b7d6c5d9e3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الاعمال المتقدمة و التنمية التجارية</b><br> السجل التجاري: 2051046135<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.4273124446126,50.0645057818219" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e1d9e0b90022d39b2b37a4f6ed67b83a.setContent(html_eaae7f5c9400e96032c6f9b7d6c5d9e3);
marker_1aa73a3055c15a45f443a66aaebbd4a2.bindPopup(popup_e1d9e0b90022d39b2b37a4f6ed67b83a)
;
marker_1aa73a3055c15a45f443a66aaebbd4a2.bindTooltip(
`<div>
شركة الاعمال المتقدمة و التنمية التجارية
</div>`,
{
"sticky": true,
}
);
marker_1aa73a3055c15a45f443a66aaebbd4a2.setIcon(icon_f32c4ddb9e1d305a454d033836348c42);
var marker_0b038205bd1f24e23dabdaaded3ab515 = L.marker(
[26.4276064694184, 50.0666647179997],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_32248ba5593fa0f1ee9155c4a32a8ab3 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_80e9d3105077ab299e2950e6ebad355c = L.popup({
"maxWidth": 320,
});
var html_efe8baa7ac8ba054eadfa3571e9417d0 = $(`<div id="html_efe8baa7ac8ba054eadfa3571e9417d0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة فكرة أسطورة للتجارة شركة شخص واحد</b><br> السجل التجاري: 2050120839<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.4276064694184,50.0666647179997" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_80e9d3105077ab299e2950e6ebad355c.setContent(html_efe8baa7ac8ba054eadfa3571e9417d0);
marker_0b038205bd1f24e23dabdaaded3ab515.bindPopup(popup_80e9d3105077ab299e2950e6ebad355c)
;
marker_0b038205bd1f24e23dabdaaded3ab515.bindTooltip(
`<div>
شركة فكرة أسطورة للتجارة شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_0b038205bd1f24e23dabdaaded3ab515.setIcon(icon_32248ba5593fa0f1ee9155c4a32a8ab3);
var marker_1f5e4dbe9b40848c1f018f9f04bce8f1 = L.marker(
[26.42797202987307, 50.06411589682102],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_677e91b96b355028c1830c1f34f72114 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_74ce7d25d0bf3f3c458fac5b1e139bb6 = L.popup({
"maxWidth": 320,
});
var html_8f6408a9f85b66f683b80695008e20d8 = $(`<div id="html_8f6408a9f85b66f683b80695008e20d8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة درة الكمال للأقمشة الراقية</b><br> السجل التجاري: 4030375668<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.42797202987307,50.06411589682102" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_74ce7d25d0bf3f3c458fac5b1e139bb6.setContent(html_8f6408a9f85b66f683b80695008e20d8);
marker_1f5e4dbe9b40848c1f018f9f04bce8f1.bindPopup(popup_74ce7d25d0bf3f3c458fac5b1e139bb6)
;
marker_1f5e4dbe9b40848c1f018f9f04bce8f1.bindTooltip(
`<div>
شركة درة الكمال للأقمشة الراقية
</div>`,
{
"sticky": true,
}
);
marker_1f5e4dbe9b40848c1f018f9f04bce8f1.setIcon(icon_677e91b96b355028c1830c1f34f72114);
var marker_6ff644084fdf4fb779665c8bebec6cc6 = L.marker(
[26.42864643, 50.0682813],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_d6966bf3b59c00a358bff59002af5d72 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_39be9e91b649ab6d872741255592aea4 = L.popup({
"maxWidth": 320,
});
var html_8ead6a630b912cd6099420f8d9d39d7b = $(`<div id="html_8ead6a630b912cd6099420f8d9d39d7b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة مفتاح الشرق التجارية</b><br> السجل التجاري: 2050045347<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.42864643,50.0682813" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_39be9e91b649ab6d872741255592aea4.setContent(html_8ead6a630b912cd6099420f8d9d39d7b);
marker_6ff644084fdf4fb779665c8bebec6cc6.bindPopup(popup_39be9e91b649ab6d872741255592aea4)
;
marker_6ff644084fdf4fb779665c8bebec6cc6.bindTooltip(
`<div>
شركة مفتاح الشرق التجارية
</div>`,
{
"sticky": true,
}
);
marker_6ff644084fdf4fb779665c8bebec6cc6.setIcon(icon_d6966bf3b59c00a358bff59002af5d72);
var marker_845b2fd82c28749d2a09503349b5d156 = L.marker(
[26.42900114, 50.06820916],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_f3e8eaf2b0515292f29fb151e248951b = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1d86cdfa9a0c39f5ce4384a2e1d5735d = L.popup({
"maxWidth": 320,
});
var html_a6a1ebb5bb66158d77701beb429c5b7b = $(`<div id="html_a6a1ebb5bb66158d77701beb429c5b7b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة دنيا النواعم للاثاث</b><br> السجل التجاري: 2050049517<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.42900114,50.06820916" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1d86cdfa9a0c39f5ce4384a2e1d5735d.setContent(html_a6a1ebb5bb66158d77701beb429c5b7b);
marker_845b2fd82c28749d2a09503349b5d156.bindPopup(popup_1d86cdfa9a0c39f5ce4384a2e1d5735d)
;
marker_845b2fd82c28749d2a09503349b5d156.bindTooltip(
`<div>
شركة دنيا النواعم للاثاث
</div>`,
{
"sticky": true,
}
);
marker_845b2fd82c28749d2a09503349b5d156.setIcon(icon_f3e8eaf2b0515292f29fb151e248951b);
var marker_7993d8c4c8415e033e239641b50213eb = L.marker(
[26.4292179199999, 50.06679089],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_5acc4bff2daa766432a58b65f7784d41 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ac60153a88dbf6226989622cb3683d35 = L.popup({
"maxWidth": 320,
});
var html_90f627b9509e97bce2b37ded25e7f04e = $(`<div id="html_90f627b9509e97bce2b37ded25e7f04e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة البيت الحديث للتجارة</b><br> السجل التجاري: 2050132608<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.4292179199999,50.06679089" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ac60153a88dbf6226989622cb3683d35.setContent(html_90f627b9509e97bce2b37ded25e7f04e);
marker_7993d8c4c8415e033e239641b50213eb.bindPopup(popup_ac60153a88dbf6226989622cb3683d35)
;
marker_7993d8c4c8415e033e239641b50213eb.bindTooltip(
`<div>
شركة البيت الحديث للتجارة
</div>`,
{
"sticky": true,
}
);
marker_7993d8c4c8415e033e239641b50213eb.setIcon(icon_5acc4bff2daa766432a58b65f7784d41);
var marker_78ca270d1842c35491238b4b9676ced6 = L.marker(
[26.42975152649565, 50.0635590031743],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_b72dc25d61a92dd78178ff44e3e7035b = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_13bfbff25296cba09ec64d279f96b4c1 = L.popup({
"maxWidth": 320,
});
var html_b95342c602bf7732f5d15b4b0aaf5d7d = $(`<div id="html_b95342c602bf7732f5d15b4b0aaf5d7d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة خدمات اصدقاء البركة المحدودة</b><br> السجل التجاري: 2050196083<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.42975152649565,50.0635590031743" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_13bfbff25296cba09ec64d279f96b4c1.setContent(html_b95342c602bf7732f5d15b4b0aaf5d7d);
marker_78ca270d1842c35491238b4b9676ced6.bindPopup(popup_13bfbff25296cba09ec64d279f96b4c1)
;
marker_78ca270d1842c35491238b4b9676ced6.bindTooltip(
`<div>
شركة خدمات اصدقاء البركة المحدودة
</div>`,
{
"sticky": true,
}
);
marker_78ca270d1842c35491238b4b9676ced6.setIcon(icon_b72dc25d61a92dd78178ff44e3e7035b);
var marker_222ec435d12fbd4935872e78c368c5e1 = L.marker(
[26.4297602332616, 50.06376251578331],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_5753a9bb8c6bdd6e2fcddcae8383b4b3 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_066ae97131fa4831056efd6c1684c095 = L.popup({
"maxWidth": 320,
});
var html_97dc24246ac037a659603c98b240843f = $(`<div id="html_97dc24246ac037a659603c98b240843f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة سرايا العز لتنجيد الاثاث</b><br> السجل التجاري: 2050185771<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.4297602332616,50.06376251578331" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_066ae97131fa4831056efd6c1684c095.setContent(html_97dc24246ac037a659603c98b240843f);
marker_222ec435d12fbd4935872e78c368c5e1.bindPopup(popup_066ae97131fa4831056efd6c1684c095)
;
marker_222ec435d12fbd4935872e78c368c5e1.bindTooltip(
`<div>
شركة سرايا العز لتنجيد الاثاث
</div>`,
{
"sticky": true,
}
);
marker_222ec435d12fbd4935872e78c368c5e1.setIcon(icon_5753a9bb8c6bdd6e2fcddcae8383b4b3);
var marker_ebfce93d52918e0096e4c7128a2e770f = L.marker(
[26.43448142836402, 50.0559134801516],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_19d9c0a1e1a1c790af564aa13a05739f = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c71ef04e66a6866ddc81d89c23d0c099 = L.popup({
"maxWidth": 320,
});
var html_68b55b23dd0c29453b6b65033d15e904 = $(`<div id="html_68b55b23dd0c29453b6b65033d15e904" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة ايه ار اس انترناشنل شركة الشخص الواحد</b><br> السجل التجاري: 2031106194<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.43448142836402,50.0559134801516" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c71ef04e66a6866ddc81d89c23d0c099.setContent(html_68b55b23dd0c29453b6b65033d15e904);
marker_ebfce93d52918e0096e4c7128a2e770f.bindPopup(popup_c71ef04e66a6866ddc81d89c23d0c099)
;
marker_ebfce93d52918e0096e4c7128a2e770f.bindTooltip(
`<div>
شركة ايه ار اس انترناشنل شركة الشخص الواحد
</div>`,
{
"sticky": true,
}
);
marker_ebfce93d52918e0096e4c7128a2e770f.setIcon(icon_19d9c0a1e1a1c790af564aa13a05739f);
var marker_30415ca4242b71c8df4becaca6d41427 = L.marker(
[26.43563866819325, 50.05862981223696],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_2cc6d765315577249dbe37aa1fada8c9 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3eec7d758126bcabcd6398fc1c776788 = L.popup({
"maxWidth": 320,
});
var html_72cc7417d3b09493508c51bf2b051186 = $(`<div id="html_72cc7417d3b09493508c51bf2b051186" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة اقبال مرحبة للمقاولات المحدودة شركة شخص واحد</b><br> السجل التجاري: 2050189967<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.43563866819325,50.05862981223696" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3eec7d758126bcabcd6398fc1c776788.setContent(html_72cc7417d3b09493508c51bf2b051186);
marker_30415ca4242b71c8df4becaca6d41427.bindPopup(popup_3eec7d758126bcabcd6398fc1c776788)
;
marker_30415ca4242b71c8df4becaca6d41427.bindTooltip(
`<div>
شركة اقبال مرحبة للمقاولات المحدودة شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_30415ca4242b71c8df4becaca6d41427.setIcon(icon_2cc6d765315577249dbe37aa1fada8c9);
var marker_87ce60d6a62a1532f018f2fd891e0ee9 = L.marker(
[26.43604022350086, 50.0639490811683],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_d7ad6ceae373bbdd28191eacc35564b0 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0ee3df799b4b47289175729b25b32441 = L.popup({
"maxWidth": 320,
});
var html_3faa1f1163813c7e42b9ca3f2d436268 = $(`<div id="html_3faa1f1163813c7e42b9ca3f2d436268" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة تجهيز الأسطح للالات والمعدات شخص واحد</b><br> السجل التجاري: 2050171067<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.43604022350086,50.0639490811683" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0ee3df799b4b47289175729b25b32441.setContent(html_3faa1f1163813c7e42b9ca3f2d436268);
marker_87ce60d6a62a1532f018f2fd891e0ee9.bindPopup(popup_0ee3df799b4b47289175729b25b32441)
;
marker_87ce60d6a62a1532f018f2fd891e0ee9.bindTooltip(
`<div>
شركة تجهيز الأسطح للالات والمعدات شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_87ce60d6a62a1532f018f2fd891e0ee9.setIcon(icon_d7ad6ceae373bbdd28191eacc35564b0);
var marker_fd9ef302494de9e4b0911cb6224c582c = L.marker(
[26.43688955, 50.06533248],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_8b0db358a8f04321fa6164697ec17232 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9985f77d543497acea2e2744c70434b9 = L.popup({
"maxWidth": 320,
});
var html_de70861bf9491e7f5531e4f4b163f67d = $(`<div id="html_de70861bf9491e7f5531e4f4b163f67d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة عالم البلاد للتجارة شركة شخص واحد</b><br> السجل التجاري: 2050149019<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.43688955,50.06533248" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9985f77d543497acea2e2744c70434b9.setContent(html_de70861bf9491e7f5531e4f4b163f67d);
marker_fd9ef302494de9e4b0911cb6224c582c.bindPopup(popup_9985f77d543497acea2e2744c70434b9)
;
marker_fd9ef302494de9e4b0911cb6224c582c.bindTooltip(
`<div>
شركة عالم البلاد للتجارة شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_fd9ef302494de9e4b0911cb6224c582c.setIcon(icon_8b0db358a8f04321fa6164697ec17232);
var marker_858dbef8c71d2136adf32b629a035dbb = L.marker(
[26.4372551999999, 50.0649156899999],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_2df4a0ef6b07b7b7b0d2a22cd59382cc = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_aab8f13a45ee79541db8644803d71cb2 = L.popup({
"maxWidth": 320,
});
var html_9ffb69561b80ff6c01fc7f5172233f73 = $(`<div id="html_9ffb69561b80ff6c01fc7f5172233f73" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة سفح وطلاء المعادن للمقاولات العامة</b><br> السجل التجاري: 2050035000<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.4372551999999,50.0649156899999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_aab8f13a45ee79541db8644803d71cb2.setContent(html_9ffb69561b80ff6c01fc7f5172233f73);
marker_858dbef8c71d2136adf32b629a035dbb.bindPopup(popup_aab8f13a45ee79541db8644803d71cb2)
;
marker_858dbef8c71d2136adf32b629a035dbb.bindTooltip(
`<div>
شركة سفح وطلاء المعادن للمقاولات العامة
</div>`,
{
"sticky": true,
}
);
marker_858dbef8c71d2136adf32b629a035dbb.setIcon(icon_2df4a0ef6b07b7b7b0d2a22cd59382cc);
var marker_faad7665363508f1b92f3d009864b7be = L.marker(
[26.4375537399999, 50.06463591],
{
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
var icon_eca5ee2c56649ee6c4df409be67c9f31 = L.AwesomeMarkers.icon(
{
"markerColor": "black",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8f7744aa25bf003bfd936570584b3aac = L.popup({
"maxWidth": 320,
});
var html_a462f9a6b38a74152cba8f29e691075a = $(`<div id="html_a462f9a6b38a74152cba8f29e691075a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة علي محمد الحميدي للتجارة</b><br> السجل التجاري: 2050022255<br> المنطقة: الدمام<br> الحارة: الأثير<br> <a href="https://www.google.com/maps?q=26.4375537399999,50.06463591" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8f7744aa25bf003bfd936570584b3aac.setContent(html_a462f9a6b38a74152cba8f29e691075a);
marker_faad7665363508f1b92f3d009864b7be.bindPopup(popup_8f7744aa25bf003bfd936570584b3aac)
;
marker_faad7665363508f1b92f3d009864b7be.bindTooltip(
`<div>
شركة علي محمد الحميدي للتجارة
</div>`,
{
"sticky": true,
}
);
marker_faad7665363508f1b92f3d009864b7be.setIcon(icon_eca5ee2c56649ee6c4df409be67c9f31);
map_ae5e320dc4e965c6b32e7a24c2573230.fitBounds(
[[26.42803126835356, 50.0440512150338], [26.4307221199999, 50.04237313], [26.43142260028988, 50.05435628016571], [26.4323957999999, 50.04443904], [26.42506146787132, 50.06027705335249], [26.42512327, 50.06039063], [26.4251410514394, 50.06042459048331], [26.42520417800219, 50.06050027906895], [26.4257187, 50.0611280199999], [26.42659779544694, 50.06823202885224], [26.426709067686, 50.06658028806989], [26.4273124446126, 50.0645057818219], [26.4276064694184, 50.0666647179997], [26.42797202987307, 50.06411589682102], [26.42864643, 50.0682813], [26.42900114, 50.06820916], [26.4292179199999, 50.06679089], [26.42975152649565, 50.0635590031743], [26.4297602332616, 50.06376251578331], [26.43448142836402, 50.0559134801516], [26.43563866819325, 50.05862981223696], [26.43604022350086, 50.0639490811683], [26.43688955, 50.06533248], [26.4372551999999, 50.0649156899999], [26.4375537399999, 50.06463591]],
{"padding": [30, 30]}
);
var layer_control_ce769175e0116545e0392710967f8fff_layers = {
base_layers : {
"\u062e\u0631\u064a\u0637\u0629 \u0627\u0644\u0634\u0627\u0631\u0639" : tile_layer_32800f685cd6453d237d20f228f70ced,
"\u0623\u0642\u0645\u0627\u0631 \u0635\u0646\u0627\u0639\u064a\u0629 (Esri)" : tile_layer_12087c08b52d5335cf05cca9c776583f,
},
overlays : {
},
};
let layer_control_ce769175e0116545e0392710967f8fff = L.control.layers(
layer_control_ce769175e0116545e0392710967f8fff_layers.base_layers,
layer_control_ce769175e0116545e0392710967f8fff_layers.overlays,
{
"position": "topright",
"collapsed": false,
"autoZIndex": true,
}
).addTo(map_ae5e320dc4e965c6b32e7a24c2573230);
</script>
</html> |