cf98e46
| 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 | <!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_f9699e9440750e38b2b50bde2ec578ef {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<style>html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
<style>#map {
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
}
</style>
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-locatecontrol/0.66.2/L.Control.Locate.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet-locatecontrol/0.66.2/L.Control.Locate.min.css"/>
</head>
<body>
<div class="desktop-stats-toggle" style="position:fixed;top:10px;right:10px;z-index:10000;direction:rtl;font-family:Arial,sans-serif;">
<button id="btn_stats_23" onclick="
var panel = document.getElementById('stats_23');
var btn = document.getElementById('btn_stats_23');
if (panel.style.display === 'none') {
panel.style.display = 'block'; btn.innerText = 'إخفاء';
} else {
panel.style.display = 'none'; btn.innerText = 'عرض الملخص';
}
" style="
background:rgba(255,255,255,0.92);border:none;border-radius:14px;padding:10px 14px;
font-size:14px;font-weight:bold;cursor:pointer;box-shadow:0 2px 10px rgba(0,0,0,0.18);
">إخفاء</button>
</div>
<div id="stats_23" class="stats-panel mobile-map-sheet" style="
display:block;position:fixed;top:10px;right:58px;width:330px;max-height:85vh;overflow-y:auto;
background:rgba(255,255,255,0.88);backdrop-filter:blur(4px);border-radius:22px;
padding:18px 18px 16px 18px;z-index:9999;direction:rtl;font-family:Arial,sans-serif;
box-shadow:0 8px 28px rgba(0,0,0,0.16);line-height:1.9;color:#222;
">
<div style="font-size:18px;font-weight:800;text-align:center;margin-bottom:10px;">أروى سعيد بن عبدالله</div>
<div style="font-size:15px;">
<div><b>عدد المواقع بإحداثية:</b> 24</div>
<div><b>عدد الحارات:</b> 5</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• الراكة الجنوبية: 9</div><div>• الجوهرة: 5</div><div>• الحزام الأخضر: 4</div><div>• مدينة العمال: 3</div><div>• الحزام الذهبي: 3</div></div>
</div>
<div style="margin-top:14px;padding-top:10px;border-top:1px solid rgba(0,0,0,0.08);">
<a href="report_23_أروى_سعيد_بن_عبدالله.pdf" target="_blank" style="
display:block;text-align:center;background:#16a34a;color:#fff;text-decoration:none;
padding:10px 12px;border-radius:12px;font-weight:700;margin-bottom:8px;
">تصدير بيانات هذه الخريطة PDF</a>
<a href="report_23_أروى_سعيد_بن_عبدالله.xlsx" target="_blank" style="
display:block;text-align:center;background:#2563eb;color:#fff;text-decoration:none;
padding:10px 12px;border-radius:12px;font-weight:700;margin-bottom:8px;
">تصدير بيانات هذه الخريطة Excel</a>
<div style="font-size:13px;"><div style='font-weight:700;margin-bottom:6px;'>ألوان الحارات للعينات الأساسية</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="width:12px;height:12px;border-radius:50%;display:inline-block;background:#0E7490;border:1px solid rgba(0,0,0,0.15);"></span>
<span>الراكة الجنوبية</span>
</div>
<span style="color:#555;">(9)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="width:12px;height:12px;border-radius:50%;display:inline-block;background:#0E7490;border:1px solid rgba(0,0,0,0.15);"></span>
<span>الجوهرة</span>
</div>
<span style="color:#555;">(5)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="width:12px;height:12px;border-radius:50%;display:inline-block;background:#C026D3;border:1px solid rgba(0,0,0,0.15);"></span>
<span>الحزام الأخضر</span>
</div>
<span style="color:#555;">(4)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="width:12px;height:12px;border-radius:50%;display:inline-block;background:#C026D3;border:1px solid rgba(0,0,0,0.15);"></span>
<span>مدينة العمال</span>
</div>
<span style="color:#555;">(3)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:4px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="width:12px;height:12px;border-radius:50%;display:inline-block;background:#7C2D12;border:1px solid rgba(0,0,0,0.15);"></span>
<span>الحزام الذهبي</span>
</div>
<span style="color:#555;">(3)</span>
</div>
</div>
</div>
</div>
<div id="searchBoxPanel" class="desktop-search-panel mobile-map-sheet" style="position:fixed;top:10px;left:10px;z-index:10000;direction:rtl;font-family:Arial,sans-serif;">
<input id="mapSearchInput" type="text" placeholder="ابحث عن اسم المنشأة..."
style="width:300px;box-sizing:border-box;padding:10px;border-radius:12px;border:1px solid #ccc;font-size:14px;direction:rtl;">
<div id="searchCount" style="margin-top:7px;font-size:13px;color:#334155;background:rgba(255,255,255,.88);padding:5px 8px;border-radius:10px;">
اكتب للبحث داخل نقاط الخريطة
</div>
</div>
<div id="mobileMapToolbar">
<button id="mobileSearchBtn" type="button" onclick="toggleMobileSheet('search')">بحث</button>
<button id="mobileStatsBtn" type="button" onclick="toggleMobileSheet('stats')">الملخص والتصدير</button>
</div>
<style>
#mobileMapToolbar {
display:none;
}
@media (max-width: 768px) {
.desktop-stats-toggle {
display:none !important;
}
.mobile-map-sheet {
display:none !important;
position:fixed !important;
top:auto !important;
right:10px !important;
left:10px !important;
bottom:72px !important;
width:auto !important;
max-height:68vh !important;
overflow-y:auto !important;
box-sizing:border-box !important;
z-index:10900 !important;
border-radius:20px !important;
background:rgba(255,255,255,0.96) !important;
box-shadow:0 8px 30px rgba(0,0,0,0.28) !important;
padding:14px !important;
}
.mobile-map-sheet.mobile-open {
display:block !important;
}
#searchBoxPanel input {
width:100% !important;
min-height:44px !important;
font-size:16px !important;
}
#mobileMapToolbar {
display:flex;
position:fixed;
right:10px;
left:10px;
bottom:10px;
z-index:11000;
gap:8px;
padding:7px;
direction:rtl;
border-radius:16px;
background:rgba(255,255,255,0.94);
box-shadow:0 4px 18px rgba(0,0,0,0.24);
font-family:Arial, sans-serif;
}
#mobileMapToolbar button {
flex:1;
min-height:46px;
border:0;
border-radius:12px;
background:#f1f5f9;
color:#1f2937;
font-size:14px;
font-weight:700;
cursor:pointer;
}
#mobileMapToolbar button.active {
background:#2563eb;
color:#fff;
}
.map-footer {
display:none !important;
}
.leaflet-control-zoom,
.leaflet-control-locate {
margin-bottom:82px !important;
}
.leaflet-popup-content {
max-width:calc(100vw - 80px) !important;
}
}
</style>
<script>
window.searchableMarkers = [];
function setMobileButtonState(activeTarget) {
var searchBtn = document.getElementById("mobileSearchBtn");
var statsBtn = document.getElementById("mobileStatsBtn");
if (searchBtn) searchBtn.classList.toggle("active", activeTarget === "search");
if (statsBtn) statsBtn.classList.toggle("active", activeTarget === "stats");
}
function closeMobileSheets() {
var searchPanel = document.getElementById("searchBoxPanel");
var statsPanel = document.querySelector(".stats-panel");
if (searchPanel) searchPanel.classList.remove("mobile-open");
if (statsPanel) statsPanel.classList.remove("mobile-open");
setMobileButtonState("");
}
function toggleMobileSheet(target) {
var searchPanel = document.getElementById("searchBoxPanel");
var statsPanel = document.querySelector(".stats-panel");
var targetPanel = target === "search" ? searchPanel : statsPanel;
var willOpen = targetPanel && !targetPanel.classList.contains("mobile-open");
closeMobileSheets();
if (willOpen) {
targetPanel.classList.add("mobile-open");
setMobileButtonState(target);
if (target === "search") {
setTimeout(function() {
var input = document.getElementById("mapSearchInput");
if (input) input.focus();
}, 100);
}
}
}
setTimeout(function() {
var input = document.getElementById("mapSearchInput");
var count = document.getElementById("searchCount");
if (!input) return;
input.addEventListener("input", function() {
var q = input.value.trim().toLowerCase();
var found = 0;
window.searchableMarkers.forEach(function(item) {
var ok = !q || item.name.toLowerCase().indexOf(q) >= 0;
if (item.layer && item.map) {
if (ok) {
if (!item.map.hasLayer(item.layer)) item.layer.addTo(item.map);
found += 1;
} else {
if (item.map.hasLayer(item.layer)) item.map.removeLayer(item.layer);
}
}
});
count.innerText = q ? ("نتائج البحث: " + found) : "اكتب للبحث داخل نقاط الخريطة";
});
}, 1000);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة جاكوبس للاستشارات الهندسية شركة شخص واحد",
layer: marker_0b94c06936507952a9eb07d9b74f1e12,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة عيادات شام لطب و تقويم الاسنان والجلدية",
layer: marker_59724dd61076506483b8c832d8fc2de2,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة ال سالم يورك للخدمات المحدودة",
layer: marker_094bde0e57e08c89805b902edc2cf156,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة تناقيب للمقاولات العامة المحدودة شركة شخص واحد",
layer: marker_3f34b84529f2503990e0c7eb5e01693b,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة فورتون انجينيرينج اند انيرجي سيرفيسز السعودية",
layer: marker_2dde6ed53179acfd390ae0a42ab10a12,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة البترول والبتروكيماويات للخدمات الصناعية المسانده شركة شخص واحد",
layer: marker_aaed244926255dab7e2c566c0f29db0b,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "مؤسسة محمد بن ابراهيم بن جاسم الجاسم لنقل البريد",
layer: marker_9f693458ed20b1957b4b8afe98578f79,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة أيان للاستثمار",
layer: marker_4fd713f0ffdf1fc356c7fcd972d7fb3a,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة مركز العناية بالجمال لطب وتقويم الاسنان والجلدية شركة شخص واحد",
layer: marker_325415b503e7be19454e036e994c9d23,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة جاك رايك الرشيد للمقاولات والخدمات المحدودة",
layer: marker_2106cf62f13fba10865b4b533a633e39,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة منظومة المباني للخرسانة المسبوقة الصنع المحدودة شركة شخص واحد",
layer: marker_7adff06f09c4d5f4c4c1bd86ae915174,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة أم أي أ العربية للمقاولات",
layer: marker_14abfc6cbafc5ed636924bc493d92be4,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة الخدمات التكاملية للاستشارات الهندسية",
layer: marker_1d884bd701e816a13ce915950574ef36,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة فندق كمبينسكي العثمان المحدودة شركة شخص واحد",
layer: marker_a41f386749daba71b72ba283c09fe907,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة كيلوج براون اند رووت السعودية المحدودة",
layer: marker_2f15e578fbd0630eb2359adcaf7a43f9,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة مدرسه اسيا العالمية",
layer: marker_bf6d62eeeda6a37b7c71e224c7f96721,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة إيه دي إن إتش كاترينغ",
layer: marker_a70ee1ea8f5bca9e71bad110704aee74,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة تهامه لتوليد الطاقه المحدودة",
layer: marker_65067860754a96027a46485aa570a552,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "الشركة العربيه للمنتجات الورقية",
layer: marker_a42c740b94dbcac4e3db93913a9fc9f5,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة وورلي بارسونز للاستشارات الهندسية",
layer: marker_c847ce3c9457a4d50ca7b02c1c062bf3,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة ريسا الخليجية للسقالات المحدودة",
layer: marker_b6d86e20d4c6313107740353f07d1fd0,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة مصادر لخدمات الموارد البشرية شركة مساهمة سعودية مقفلة",
layer: marker_7c41eb94c3dda0121589317441d4c792,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة الحقيط للمقاولات العامة",
layer: marker_a377e8b98949ac1428f872423839fb09,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة سينوبك انجينيرنج قروب السعودية المحدودة",
layer: marker_e4f70eefed26a903f5150699a81fc916,
map: map_f9699e9440750e38b2b50bde2ec578ef
});
}, 800);
</script>
<div class="map-footer" style="
position: fixed;
bottom: 8px;
left: 8px;
background: rgba(255,255,255,0.85);
padding: 6px 10px;
border-radius: 10px;
font-size: 13px;
direction: rtl;
z-index: 9999;
box-shadow: 0 1px 8px rgba(0,0,0,0.15);
">
تصميم وإعداد <b>نوف الناصر</b>
</div>
<div class="folium-map" id="map_f9699e9440750e38b2b50bde2ec578ef" ></div>
</body>
<script>
var map_f9699e9440750e38b2b50bde2ec578ef = L.map(
"map_f9699e9440750e38b2b50bde2ec578ef",
{
center: [26.3273493434493, 50.20092652881497],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_c55d386ab5517a0eb967f1713d3230c6 = 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_c55d386ab5517a0eb967f1713d3230c6.addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var tile_layer_e72f3a908127e05d7ba6b5045d62baba = 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_e72f3a908127e05d7ba6b5045d62baba.addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var tile_layer_70d4ddf3270807f4f85a663070d07155 = 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_70d4ddf3270807f4f85a663070d07155.addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var locate_control_2ba197f336fe008c0a9adc8faae9c3ca = L.control.locate(
{}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var marker_0b94c06936507952a9eb07d9b74f1e12 = L.marker(
[26.2842624834236, 50.1986635089586],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_78b6257cc02804579c6338fbd2f7fdd4 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#C026D3;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_0835152ffff7506b31097f661d6e7317 = L.popup({
"maxWidth": 340,
});
var html_64861209bae70f5db13ab3fffb161cb0 = $(`<div id="html_64861209bae70f5db13ab3fffb161cb0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة جاكوبس للاستشارات الهندسية شركة شخص واحد</b><br> السجل التجاري: 2051058157<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> الترميز: 7110<br>الرقم الموحد: 7000007596<br> <a href="https://www.google.com/maps?q=26.2842624834236,50.1986635089586" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0835152ffff7506b31097f661d6e7317.setContent(html_64861209bae70f5db13ab3fffb161cb0);
marker_0b94c06936507952a9eb07d9b74f1e12.bindPopup(popup_0835152ffff7506b31097f661d6e7317)
;
marker_0b94c06936507952a9eb07d9b74f1e12.setIcon(div_icon_78b6257cc02804579c6338fbd2f7fdd4);
var marker_59724dd61076506483b8c832d8fc2de2 = L.marker(
[26.30488875348, 50.1969554670327],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_bb1d817da0b4c0b44632e467b515b0fe = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#C026D3;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_59ebe73eda68664952a555d2a03b013d = L.popup({
"maxWidth": 340,
});
var html_9c05f0b44308c85c013f2885b829319c = $(`<div id="html_9c05f0b44308c85c013f2885b829319c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة عيادات شام لطب و تقويم الاسنان والجلدية</b><br> السجل التجاري: 2051040705<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> الترميز: 8620<br>الرقم الموحد: 7011462590<br> <a href="https://www.google.com/maps?q=26.30488875348,50.1969554670327" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_59ebe73eda68664952a555d2a03b013d.setContent(html_9c05f0b44308c85c013f2885b829319c);
marker_59724dd61076506483b8c832d8fc2de2.bindPopup(popup_59ebe73eda68664952a555d2a03b013d)
;
marker_59724dd61076506483b8c832d8fc2de2.setIcon(div_icon_bb1d817da0b4c0b44632e467b515b0fe);
var marker_094bde0e57e08c89805b902edc2cf156 = L.marker(
[26.3525292771135, 50.2065286659376],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_d56edf9247c3747488c4b2c8c0e0fbc8 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_442f804de81e160c45e3e47c05850dad = L.popup({
"maxWidth": 340,
});
var html_9e649db41a6e71cc4ac44d2a0c61bb64 = $(`<div id="html_9e649db41a6e71cc4ac44d2a0c61bb64" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة ال سالم يورك للخدمات المحدودة</b><br> السجل التجاري: 4030109710<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> الترميز: 4322<br>الرقم الموحد: 7011981219<br> <a href="https://www.google.com/maps?q=26.3525292771135,50.2065286659376" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_442f804de81e160c45e3e47c05850dad.setContent(html_9e649db41a6e71cc4ac44d2a0c61bb64);
marker_094bde0e57e08c89805b902edc2cf156.bindPopup(popup_442f804de81e160c45e3e47c05850dad)
;
marker_094bde0e57e08c89805b902edc2cf156.setIcon(div_icon_d56edf9247c3747488c4b2c8c0e0fbc8);
var marker_3f34b84529f2503990e0c7eb5e01693b = L.marker(
[26.3188557206933, 50.2083831255691],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_a47f4d59b6d0836feef45842e9415fe0 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#7C2D12;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_8ef773dc7c620861f383a5b516a5ab6b = L.popup({
"maxWidth": 340,
});
var html_2720c5208e6ede0909a9e250582f8059 = $(`<div id="html_2720c5208e6ede0909a9e250582f8059" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة تناقيب للمقاولات العامة المحدودة شركة شخص واحد</b><br> السجل التجاري: 2051017180<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> الترميز: 3311<br>الرقم الموحد: 7001855423<br> <a href="https://www.google.com/maps?q=26.3188557206933,50.2083831255691" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8ef773dc7c620861f383a5b516a5ab6b.setContent(html_2720c5208e6ede0909a9e250582f8059);
marker_3f34b84529f2503990e0c7eb5e01693b.bindPopup(popup_8ef773dc7c620861f383a5b516a5ab6b)
;
marker_3f34b84529f2503990e0c7eb5e01693b.setIcon(div_icon_a47f4d59b6d0836feef45842e9415fe0);
var marker_2dde6ed53179acfd390ae0a42ab10a12 = L.marker(
[26.3172047206016, 50.2049358124028],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_87a56e6cb471cdbe3d238b85685a99e3 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#7C2D12;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_818ae7c427af8ecc13797e27c93fea7c = L.popup({
"maxWidth": 340,
});
var html_bba40c4053c1f9b0c530cec239ac2bbc = $(`<div id="html_bba40c4053c1f9b0c530cec239ac2bbc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة فورتون انجينيرينج اند انيرجي سيرفيسز السعودية</b><br> السجل التجاري: 2051221781<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> الترميز: 4321<br>الرقم الموحد: 7004336249<br> <a href="https://www.google.com/maps?q=26.3172047206016,50.2049358124028" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_818ae7c427af8ecc13797e27c93fea7c.setContent(html_bba40c4053c1f9b0c530cec239ac2bbc);
marker_2dde6ed53179acfd390ae0a42ab10a12.bindPopup(popup_818ae7c427af8ecc13797e27c93fea7c)
;
marker_2dde6ed53179acfd390ae0a42ab10a12.setIcon(div_icon_87a56e6cb471cdbe3d238b85685a99e3);
var marker_aaed244926255dab7e2c566c0f29db0b = L.marker(
[26.3401207852495, 50.1987142998312],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_bf17142d9a61c4811256f66695017592 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_ac7860c6e3b59c526dacd4b27256772d = L.popup({
"maxWidth": 340,
});
var html_a9a04237856d54d0c478a6ac6eed2b13 = $(`<div id="html_a9a04237856d54d0c478a6ac6eed2b13" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة البترول والبتروكيماويات للخدمات الصناعية المسانده شركة شخص واحد</b><br> السجل التجاري: 2060033647<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> الترميز: 7120<br>الرقم الموحد: 7001572424<br> <a href="https://www.google.com/maps?q=26.3401207852495,50.1987142998312" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ac7860c6e3b59c526dacd4b27256772d.setContent(html_a9a04237856d54d0c478a6ac6eed2b13);
marker_aaed244926255dab7e2c566c0f29db0b.bindPopup(popup_ac7860c6e3b59c526dacd4b27256772d)
;
marker_aaed244926255dab7e2c566c0f29db0b.setIcon(div_icon_bf17142d9a61c4811256f66695017592);
var marker_9f693458ed20b1957b4b8afe98578f79 = L.marker(
[26.3640629172209, 50.2015029756681],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_8e817142b58bcd409463b6a1e2a4bf55 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_a7684825bee537d4de9c6842bb608c8d = L.popup({
"maxWidth": 340,
});
var html_91677321b694530fd8ab9f281c209c7c = $(`<div id="html_91677321b694530fd8ab9f281c209c7c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>مؤسسة محمد بن ابراهيم بن جاسم الجاسم لنقل البريد</b><br> السجل التجاري: 2051236904<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> الترميز: 5320<br>الرقم الموحد: 7025452561<br> <a href="https://www.google.com/maps?q=26.3640629172209,50.2015029756681" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a7684825bee537d4de9c6842bb608c8d.setContent(html_91677321b694530fd8ab9f281c209c7c);
marker_9f693458ed20b1957b4b8afe98578f79.bindPopup(popup_a7684825bee537d4de9c6842bb608c8d)
;
marker_9f693458ed20b1957b4b8afe98578f79.setIcon(div_icon_8e817142b58bcd409463b6a1e2a4bf55);
var marker_4fd713f0ffdf1fc356c7fcd972d7fb3a = L.marker(
[26.3485213383364, 50.197400293514],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_7337964d16a17ab9426d975a50e7f275 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_75b476f83271d0ccbc8fc3db0cd09b37 = L.popup({
"maxWidth": 340,
});
var html_16c96d466e47aec6faab3fabeb7064a1 = $(`<div id="html_16c96d466e47aec6faab3fabeb7064a1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة أيان للاستثمار</b><br> السجل التجاري: 2051064048<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> الترميز: 4100<br>الرقم الموحد: 7003770158<br> <a href="https://www.google.com/maps?q=26.3485213383364,50.197400293514" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_75b476f83271d0ccbc8fc3db0cd09b37.setContent(html_16c96d466e47aec6faab3fabeb7064a1);
marker_4fd713f0ffdf1fc356c7fcd972d7fb3a.bindPopup(popup_75b476f83271d0ccbc8fc3db0cd09b37)
;
marker_4fd713f0ffdf1fc356c7fcd972d7fb3a.setIcon(div_icon_7337964d16a17ab9426d975a50e7f275);
var marker_325415b503e7be19454e036e994c9d23 = L.marker(
[26.3543165876188, 50.2053427551569],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_8f4283a64b7fd115820d961f6b8be1a5 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_a6497152f52e50a65c381a4812895b05 = L.popup({
"maxWidth": 340,
});
var html_6c0a693f6291de07d99399a67b3ec050 = $(`<div id="html_6c0a693f6291de07d99399a67b3ec050" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة مركز العناية بالجمال لطب وتقويم الاسنان والجلدية شركة شخص واحد</b><br> السجل التجاري: 2051050263<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> الترميز: 8620<br>الرقم الموحد: 7001734248<br> <a href="https://www.google.com/maps?q=26.3543165876188,50.2053427551569" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a6497152f52e50a65c381a4812895b05.setContent(html_6c0a693f6291de07d99399a67b3ec050);
marker_325415b503e7be19454e036e994c9d23.bindPopup(popup_a6497152f52e50a65c381a4812895b05)
;
marker_325415b503e7be19454e036e994c9d23.setIcon(div_icon_8f4283a64b7fd115820d961f6b8be1a5);
var marker_2106cf62f13fba10865b4b533a633e39 = L.marker(
[26.3352907080001, 50.195210874],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_1877b3ea44b2e8b4bf95e0a15d65271c = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_1a920841b5d9159b2efff5a51f5cd917 = L.popup({
"maxWidth": 340,
});
var html_22cf2d8fd25f494d176fbdd70daffea6 = $(`<div id="html_22cf2d8fd25f494d176fbdd70daffea6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة جاك رايك الرشيد للمقاولات والخدمات المحدودة</b><br> السجل التجاري: 2051049713<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> الترميز: 4312<br>الرقم الموحد: 7001730758<br> <a href="https://www.google.com/maps?q=26.3352907080001,50.195210874" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1a920841b5d9159b2efff5a51f5cd917.setContent(html_22cf2d8fd25f494d176fbdd70daffea6);
marker_2106cf62f13fba10865b4b533a633e39.bindPopup(popup_1a920841b5d9159b2efff5a51f5cd917)
;
marker_2106cf62f13fba10865b4b533a633e39.setIcon(div_icon_1877b3ea44b2e8b4bf95e0a15d65271c);
var marker_7adff06f09c4d5f4c4c1bd86ae915174 = L.marker(
[26.3470374739181, 50.1965234749304],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_e2cb4137f1bf44e0d6531b71c51207e3 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_c777e8fe0ef54aae24a6291dd643e27a = L.popup({
"maxWidth": 340,
});
var html_81f0ead05c6046d9cfd169065102ecd6 = $(`<div id="html_81f0ead05c6046d9cfd169065102ecd6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة منظومة المباني للخرسانة المسبوقة الصنع المحدودة شركة شخص واحد</b><br> السجل التجاري: 2051037037<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> الترميز: 2395<br>الرقم الموحد: 7001571194<br> <a href="https://www.google.com/maps?q=26.3470374739181,50.1965234749304" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c777e8fe0ef54aae24a6291dd643e27a.setContent(html_81f0ead05c6046d9cfd169065102ecd6);
marker_7adff06f09c4d5f4c4c1bd86ae915174.bindPopup(popup_c777e8fe0ef54aae24a6291dd643e27a)
;
marker_7adff06f09c4d5f4c4c1bd86ae915174.setIcon(div_icon_e2cb4137f1bf44e0d6531b71c51207e3);
var marker_14abfc6cbafc5ed636924bc493d92be4 = L.marker(
[26.3025115710207, 50.2092556902129],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_8cf864b59a3b552129e2b89c4e15a313 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#C026D3;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_96edf7c188e77bb94744040385f5e017 = L.popup({
"maxWidth": 340,
});
var html_edb84d4013b140d68dc558d47dc35dec = $(`<div id="html_edb84d4013b140d68dc558d47dc35dec" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة أم أي أ العربية للمقاولات</b><br> السجل التجاري: 2051047605<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> الترميز: 4220<br>الرقم الموحد: 7001700827<br> <a href="https://www.google.com/maps?q=26.3025115710207,50.2092556902129" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_96edf7c188e77bb94744040385f5e017.setContent(html_edb84d4013b140d68dc558d47dc35dec);
marker_14abfc6cbafc5ed636924bc493d92be4.bindPopup(popup_96edf7c188e77bb94744040385f5e017)
;
marker_14abfc6cbafc5ed636924bc493d92be4.setIcon(div_icon_8cf864b59a3b552129e2b89c4e15a313);
var marker_1d884bd701e816a13ce915950574ef36 = L.marker(
[26.3375797716453, 50.2029645977541],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_301bbb6bd15c4013ab19f9ee6ff88aca = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_f5539cad51c219f96111a19a0067394c = L.popup({
"maxWidth": 340,
});
var html_5b68ed1b6dcb79c27d3fb70d04a80bf9 = $(`<div id="html_5b68ed1b6dcb79c27d3fb70d04a80bf9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة الخدمات التكاملية للاستشارات الهندسية</b><br> السجل التجاري: 2051055115<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> الترميز: 7110<br>الرقم الموحد: 7001405385<br> <a href="https://www.google.com/maps?q=26.3375797716453,50.2029645977541" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f5539cad51c219f96111a19a0067394c.setContent(html_5b68ed1b6dcb79c27d3fb70d04a80bf9);
marker_1d884bd701e816a13ce915950574ef36.bindPopup(popup_f5539cad51c219f96111a19a0067394c)
;
marker_1d884bd701e816a13ce915950574ef36.setIcon(div_icon_301bbb6bd15c4013ab19f9ee6ff88aca);
var marker_a41f386749daba71b72ba283c09fe907 = L.marker(
[26.333526884, 50.19104071],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_a04b58a773a310715584be58acedfdb8 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_0a7a18ac638bda717b60330cf042fd05 = L.popup({
"maxWidth": 340,
});
var html_ae8ccf93fd0ad4ce3106c309b2677065 = $(`<div id="html_ae8ccf93fd0ad4ce3106c309b2677065" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة فندق كمبينسكي العثمان المحدودة شركة شخص واحد</b><br> السجل التجاري: 2051048283<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> الترميز: 5510<br>الرقم الموحد: 7012747510<br> <a href="https://www.google.com/maps?q=26.333526884,50.19104071" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0a7a18ac638bda717b60330cf042fd05.setContent(html_ae8ccf93fd0ad4ce3106c309b2677065);
marker_a41f386749daba71b72ba283c09fe907.bindPopup(popup_0a7a18ac638bda717b60330cf042fd05)
;
marker_a41f386749daba71b72ba283c09fe907.setIcon(div_icon_a04b58a773a310715584be58acedfdb8);
var marker_2f15e578fbd0630eb2359adcaf7a43f9 = L.marker(
[26.3373227847361, 50.2030598387508],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_cf51ab138e90f2a0826032b3ff533dd7 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_a1718161aaa19a8a5988937b3cc1c67f = L.popup({
"maxWidth": 340,
});
var html_a3b0cddbd4f023816965e82aff812a98 = $(`<div id="html_a3b0cddbd4f023816965e82aff812a98" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة كيلوج براون اند رووت السعودية المحدودة</b><br> السجل التجاري: 2051033342<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> الترميز: 4100<br>الرقم الموحد: 7001509962<br> <a href="https://www.google.com/maps?q=26.3373227847361,50.2030598387508" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a1718161aaa19a8a5988937b3cc1c67f.setContent(html_a3b0cddbd4f023816965e82aff812a98);
marker_2f15e578fbd0630eb2359adcaf7a43f9.bindPopup(popup_a1718161aaa19a8a5988937b3cc1c67f)
;
marker_2f15e578fbd0630eb2359adcaf7a43f9.setIcon(div_icon_cf51ab138e90f2a0826032b3ff533dd7);
var marker_bf6d62eeeda6a37b7c71e224c7f96721 = L.marker(
[26.3228909144502, 50.1995690450705],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_5ea3f4875bab09ad51736c6f13c4a6e8 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#7C2D12;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_bcbf4b297e92f6936cd355971d174c7a = L.popup({
"maxWidth": 340,
});
var html_b5afded4d032562724362675a7c8af52 = $(`<div id="html_b5afded4d032562724362675a7c8af52" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة مدرسه اسيا العالمية</b><br> السجل التجاري: 2051044568<br> المنطقة: الخبر<br> الحارة: الحزام الذهبي<br> الترميز: 8521<br>الرقم الموحد: 7006218932<br> <a href="https://www.google.com/maps?q=26.3228909144502,50.1995690450705" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bcbf4b297e92f6936cd355971d174c7a.setContent(html_b5afded4d032562724362675a7c8af52);
marker_bf6d62eeeda6a37b7c71e224c7f96721.bindPopup(popup_bcbf4b297e92f6936cd355971d174c7a)
;
marker_bf6d62eeeda6a37b7c71e224c7f96721.setIcon(div_icon_5ea3f4875bab09ad51736c6f13c4a6e8);
var marker_a70ee1ea8f5bca9e71bad110704aee74 = L.marker(
[26.3352330583266, 50.1955227345314],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_190fd0675e2b572bf0ec20cae8a6a145 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_c197bb7f64c9e6077992dbd27fe89a92 = L.popup({
"maxWidth": 340,
});
var html_dc8d6743f3f068c016b9d92653423b06 = $(`<div id="html_dc8d6743f3f068c016b9d92653423b06" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة إيه دي إن إتش كاترينغ</b><br> السجل التجاري: 2051051772<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> الترميز: 5629<br>الرقم الموحد: 7001755805<br> <a href="https://www.google.com/maps?q=26.3352330583266,50.1955227345314" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c197bb7f64c9e6077992dbd27fe89a92.setContent(html_dc8d6743f3f068c016b9d92653423b06);
marker_a70ee1ea8f5bca9e71bad110704aee74.bindPopup(popup_c197bb7f64c9e6077992dbd27fe89a92)
;
marker_a70ee1ea8f5bca9e71bad110704aee74.setIcon(div_icon_190fd0675e2b572bf0ec20cae8a6a145);
var marker_65067860754a96027a46485aa570a552 = L.marker(
[26.3093387185124, 50.2103300721557],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_310a10537d3c4d8d67f60abe70e430c0 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#C026D3;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_f4a50c8e0016fab1bb168b4af2a25a64 = L.popup({
"maxWidth": 340,
});
var html_6fdb223cc5e53291e5885675af3cab9a = $(`<div id="html_6fdb223cc5e53291e5885675af3cab9a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة تهامه لتوليد الطاقه المحدودة</b><br> السجل التجاري: 2051029359<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> الترميز: 3510<br>الرقم الموحد: 7001463574<br> <a href="https://www.google.com/maps?q=26.3093387185124,50.2103300721557" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f4a50c8e0016fab1bb168b4af2a25a64.setContent(html_6fdb223cc5e53291e5885675af3cab9a);
marker_65067860754a96027a46485aa570a552.bindPopup(popup_f4a50c8e0016fab1bb168b4af2a25a64)
;
marker_65067860754a96027a46485aa570a552.setIcon(div_icon_310a10537d3c4d8d67f60abe70e430c0);
var marker_a42c740b94dbcac4e3db93913a9fc9f5 = L.marker(
[26.3274298638007, 50.2032111270117],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_9aa10ef26e45ffdc6fb35180a4538320 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_bd6ce063f8c14b2887a35e1eea521ae0 = L.popup({
"maxWidth": 340,
});
var html_d3f1638a2860c80221eeffc9625c1c47 = $(`<div id="html_d3f1638a2860c80221eeffc9625c1c47" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>الشركة العربيه للمنتجات الورقية</b><br> السجل التجاري: 2051009797<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> الترميز: 2220<br>الرقم الموحد: 7000859053<br> <a href="https://www.google.com/maps?q=26.3274298638007,50.2032111270117" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bd6ce063f8c14b2887a35e1eea521ae0.setContent(html_d3f1638a2860c80221eeffc9625c1c47);
marker_a42c740b94dbcac4e3db93913a9fc9f5.bindPopup(popup_bd6ce063f8c14b2887a35e1eea521ae0)
;
marker_a42c740b94dbcac4e3db93913a9fc9f5.setIcon(div_icon_9aa10ef26e45ffdc6fb35180a4538320);
var marker_c847ce3c9457a4d50ca7b02c1c062bf3 = L.marker(
[26.2837067037629, 50.2007287576805],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_909a7b564139473776484c5d91c220ae = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#C026D3;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_4ad518b58e7cf04b17a6eb17c4a552e1 = L.popup({
"maxWidth": 340,
});
var html_b898638b80e0e390cef2c8d6642b91e7 = $(`<div id="html_b898638b80e0e390cef2c8d6642b91e7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة وورلي بارسونز للاستشارات الهندسية</b><br> السجل التجاري: 2051059865<br> المنطقة: الخبر<br> الحارة: مدينة العمال<br> الترميز: 7110<br>الرقم الموحد: 7001639751<br> <a href="https://www.google.com/maps?q=26.2837067037629,50.2007287576805" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4ad518b58e7cf04b17a6eb17c4a552e1.setContent(html_b898638b80e0e390cef2c8d6642b91e7);
marker_c847ce3c9457a4d50ca7b02c1c062bf3.bindPopup(popup_4ad518b58e7cf04b17a6eb17c4a552e1)
;
marker_c847ce3c9457a4d50ca7b02c1c062bf3.setIcon(div_icon_909a7b564139473776484c5d91c220ae);
var marker_b6d86e20d4c6313107740353f07d1fd0 = L.marker(
[26.3039673343079, 50.2033039018939],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_6776e6c530f2cf287c133eda69947f6d = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#C026D3;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_76c054fd8df9acb727240a609a7e666e = L.popup({
"maxWidth": 340,
});
var html_2287e711efd839afddddc840d02ffa52 = $(`<div id="html_2287e711efd839afddddc840d02ffa52" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة ريسا الخليجية للسقالات المحدودة</b><br> السجل التجاري: 2050070838<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> الترميز: 4390<br>الرقم الموحد: 7001645691<br> <a href="https://www.google.com/maps?q=26.3039673343079,50.2033039018939" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_76c054fd8df9acb727240a609a7e666e.setContent(html_2287e711efd839afddddc840d02ffa52);
marker_b6d86e20d4c6313107740353f07d1fd0.bindPopup(popup_76c054fd8df9acb727240a609a7e666e)
;
marker_b6d86e20d4c6313107740353f07d1fd0.setIcon(div_icon_6776e6c530f2cf287c133eda69947f6d);
var marker_7c41eb94c3dda0121589317441d4c792 = L.marker(
[26.3531000731228, 50.1920993647911],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_215202e6628fab081ffc2ed374942165 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_9275cf34d3b29290dd12c0a5b0cc6277 = L.popup({
"maxWidth": 340,
});
var html_7e8c938a19f218978482c3ef0f60958b = $(`<div id="html_7e8c938a19f218978482c3ef0f60958b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة مصادر لخدمات الموارد البشرية شركة مساهمة سعودية مقفلة</b><br> السجل التجاري: 2051063885<br> المنطقة: الخبر<br> الحارة: الراكة الجنوبية<br> الترميز: 7810<br>الرقم الموحد: 7010469711<br> <a href="https://www.google.com/maps?q=26.3531000731228,50.1920993647911" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9275cf34d3b29290dd12c0a5b0cc6277.setContent(html_7e8c938a19f218978482c3ef0f60958b);
marker_7c41eb94c3dda0121589317441d4c792.bindPopup(popup_9275cf34d3b29290dd12c0a5b0cc6277)
;
marker_7c41eb94c3dda0121589317441d4c792.setIcon(div_icon_215202e6628fab081ffc2ed374942165);
var marker_a377e8b98949ac1428f872423839fb09 = L.marker(
[26.3086632780954, 50.2101671282812],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_204a62e1ecb4145bf8e0c6aac33f4321 = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#C026D3;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_304e3cf4f03c1ea4eadb6f9e097744db = L.popup({
"maxWidth": 340,
});
var html_f485552af84b86639b3b30edc0556a90 = $(`<div id="html_f485552af84b86639b3b30edc0556a90" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة الحقيط للمقاولات العامة</b><br> السجل التجاري: 2050005578<br> المنطقة: الخبر<br> الحارة: الحزام الأخضر<br> الترميز: 8110<br>الرقم الموحد: 7014077791<br> <a href="https://www.google.com/maps?q=26.3086632780954,50.2101671282812" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_304e3cf4f03c1ea4eadb6f9e097744db.setContent(html_f485552af84b86639b3b30edc0556a90);
marker_a377e8b98949ac1428f872423839fb09.bindPopup(popup_304e3cf4f03c1ea4eadb6f9e097744db)
;
marker_a377e8b98949ac1428f872423839fb09.setIcon(div_icon_204a62e1ecb4145bf8e0c6aac33f4321);
var marker_e4f70eefed26a903f5150699a81fc916 = L.marker(
[26.3340225213464, 50.190822470424],
{
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
var div_icon_262e18f9661c8e481f354a0aa360eeaf = L.divIcon({
"html": "\n \u003cdiv style=\"\n position:relative;\n width:24px;\n height:24px;\n transform:translate(-12px,-24px);\n \"\u003e\n \u003cdiv style=\"\n width:20px;\n height:20px;\n background:#0E7490;\n border:2px solid #ffffff;\n border-radius:50% 50% 50% 0;\n transform:rotate(-45deg);\n box-shadow:0 2px 7px rgba(0,0,0,0.35);\n \"\u003e\n \u003cdiv style=\"\n width:7px;\n height:7px;\n background:#ffffff;\n border-radius:50%;\n margin:5px 0 0 5px;\n \"\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003c/div\u003e\n ",
"className": "empty",
});
var popup_04ac404f77ab7a414dae0703b160a6de = L.popup({
"maxWidth": 340,
});
var html_4c224cc71e684327e2b4091f907ba808 = $(`<div id="html_4c224cc71e684327e2b4091f907ba808" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة سينوبك انجينيرنج قروب السعودية المحدودة</b><br> السجل التجاري: 2051037105<br> المنطقة: الخبر<br> الحارة: الجوهرة<br> الترميز: 4220<br>الرقم الموحد: 7001552665<br> <a href="https://www.google.com/maps?q=26.3340225213464,50.190822470424" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_04ac404f77ab7a414dae0703b160a6de.setContent(html_4c224cc71e684327e2b4091f907ba808);
marker_e4f70eefed26a903f5150699a81fc916.bindPopup(popup_04ac404f77ab7a414dae0703b160a6de)
;
marker_e4f70eefed26a903f5150699a81fc916.setIcon(div_icon_262e18f9661c8e481f354a0aa360eeaf);
var layer_control_0a193553e303a494b456f3fc7efdb3f1_layers = {
base_layers : {
"openstreetmap" : tile_layer_e72f3a908127e05d7ba6b5045d62baba,
"\u0623\u0642\u0645\u0627\u0631 \u0635\u0646\u0627\u0639\u064a\u0629 (Esri)" : tile_layer_70d4ddf3270807f4f85a663070d07155,
},
overlays : {
},
};
let layer_control_0a193553e303a494b456f3fc7efdb3f1 = L.control.layers(
layer_control_0a193553e303a494b456f3fc7efdb3f1_layers.base_layers,
layer_control_0a193553e303a494b456f3fc7efdb3f1_layers.overlays,
{
"position": "topright",
"collapsed": true,
"autoZIndex": true,
}
).addTo(map_f9699e9440750e38b2b50bde2ec578ef);
</script>
</html> |