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 |
<!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_dbd32fc871408882114445db0c042e5d {
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">هيه بنت عبدالعزيز بن فرحان المزيني - 5</span>
<span class="toggle" id="hideStats">إخفاء</span>
</div>
<div class="stats-body" id="statsBody">
<b>عدد المواقع:</b> 25<br>
<b>عدد الحارات:</b> 1<br>
<b>الأكثر:</b> <b>الصناعية</b>: 25
<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:#dc3545;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;">(25)</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_dbd32fc871408882114445db0c042e5d;
const items = [{"title": "شركة مصنع القرم للصناعات المعدنية", "lat": 26.4505476204527, "lon": 50.03351058868917, "markerVar": "marker_8202d41f4a83faa3961804a6adb1b67c"}, {"title": "شركة قطن العالمية للمقاولات", "lat": 26.45100479138747, "lon": 50.03832162365294, "markerVar": "marker_bc928ad00896dc2344a304cf3fcf9610"}, {"title": "شركة الدروب الذهبية للتجارة", "lat": 26.45124254049223, "lon": 50.03378381356782, "markerVar": "marker_bc26b7ba68f3d154ddb73a0d32e8ae16"}, {"title": "شركة الفيصل الخليجية للخدمات البيئية", "lat": 26.45128224625874, "lon": 50.01852382312035, "markerVar": "marker_d347789d3d885c84aa4523e32c05995d"}, {"title": "شركة الخلاياء الشمسيه التجارية", "lat": 26.45172227, "lon": 50.0219371399999, "markerVar": "marker_4af0072625260a4aed36045fedab0c60"}, {"title": "شركة نطاق الابعاد للصناعة شخص واحد", "lat": 26.45405149075778, "lon": 50.02347192810305, "markerVar": "marker_617158f1de5e84e313cf1b86e70943e6"}, {"title": "شركة سدرة المعدات للتجارة", "lat": 26.45444146, "lon": 50.01995153, "markerVar": "marker_c54e0ba9132321609c51ef3bd30e10c8"}, {"title": "شركة رافعة الشرقية لتأجير المعدات", "lat": 26.45544711, "lon": 50.01871451, "markerVar": "marker_ad8f705931a7d16ac8dc9b8501242a2d"}, {"title": "شركة رايسكو للتجارة شركة شخص واحد", "lat": 26.4558274309315, "lon": 50.0269409055684, "markerVar": "marker_3ef505499323c2b1371a72838922c43e"}, {"title": "شركة هادي دولية للتجارة", "lat": 26.45611048, "lon": 50.0185935, "markerVar": "marker_376a325bfc0dbbf2155b2affe181c79e"}, {"title": "شركة ورشة فواز مساعد الخالدي للحدادة", "lat": 26.45673933, "lon": 50.02463457, "markerVar": "marker_a367620f942ab560c3898fe4075fc415"}, {"title": "مؤسسة الشاطي الشرقي التجارية", "lat": 26.45767073, "lon": 50.01771166, "markerVar": "marker_65c637a4e06233137b8975947300a43d"}, {"title": "شركة روائع الفنية العربية المحدودة شركة شخص واحد", "lat": 26.4591912299999, "lon": 50.0156416299999, "markerVar": "marker_a66c723004968eec37f46ee7c95cf4ca"}, {"title": "شركة اوتاد العالمية", "lat": 26.459556656188, "lon": 50.0228332047752, "markerVar": "marker_d9e899dd9eda147b29926df55cd9b809"}, {"title": "شركة ماهي للحلول الهيدروليكية للتجارة", "lat": 26.4601001899999, "lon": 50.01594566, "markerVar": "marker_0afab446f93361bddceab712e4a656df"}, {"title": "شركة افاق الاعمال الخليجية الصناعية", "lat": 26.4625258148467, "lon": 50.01780766771284, "markerVar": "marker_a2ea8ee2484f335ad020cf6b4493c80c"}, {"title": "شركة القصور الطبيعية للرخام والحجر", "lat": 26.46260624, "lon": 50.0198785799999, "markerVar": "marker_0c78519dd53111755fcb4e4b3224b06f"}, {"title": "شركة ماس روز التجارية", "lat": 26.4628803499999, "lon": 50.02543242, "markerVar": "marker_753ad3f9874f2a056636865f2345d0ba"}, {"title": "شركة جنى الإنماء للتجارة والمقاولات", "lat": 26.46406473, "lon": 50.01941875, "markerVar": "marker_9f9907bb2390a94b6e1a5a8c21248dfa"}, {"title": "شركة سراي الخليج التجارية", "lat": 26.4644389199999, "lon": 50.02163625, "markerVar": "marker_70c2b7eba7942befd70dd9c4aee713d3"}, {"title": "شركة الليث العالمية للمقاولات العامة", "lat": 26.46452215450648, "lon": 50.01623410731554, "markerVar": "marker_1b44e10ab80dd5aa18e0a0272ff15643"}, {"title": "شركة لمسات عالية للمقاولات شركة شخص واحد", "lat": 26.46492213, "lon": 50.0187320699999, "markerVar": "marker_36ab04368d21b418d9ae1aea960a3e8e"}, {"title": "شركه دار الماركات العالمية للتجارة", "lat": 26.46531654, "lon": 50.02090127, "markerVar": "marker_065d3ccb48d299385e760b961e3d0bfb"}, {"title": "شركة صحارى الشرق للصناعة", "lat": 26.46596130910549, "lon": 50.01920736190598, "markerVar": "marker_5f528207a6012bb51cc19b2bd48427ba"}, {"title": "شركة ابات عصرية للرخام والحجر", "lat": 26.46605273, "lon": 50.01915701, "markerVar": "marker_fc0a0b69cd8704848fb5bbb8db892185"}];
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_dbd32fc871408882114445db0c042e5d" ></div>
</body>
<script>
var map_dbd32fc871408882114445db0c042e5d = L.map(
"map_dbd32fc871408882114445db0c042e5d",
{
center: [26.45872905979707, 50.02195686297644],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
L.control.scale().addTo(map_dbd32fc871408882114445db0c042e5d);
var tile_layer_6a2c4dd6300533608e53a07527909594 = 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_6a2c4dd6300533608e53a07527909594.addTo(map_dbd32fc871408882114445db0c042e5d);
var tile_layer_3a45f4922d05cd89c681f9b3d3106985 = 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_3a45f4922d05cd89c681f9b3d3106985.addTo(map_dbd32fc871408882114445db0c042e5d);
var locate_control_cbb83dd2f88d2d317264a4fa4ec0668d = L.control.locate(
{"flyTo": true}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var marker_8202d41f4a83faa3961804a6adb1b67c = L.marker(
[26.4505476204527, 50.03351058868917],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_adc5fee454d15d1b9f987f8c09618efd = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_96a02baa517774b2e2f015bb6d3f0d45 = L.popup({
"maxWidth": 320,
});
var html_b932fd392b5bc86fe92be0a03dcb6d11 = $(`<div id="html_b932fd392b5bc86fe92be0a03dcb6d11" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة مصنع القرم للصناعات المعدنية</b><br> السجل التجاري: 2050192157<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.4505476204527,50.03351058868917" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_96a02baa517774b2e2f015bb6d3f0d45.setContent(html_b932fd392b5bc86fe92be0a03dcb6d11);
marker_8202d41f4a83faa3961804a6adb1b67c.bindPopup(popup_96a02baa517774b2e2f015bb6d3f0d45)
;
marker_8202d41f4a83faa3961804a6adb1b67c.bindTooltip(
`<div>
شركة مصنع القرم للصناعات المعدنية
</div>`,
{
"sticky": true,
}
);
marker_8202d41f4a83faa3961804a6adb1b67c.setIcon(icon_adc5fee454d15d1b9f987f8c09618efd);
var marker_bc928ad00896dc2344a304cf3fcf9610 = L.marker(
[26.45100479138747, 50.03832162365294],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_11d89917daff905c18b9ae7e5fd883fb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_15554b89e1918113688ef6c5e2a699c5 = L.popup({
"maxWidth": 320,
});
var html_5ad88377a4f58a061a53f367fcaaf47e = $(`<div id="html_5ad88377a4f58a061a53f367fcaaf47e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة قطن العالمية للمقاولات</b><br> السجل التجاري: 2050190931<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.45100479138747,50.03832162365294" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_15554b89e1918113688ef6c5e2a699c5.setContent(html_5ad88377a4f58a061a53f367fcaaf47e);
marker_bc928ad00896dc2344a304cf3fcf9610.bindPopup(popup_15554b89e1918113688ef6c5e2a699c5)
;
marker_bc928ad00896dc2344a304cf3fcf9610.bindTooltip(
`<div>
شركة قطن العالمية للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_bc928ad00896dc2344a304cf3fcf9610.setIcon(icon_11d89917daff905c18b9ae7e5fd883fb);
var marker_bc26b7ba68f3d154ddb73a0d32e8ae16 = L.marker(
[26.45124254049223, 50.03378381356782],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_ab08e81a0aab6036b3614280642ba30f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c3eb9b20641b567965c46822eb945231 = L.popup({
"maxWidth": 320,
});
var html_7d4f93e1574a1ddae9b3b8799fb42a51 = $(`<div id="html_7d4f93e1574a1ddae9b3b8799fb42a51" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الدروب الذهبية للتجارة</b><br> السجل التجاري: 1009001433<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.45124254049223,50.03378381356782" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c3eb9b20641b567965c46822eb945231.setContent(html_7d4f93e1574a1ddae9b3b8799fb42a51);
marker_bc26b7ba68f3d154ddb73a0d32e8ae16.bindPopup(popup_c3eb9b20641b567965c46822eb945231)
;
marker_bc26b7ba68f3d154ddb73a0d32e8ae16.bindTooltip(
`<div>
شركة الدروب الذهبية للتجارة
</div>`,
{
"sticky": true,
}
);
marker_bc26b7ba68f3d154ddb73a0d32e8ae16.setIcon(icon_ab08e81a0aab6036b3614280642ba30f);
var marker_d347789d3d885c84aa4523e32c05995d = L.marker(
[26.45128224625874, 50.01852382312035],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_f32213adc133450e4c55e06008733f51 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_be9d9eafe06c312feb2313d77a52e8d5 = L.popup({
"maxWidth": 320,
});
var html_86665417efedbca59efd5dce1661788b = $(`<div id="html_86665417efedbca59efd5dce1661788b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الفيصل الخليجية للخدمات البيئية</b><br> السجل التجاري: 2050039911<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.45128224625874,50.01852382312035" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_be9d9eafe06c312feb2313d77a52e8d5.setContent(html_86665417efedbca59efd5dce1661788b);
marker_d347789d3d885c84aa4523e32c05995d.bindPopup(popup_be9d9eafe06c312feb2313d77a52e8d5)
;
marker_d347789d3d885c84aa4523e32c05995d.bindTooltip(
`<div>
شركة الفيصل الخليجية للخدمات البيئية
</div>`,
{
"sticky": true,
}
);
marker_d347789d3d885c84aa4523e32c05995d.setIcon(icon_f32213adc133450e4c55e06008733f51);
var marker_4af0072625260a4aed36045fedab0c60 = L.marker(
[26.45172227, 50.0219371399999],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_8d2318bddb039b77eb53e642a2b9d352 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_09c2d194760ca0a3308df0a08e752149 = L.popup({
"maxWidth": 320,
});
var html_14eab643bed7fb663b38a7ed29d71663 = $(`<div id="html_14eab643bed7fb663b38a7ed29d71663" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الخلاياء الشمسيه التجارية</b><br> السجل التجاري: 2050203982<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.45172227,50.0219371399999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_09c2d194760ca0a3308df0a08e752149.setContent(html_14eab643bed7fb663b38a7ed29d71663);
marker_4af0072625260a4aed36045fedab0c60.bindPopup(popup_09c2d194760ca0a3308df0a08e752149)
;
marker_4af0072625260a4aed36045fedab0c60.bindTooltip(
`<div>
شركة الخلاياء الشمسيه التجارية
</div>`,
{
"sticky": true,
}
);
marker_4af0072625260a4aed36045fedab0c60.setIcon(icon_8d2318bddb039b77eb53e642a2b9d352);
var marker_617158f1de5e84e313cf1b86e70943e6 = L.marker(
[26.45405149075778, 50.02347192810305],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_b1cef583b05c882d064c8a30002e2052 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e3a5dfadf70124c739bd88925d7be969 = L.popup({
"maxWidth": 320,
});
var html_8ef745418c1c08426a7d95a0bc3e39ea = $(`<div id="html_8ef745418c1c08426a7d95a0bc3e39ea" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة نطاق الابعاد للصناعة شخص واحد</b><br> السجل التجاري: 2050178173<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.45405149075778,50.02347192810305" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e3a5dfadf70124c739bd88925d7be969.setContent(html_8ef745418c1c08426a7d95a0bc3e39ea);
marker_617158f1de5e84e313cf1b86e70943e6.bindPopup(popup_e3a5dfadf70124c739bd88925d7be969)
;
marker_617158f1de5e84e313cf1b86e70943e6.bindTooltip(
`<div>
شركة نطاق الابعاد للصناعة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_617158f1de5e84e313cf1b86e70943e6.setIcon(icon_b1cef583b05c882d064c8a30002e2052);
var marker_c54e0ba9132321609c51ef3bd30e10c8 = L.marker(
[26.45444146, 50.01995153],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_5d42fb38155f4aae6129ff4188cd6f14 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_eb8ff207b6045e1a3c0b34eec40eeebf = L.popup({
"maxWidth": 320,
});
var html_f1aea4740aeebf5c7851009e68dacaf1 = $(`<div id="html_f1aea4740aeebf5c7851009e68dacaf1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة سدرة المعدات للتجارة</b><br> السجل التجاري: 2050042163<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.45444146,50.01995153" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_eb8ff207b6045e1a3c0b34eec40eeebf.setContent(html_f1aea4740aeebf5c7851009e68dacaf1);
marker_c54e0ba9132321609c51ef3bd30e10c8.bindPopup(popup_eb8ff207b6045e1a3c0b34eec40eeebf)
;
marker_c54e0ba9132321609c51ef3bd30e10c8.bindTooltip(
`<div>
شركة سدرة المعدات للتجارة
</div>`,
{
"sticky": true,
}
);
marker_c54e0ba9132321609c51ef3bd30e10c8.setIcon(icon_5d42fb38155f4aae6129ff4188cd6f14);
var marker_ad8f705931a7d16ac8dc9b8501242a2d = L.marker(
[26.45544711, 50.01871451],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_e1504f052a6ff4e6bc05d3b8a7cc9d8c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_06441dd1cef5931fc3fbab4e7399f66f = L.popup({
"maxWidth": 320,
});
var html_839716c226668db417af6bf9389140a3 = $(`<div id="html_839716c226668db417af6bf9389140a3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة رافعة الشرقية لتأجير المعدات</b><br> السجل التجاري: 2050144278<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.45544711,50.01871451" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_06441dd1cef5931fc3fbab4e7399f66f.setContent(html_839716c226668db417af6bf9389140a3);
marker_ad8f705931a7d16ac8dc9b8501242a2d.bindPopup(popup_06441dd1cef5931fc3fbab4e7399f66f)
;
marker_ad8f705931a7d16ac8dc9b8501242a2d.bindTooltip(
`<div>
شركة رافعة الشرقية لتأجير المعدات
</div>`,
{
"sticky": true,
}
);
marker_ad8f705931a7d16ac8dc9b8501242a2d.setIcon(icon_e1504f052a6ff4e6bc05d3b8a7cc9d8c);
var marker_3ef505499323c2b1371a72838922c43e = L.marker(
[26.4558274309315, 50.0269409055684],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_2d7a04776262e85105a7d092463d3ed2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0c28970361276e5ad83bbcb7e6f9ccb5 = L.popup({
"maxWidth": 320,
});
var html_636a9dbbb013cbf7d0f9d1e76446d936 = $(`<div id="html_636a9dbbb013cbf7d0f9d1e76446d936" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة رايسكو للتجارة شركة شخص واحد</b><br> السجل التجاري: 2050170531<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.4558274309315,50.0269409055684" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0c28970361276e5ad83bbcb7e6f9ccb5.setContent(html_636a9dbbb013cbf7d0f9d1e76446d936);
marker_3ef505499323c2b1371a72838922c43e.bindPopup(popup_0c28970361276e5ad83bbcb7e6f9ccb5)
;
marker_3ef505499323c2b1371a72838922c43e.bindTooltip(
`<div>
شركة رايسكو للتجارة شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_3ef505499323c2b1371a72838922c43e.setIcon(icon_2d7a04776262e85105a7d092463d3ed2);
var marker_376a325bfc0dbbf2155b2affe181c79e = L.marker(
[26.45611048, 50.0185935],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_af522ad0c9dc727556576ea73997e586 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_56d4fac58a6199898908d04bc72ebac5 = L.popup({
"maxWidth": 320,
});
var html_f86e0bf84059e1fe707e870fe339cc41 = $(`<div id="html_f86e0bf84059e1fe707e870fe339cc41" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة هادي دولية للتجارة</b><br> السجل التجاري: 2050127066<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.45611048,50.0185935" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_56d4fac58a6199898908d04bc72ebac5.setContent(html_f86e0bf84059e1fe707e870fe339cc41);
marker_376a325bfc0dbbf2155b2affe181c79e.bindPopup(popup_56d4fac58a6199898908d04bc72ebac5)
;
marker_376a325bfc0dbbf2155b2affe181c79e.bindTooltip(
`<div>
شركة هادي دولية للتجارة
</div>`,
{
"sticky": true,
}
);
marker_376a325bfc0dbbf2155b2affe181c79e.setIcon(icon_af522ad0c9dc727556576ea73997e586);
var marker_a367620f942ab560c3898fe4075fc415 = L.marker(
[26.45673933, 50.02463457],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_b4ac37cc5e58327159038b0fd8d1f828 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_eb9eca9643f0f519e775f39ff4dd8ed4 = L.popup({
"maxWidth": 320,
});
var html_53c672b12ca70ef3189cbf6c06c0b6dc = $(`<div id="html_53c672b12ca70ef3189cbf6c06c0b6dc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة ورشة فواز مساعد الخالدي للحدادة</b><br> السجل التجاري: 2050097581<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.45673933,50.02463457" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_eb9eca9643f0f519e775f39ff4dd8ed4.setContent(html_53c672b12ca70ef3189cbf6c06c0b6dc);
marker_a367620f942ab560c3898fe4075fc415.bindPopup(popup_eb9eca9643f0f519e775f39ff4dd8ed4)
;
marker_a367620f942ab560c3898fe4075fc415.bindTooltip(
`<div>
شركة ورشة فواز مساعد الخالدي للحدادة
</div>`,
{
"sticky": true,
}
);
marker_a367620f942ab560c3898fe4075fc415.setIcon(icon_b4ac37cc5e58327159038b0fd8d1f828);
var marker_65c637a4e06233137b8975947300a43d = L.marker(
[26.45767073, 50.01771166],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_fea0c1fc86f6db726fb02c46de6504e8 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c6bc27e7426892de39c590d66a2d9b76 = L.popup({
"maxWidth": 320,
});
var html_e1bee5ca2a4ee420fc8d1482c40e8ba9 = $(`<div id="html_e1bee5ca2a4ee420fc8d1482c40e8ba9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>مؤسسة الشاطي الشرقي التجارية</b><br> السجل التجاري: 2055011457<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.45767073,50.01771166" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c6bc27e7426892de39c590d66a2d9b76.setContent(html_e1bee5ca2a4ee420fc8d1482c40e8ba9);
marker_65c637a4e06233137b8975947300a43d.bindPopup(popup_c6bc27e7426892de39c590d66a2d9b76)
;
marker_65c637a4e06233137b8975947300a43d.bindTooltip(
`<div>
مؤسسة الشاطي الشرقي التجارية
</div>`,
{
"sticky": true,
}
);
marker_65c637a4e06233137b8975947300a43d.setIcon(icon_fea0c1fc86f6db726fb02c46de6504e8);
var marker_a66c723004968eec37f46ee7c95cf4ca = L.marker(
[26.4591912299999, 50.0156416299999],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_0e07bf02aa324a63e7dddb11d00bfb24 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5f2d2562a9e759904a566e4dedc6c69c = L.popup({
"maxWidth": 320,
});
var html_ffa2933c71ffefe131893996cac4693e = $(`<div id="html_ffa2933c71ffefe131893996cac4693e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة روائع الفنية العربية المحدودة شركة شخص واحد</b><br> السجل التجاري: 2050119643<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.4591912299999,50.0156416299999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5f2d2562a9e759904a566e4dedc6c69c.setContent(html_ffa2933c71ffefe131893996cac4693e);
marker_a66c723004968eec37f46ee7c95cf4ca.bindPopup(popup_5f2d2562a9e759904a566e4dedc6c69c)
;
marker_a66c723004968eec37f46ee7c95cf4ca.bindTooltip(
`<div>
شركة روائع الفنية العربية المحدودة شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_a66c723004968eec37f46ee7c95cf4ca.setIcon(icon_0e07bf02aa324a63e7dddb11d00bfb24);
var marker_d9e899dd9eda147b29926df55cd9b809 = L.marker(
[26.459556656188, 50.0228332047752],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_a2d7487ac1b277f98c4badb13209e049 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e691749290d6bf051fb82be60e0bc534 = L.popup({
"maxWidth": 320,
});
var html_326ecbd43098fe2b60ac3af2c8b31462 = $(`<div id="html_326ecbd43098fe2b60ac3af2c8b31462" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة اوتاد العالمية</b><br> السجل التجاري: 2050057071<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.459556656188,50.0228332047752" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e691749290d6bf051fb82be60e0bc534.setContent(html_326ecbd43098fe2b60ac3af2c8b31462);
marker_d9e899dd9eda147b29926df55cd9b809.bindPopup(popup_e691749290d6bf051fb82be60e0bc534)
;
marker_d9e899dd9eda147b29926df55cd9b809.bindTooltip(
`<div>
شركة اوتاد العالمية
</div>`,
{
"sticky": true,
}
);
marker_d9e899dd9eda147b29926df55cd9b809.setIcon(icon_a2d7487ac1b277f98c4badb13209e049);
var marker_0afab446f93361bddceab712e4a656df = L.marker(
[26.4601001899999, 50.01594566],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_7bc894afa5f185806774ef11492605d0 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0aabe8e5ba71731d8dfc4c77666b04f5 = L.popup({
"maxWidth": 320,
});
var html_656ba9cde94391fb0e125f86b966c1b5 = $(`<div id="html_656ba9cde94391fb0e125f86b966c1b5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة ماهي للحلول الهيدروليكية للتجارة</b><br> السجل التجاري: 2062035141<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.4601001899999,50.01594566" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0aabe8e5ba71731d8dfc4c77666b04f5.setContent(html_656ba9cde94391fb0e125f86b966c1b5);
marker_0afab446f93361bddceab712e4a656df.bindPopup(popup_0aabe8e5ba71731d8dfc4c77666b04f5)
;
marker_0afab446f93361bddceab712e4a656df.bindTooltip(
`<div>
شركة ماهي للحلول الهيدروليكية للتجارة
</div>`,
{
"sticky": true,
}
);
marker_0afab446f93361bddceab712e4a656df.setIcon(icon_7bc894afa5f185806774ef11492605d0);
var marker_a2ea8ee2484f335ad020cf6b4493c80c = L.marker(
[26.4625258148467, 50.01780766771284],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_e5353dcd1af7a143dbb90850b255a0a9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_676cc032e5c3c490bb1c0bf420a43256 = L.popup({
"maxWidth": 320,
});
var html_b795a3958cf632c0db6301b5114217d3 = $(`<div id="html_b795a3958cf632c0db6301b5114217d3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة افاق الاعمال الخليجية الصناعية</b><br> السجل التجاري: 2050146545<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.4625258148467,50.01780766771284" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_676cc032e5c3c490bb1c0bf420a43256.setContent(html_b795a3958cf632c0db6301b5114217d3);
marker_a2ea8ee2484f335ad020cf6b4493c80c.bindPopup(popup_676cc032e5c3c490bb1c0bf420a43256)
;
marker_a2ea8ee2484f335ad020cf6b4493c80c.bindTooltip(
`<div>
شركة افاق الاعمال الخليجية الصناعية
</div>`,
{
"sticky": true,
}
);
marker_a2ea8ee2484f335ad020cf6b4493c80c.setIcon(icon_e5353dcd1af7a143dbb90850b255a0a9);
var marker_0c78519dd53111755fcb4e4b3224b06f = L.marker(
[26.46260624, 50.0198785799999],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_9fc8cfbafb3be518cdad8b07c213c47e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9d0b637fa922e8332a9014b61b5cd781 = L.popup({
"maxWidth": 320,
});
var html_5faa1f460061e80dcc89e6243d4312a0 = $(`<div id="html_5faa1f460061e80dcc89e6243d4312a0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة القصور الطبيعية للرخام والحجر</b><br> السجل التجاري: 2050073610<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.46260624,50.0198785799999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9d0b637fa922e8332a9014b61b5cd781.setContent(html_5faa1f460061e80dcc89e6243d4312a0);
marker_0c78519dd53111755fcb4e4b3224b06f.bindPopup(popup_9d0b637fa922e8332a9014b61b5cd781)
;
marker_0c78519dd53111755fcb4e4b3224b06f.bindTooltip(
`<div>
شركة القصور الطبيعية للرخام والحجر
</div>`,
{
"sticky": true,
}
);
marker_0c78519dd53111755fcb4e4b3224b06f.setIcon(icon_9fc8cfbafb3be518cdad8b07c213c47e);
var marker_753ad3f9874f2a056636865f2345d0ba = L.marker(
[26.4628803499999, 50.02543242],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_a1ba359e6e99da9d461bd3432473bfdf = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7dd51dfdca84810a3da016dd1931020e = L.popup({
"maxWidth": 320,
});
var html_7632a00567c87bb389a48ba158c024d1 = $(`<div id="html_7632a00567c87bb389a48ba158c024d1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة ماس روز التجارية</b><br> السجل التجاري: 2050139566<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.4628803499999,50.02543242" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7dd51dfdca84810a3da016dd1931020e.setContent(html_7632a00567c87bb389a48ba158c024d1);
marker_753ad3f9874f2a056636865f2345d0ba.bindPopup(popup_7dd51dfdca84810a3da016dd1931020e)
;
marker_753ad3f9874f2a056636865f2345d0ba.bindTooltip(
`<div>
شركة ماس روز التجارية
</div>`,
{
"sticky": true,
}
);
marker_753ad3f9874f2a056636865f2345d0ba.setIcon(icon_a1ba359e6e99da9d461bd3432473bfdf);
var marker_9f9907bb2390a94b6e1a5a8c21248dfa = L.marker(
[26.46406473, 50.01941875],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_379c7406564013b615c8d34dba985669 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7e2d3cd67a6a1dbfb40c4a009a3ab4e8 = L.popup({
"maxWidth": 320,
});
var html_dfaed8fc8bc76ac278f3959bbac84d0d = $(`<div id="html_dfaed8fc8bc76ac278f3959bbac84d0d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة جنى الإنماء للتجارة والمقاولات</b><br> السجل التجاري: 2053117405<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.46406473,50.01941875" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7e2d3cd67a6a1dbfb40c4a009a3ab4e8.setContent(html_dfaed8fc8bc76ac278f3959bbac84d0d);
marker_9f9907bb2390a94b6e1a5a8c21248dfa.bindPopup(popup_7e2d3cd67a6a1dbfb40c4a009a3ab4e8)
;
marker_9f9907bb2390a94b6e1a5a8c21248dfa.bindTooltip(
`<div>
شركة جنى الإنماء للتجارة والمقاولات
</div>`,
{
"sticky": true,
}
);
marker_9f9907bb2390a94b6e1a5a8c21248dfa.setIcon(icon_379c7406564013b615c8d34dba985669);
var marker_70c2b7eba7942befd70dd9c4aee713d3 = L.marker(
[26.4644389199999, 50.02163625],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_d724a5c997c31be66b790d5a3e77d54f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d40b4db8bde77cc817255e34d08f51f0 = L.popup({
"maxWidth": 320,
});
var html_5a096de523bf82bb37f8202824bcb185 = $(`<div id="html_5a096de523bf82bb37f8202824bcb185" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة سراي الخليج التجارية</b><br> السجل التجاري: 2050111465<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.4644389199999,50.02163625" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d40b4db8bde77cc817255e34d08f51f0.setContent(html_5a096de523bf82bb37f8202824bcb185);
marker_70c2b7eba7942befd70dd9c4aee713d3.bindPopup(popup_d40b4db8bde77cc817255e34d08f51f0)
;
marker_70c2b7eba7942befd70dd9c4aee713d3.bindTooltip(
`<div>
شركة سراي الخليج التجارية
</div>`,
{
"sticky": true,
}
);
marker_70c2b7eba7942befd70dd9c4aee713d3.setIcon(icon_d724a5c997c31be66b790d5a3e77d54f);
var marker_1b44e10ab80dd5aa18e0a0272ff15643 = L.marker(
[26.46452215450648, 50.01623410731554],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_0f428232a918dc07673df56ac6fd076e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_95713574c908c476fafae902bfbe167f = L.popup({
"maxWidth": 320,
});
var html_b6802c1c5cda803ed728021f89788cd6 = $(`<div id="html_b6802c1c5cda803ed728021f89788cd6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الليث العالمية للمقاولات العامة</b><br> السجل التجاري: 2050186152<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.46452215450648,50.01623410731554" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_95713574c908c476fafae902bfbe167f.setContent(html_b6802c1c5cda803ed728021f89788cd6);
marker_1b44e10ab80dd5aa18e0a0272ff15643.bindPopup(popup_95713574c908c476fafae902bfbe167f)
;
marker_1b44e10ab80dd5aa18e0a0272ff15643.bindTooltip(
`<div>
شركة الليث العالمية للمقاولات العامة
</div>`,
{
"sticky": true,
}
);
marker_1b44e10ab80dd5aa18e0a0272ff15643.setIcon(icon_0f428232a918dc07673df56ac6fd076e);
var marker_36ab04368d21b418d9ae1aea960a3e8e = L.marker(
[26.46492213, 50.0187320699999],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_fa00622317e15d4afe9d0395188a515a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f512003dbb0be62e75a9a2232b0e9e97 = L.popup({
"maxWidth": 320,
});
var html_d3886230f63d973612082cb0bfe4dce1 = $(`<div id="html_d3886230f63d973612082cb0bfe4dce1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة لمسات عالية للمقاولات شركة شخص واحد</b><br> السجل التجاري: 2050219984<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.46492213,50.0187320699999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f512003dbb0be62e75a9a2232b0e9e97.setContent(html_d3886230f63d973612082cb0bfe4dce1);
marker_36ab04368d21b418d9ae1aea960a3e8e.bindPopup(popup_f512003dbb0be62e75a9a2232b0e9e97)
;
marker_36ab04368d21b418d9ae1aea960a3e8e.bindTooltip(
`<div>
شركة لمسات عالية للمقاولات شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_36ab04368d21b418d9ae1aea960a3e8e.setIcon(icon_fa00622317e15d4afe9d0395188a515a);
var marker_065d3ccb48d299385e760b961e3d0bfb = L.marker(
[26.46531654, 50.02090127],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_c7dd73efb65f5ddc99a1fced519b3835 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4aa12d0f2190c7c4efff5c0f13c50911 = L.popup({
"maxWidth": 320,
});
var html_d8372b53496b926665452000742f1eda = $(`<div id="html_d8372b53496b926665452000742f1eda" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركه دار الماركات العالمية للتجارة</b><br> السجل التجاري: 2050106640<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.46531654,50.02090127" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4aa12d0f2190c7c4efff5c0f13c50911.setContent(html_d8372b53496b926665452000742f1eda);
marker_065d3ccb48d299385e760b961e3d0bfb.bindPopup(popup_4aa12d0f2190c7c4efff5c0f13c50911)
;
marker_065d3ccb48d299385e760b961e3d0bfb.bindTooltip(
`<div>
شركه دار الماركات العالمية للتجارة
</div>`,
{
"sticky": true,
}
);
marker_065d3ccb48d299385e760b961e3d0bfb.setIcon(icon_c7dd73efb65f5ddc99a1fced519b3835);
var marker_5f528207a6012bb51cc19b2bd48427ba = L.marker(
[26.46596130910549, 50.01920736190598],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_370cc09df71af788a810ecae0008522a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2d245951c0aeb0e4b9667fd5276fe93f = L.popup({
"maxWidth": 320,
});
var html_cc01e73068b18f84a64313bc8de3d49a = $(`<div id="html_cc01e73068b18f84a64313bc8de3d49a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة صحارى الشرق للصناعة</b><br> السجل التجاري: 2050196127<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.46596130910549,50.01920736190598" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2d245951c0aeb0e4b9667fd5276fe93f.setContent(html_cc01e73068b18f84a64313bc8de3d49a);
marker_5f528207a6012bb51cc19b2bd48427ba.bindPopup(popup_2d245951c0aeb0e4b9667fd5276fe93f)
;
marker_5f528207a6012bb51cc19b2bd48427ba.bindTooltip(
`<div>
شركة صحارى الشرق للصناعة
</div>`,
{
"sticky": true,
}
);
marker_5f528207a6012bb51cc19b2bd48427ba.setIcon(icon_370cc09df71af788a810ecae0008522a);
var marker_fc0a0b69cd8704848fb5bbb8db892185 = L.marker(
[26.46605273, 50.01915701],
{
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
var icon_19178a85756ca2bee1929679c62b102e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cba32c6731a1ab620e0deb32a58c9446 = L.popup({
"maxWidth": 320,
});
var html_f5f55f5bf40b13d07106970bbfdcb51f = $(`<div id="html_f5f55f5bf40b13d07106970bbfdcb51f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة ابات عصرية للرخام والحجر</b><br> السجل التجاري: 2050233791<br> المنطقة: الدمام<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.46605273,50.01915701" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cba32c6731a1ab620e0deb32a58c9446.setContent(html_f5f55f5bf40b13d07106970bbfdcb51f);
marker_fc0a0b69cd8704848fb5bbb8db892185.bindPopup(popup_cba32c6731a1ab620e0deb32a58c9446)
;
marker_fc0a0b69cd8704848fb5bbb8db892185.bindTooltip(
`<div>
شركة ابات عصرية للرخام والحجر
</div>`,
{
"sticky": true,
}
);
marker_fc0a0b69cd8704848fb5bbb8db892185.setIcon(icon_19178a85756ca2bee1929679c62b102e);
map_dbd32fc871408882114445db0c042e5d.fitBounds(
[[26.4505476204527, 50.03351058868917], [26.45100479138747, 50.03832162365294], [26.45124254049223, 50.03378381356782], [26.45128224625874, 50.01852382312035], [26.45172227, 50.0219371399999], [26.45405149075778, 50.02347192810305], [26.45444146, 50.01995153], [26.45544711, 50.01871451], [26.4558274309315, 50.0269409055684], [26.45611048, 50.0185935], [26.45673933, 50.02463457], [26.45767073, 50.01771166], [26.4591912299999, 50.0156416299999], [26.459556656188, 50.0228332047752], [26.4601001899999, 50.01594566], [26.4625258148467, 50.01780766771284], [26.46260624, 50.0198785799999], [26.4628803499999, 50.02543242], [26.46406473, 50.01941875], [26.4644389199999, 50.02163625], [26.46452215450648, 50.01623410731554], [26.46492213, 50.0187320699999], [26.46531654, 50.02090127], [26.46596130910549, 50.01920736190598], [26.46605273, 50.01915701]],
{"padding": [30, 30]}
);
var layer_control_f406a79888df8ae125ebc672d8779563_layers = {
base_layers : {
"\u062e\u0631\u064a\u0637\u0629 \u0627\u0644\u0634\u0627\u0631\u0639" : tile_layer_6a2c4dd6300533608e53a07527909594,
"\u0623\u0642\u0645\u0627\u0631 \u0635\u0646\u0627\u0639\u064a\u0629 (Esri)" : tile_layer_3a45f4922d05cd89c681f9b3d3106985,
},
overlays : {
},
};
let layer_control_f406a79888df8ae125ebc672d8779563 = L.control.layers(
layer_control_f406a79888df8ae125ebc672d8779563_layers.base_layers,
layer_control_f406a79888df8ae125ebc672d8779563_layers.overlays,
{
"position": "topright",
"collapsed": false,
"autoZIndex": true,
}
).addTo(map_dbd32fc871408882114445db0c042e5d);
</script>
</html> |