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 | <!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_4e6ff1be29c37feb754c4e902b3c6b6b {
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_39" onclick="
var panel = document.getElementById('stats_39');
var btn = document.getElementById('btn_stats_39');
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_39" 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> 22</div>
<div><b>عدد الحارات:</b> 1</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• المدينة الصناعية الثانية بالدمام: 22</div></div>
</div>
<div style="margin-top:14px;padding-top:10px;border-top:1px solid rgba(0,0,0,0.08);">
<a href="report_39_وعد_احمد_سليمان_حكمي.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_39_وعد_احمد_سليمان_حكمي.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:#2563EB;border:1px solid rgba(0,0,0,0.15);"></span>
<span>المدينة الصناعية الثانية بالدمام</span>
</div>
<span style="color:#555;">(22)</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_8d9db7b57ba7787af300b82bab6d2865,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة أو آر جي يو أيه سي",
layer: marker_760701c032cdfee18f9ce979ca6e05d4,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "مصنع شركة أرنون للصناعة رقائق التغليف والعزل",
layer: marker_4941acd3c0c714869990dd5261478423,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة اساسيات الوطنية المحدودة",
layer: marker_c0ba1d61acbc2b73669a0b13c5f79e3a,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة داول شلمبرجر العربيه السعودية",
layer: marker_b811097e27e5a52c27647b84aa093cc7,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة إنشاءات المدن السعودية المحدودة",
layer: marker_aab84ede2d05703dc5225c56daf54746,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة ريموت لوجيستيكس العربيه المحدودة شركة شخص واحد",
layer: marker_a2ed566f05f0401d7b456cb4ce5d4167,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "مصنع شركة الراجحي للصناعات المعدنية",
layer: marker_512baca3cb57e25b50f5bb737047cf99,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة فرحه للخدمات الدولية",
layer: marker_2b97cd1534e1e21da14006c43289321c,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة رسيرفوار جروب السعودية",
layer: marker_76fb0c394a73e7e55746e948e1fdaae8,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "مؤسسة الذهب الاسود السعودية للصيانة والتشغيل",
layer: marker_4d680220259915cf222aef5c4170818d,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة وسترن أطلس العربية المحدودة",
layer: marker_d2898e097ff00b53c8927dcd17bd01f1,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة سايبم العربيه السعودية شركة شخص واحد",
layer: marker_0294118bffebd897c5a1460b2a2615c9,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة معدات الاطفاء وأجهزة التحكم بالمخاطر شركة الشخص الواحد شركة شخص واحد",
layer: marker_6e71c446c67eff1c63f63aff19bf132f,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "الشركة الوطنية للصلب المحدودة ذات الشخص الواحد",
layer: marker_6f09283f0586e71702fd689426667336,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة حديد محمود للصناعة شركة شخص واحد",
layer: marker_4cf4726cbacc20eaed3d12f7092c1d4b,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة بن قريعة المحدودة",
layer: marker_76ad985ab21ec8bd1d40cf5aa3fc9a2a,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "الشركة العربية للمحولات",
layer: marker_5744a8e5a8ee95959e2f9d317b996e06,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة الشرق الاوسط للبطاريات",
layer: marker_3a573720e3d48e56d6314e2de4a79ab0,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة بيكر هيوز الصناعية المحدودة",
layer: marker_0a1b6dd3d9341018e5b95924246f92c0,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة غاز الشرق",
layer: marker_6143fe67c71d5b18b5d0e948c645a9d0,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 800);
</script>
<script>
setTimeout(function() {
if (!window.searchableMarkers) window.searchableMarkers = [];
window.searchableMarkers.push({
name: "شركة ستراتوم ريزفوار العربية السعودية شركة شخص واحد",
layer: marker_092890ceaf3729c3efb78e298b76cee3,
map: map_4e6ff1be29c37feb754c4e902b3c6b6b
});
}, 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_4e6ff1be29c37feb754c4e902b3c6b6b" ></div>
</body>
<script>
var map_4e6ff1be29c37feb754c4e902b3c6b6b = L.map(
"map_4e6ff1be29c37feb754c4e902b3c6b6b",
{
center: [26.252474094938158, 49.97789260370414],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_593a2fd26e687ef2021a280c5e32991b = 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_593a2fd26e687ef2021a280c5e32991b.addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var tile_layer_a28dd7b433f335e19df64f65cd9809de = 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_a28dd7b433f335e19df64f65cd9809de.addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var tile_layer_64eef7e2ab1cf787f21bb6bb3a2ad131 = 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_64eef7e2ab1cf787f21bb6bb3a2ad131.addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var locate_control_8f21d054bfa6b2593d1d02bbaa8b7318 = L.control.locate(
{}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var marker_8d9db7b57ba7787af300b82bab6d2865 = L.marker(
[26.2815200781408, 49.9636917131593],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_f1a0ad4f29934c7f2077f11cc418afd3 = 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:#2563EB;\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_233e0bbefa020b6e3b7393f3af33ec27 = L.popup({
"maxWidth": 340,
});
var html_0aa16541710b2d1b1a08345aa76ffd21 = $(`<div id="html_0aa16541710b2d1b1a08345aa76ffd21" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة تيناريس العربية السعودية المحدودة</b><br> السجل التجاري: 2050059485<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 2410<br>الرقم الموحد: 7001552400<br> <a href="https://www.google.com/maps?q=26.2815200781408,49.9636917131593" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_233e0bbefa020b6e3b7393f3af33ec27.setContent(html_0aa16541710b2d1b1a08345aa76ffd21);
marker_8d9db7b57ba7787af300b82bab6d2865.bindPopup(popup_233e0bbefa020b6e3b7393f3af33ec27)
;
marker_8d9db7b57ba7787af300b82bab6d2865.setIcon(div_icon_f1a0ad4f29934c7f2077f11cc418afd3);
var marker_760701c032cdfee18f9ce979ca6e05d4 = L.marker(
[26.2601979015597, 49.9806250872265],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_0f9509840b30cd6a7276ad8ca51b3e76 = 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:#2563EB;\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_c5865409692c349bd14d7e868e8d75fb = L.popup({
"maxWidth": 340,
});
var html_39a32453e0198a772dff28a8bda4c6cb = $(`<div id="html_39a32453e0198a772dff28a8bda4c6cb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة أو آر جي يو أيه سي</b><br> السجل التجاري: 2050029111<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 2599<br>الرقم الموحد: 7001373385<br> <a href="https://www.google.com/maps?q=26.2601979015597,49.9806250872265" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c5865409692c349bd14d7e868e8d75fb.setContent(html_39a32453e0198a772dff28a8bda4c6cb);
marker_760701c032cdfee18f9ce979ca6e05d4.bindPopup(popup_c5865409692c349bd14d7e868e8d75fb)
;
marker_760701c032cdfee18f9ce979ca6e05d4.setIcon(div_icon_0f9509840b30cd6a7276ad8ca51b3e76);
var marker_4941acd3c0c714869990dd5261478423 = L.marker(
[26.2425103970161, 49.9869702888058],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_58589b6a92308034e9b1f5d168cf03af = 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:#2563EB;\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_92618debd2ea4d9e49db3a255b8ee2b6 = L.popup({
"maxWidth": 340,
});
var html_9889ab8e96096813fc1902fea918e029 = $(`<div id="html_9889ab8e96096813fc1902fea918e029" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>مصنع شركة أرنون للصناعة رقائق التغليف والعزل</b><br> السجل التجاري: 2050108379<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 2220<br>الرقم الموحد: 7012675968<br> <a href="https://www.google.com/maps?q=26.2425103970161,49.9869702888058" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_92618debd2ea4d9e49db3a255b8ee2b6.setContent(html_9889ab8e96096813fc1902fea918e029);
marker_4941acd3c0c714869990dd5261478423.bindPopup(popup_92618debd2ea4d9e49db3a255b8ee2b6)
;
marker_4941acd3c0c714869990dd5261478423.setIcon(div_icon_58589b6a92308034e9b1f5d168cf03af);
var marker_c0ba1d61acbc2b73669a0b13c5f79e3a = L.marker(
[26.250455638, 50.004584503],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_5a40b881049a5593eec90f28c332331f = 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:#2563EB;\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_8c1828e3f4df28823538cb5fed3797fe = L.popup({
"maxWidth": 340,
});
var html_1ab78a88339194d9ae8f155af90a5954 = $(`<div id="html_1ab78a88339194d9ae8f155af90a5954" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة اساسيات الوطنية المحدودة</b><br> السجل التجاري: 2051047224<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 4100<br>الرقم الموحد: 7001527626<br> <a href="https://www.google.com/maps?q=26.250455638,50.004584503" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8c1828e3f4df28823538cb5fed3797fe.setContent(html_1ab78a88339194d9ae8f155af90a5954);
marker_c0ba1d61acbc2b73669a0b13c5f79e3a.bindPopup(popup_8c1828e3f4df28823538cb5fed3797fe)
;
marker_c0ba1d61acbc2b73669a0b13c5f79e3a.setIcon(div_icon_5a40b881049a5593eec90f28c332331f);
var marker_b811097e27e5a52c27647b84aa093cc7 = L.marker(
[26.2670062784014, 49.961993348188],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_9d2587ad6ed16f185cbfeea7b33295d2 = 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:#2563EB;\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_b8c436d77954912df0b69ae40a7f962c = L.popup({
"maxWidth": 340,
});
var html_96cd43e6e6ca5a8c447d7a1c1ce237fb = $(`<div id="html_96cd43e6e6ca5a8c447d7a1c1ce237fb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة داول شلمبرجر العربيه السعودية</b><br> السجل التجاري: 2050006140<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 910<br>الرقم الموحد: 7000329743<br> <a href="https://www.google.com/maps?q=26.2670062784014,49.961993348188" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b8c436d77954912df0b69ae40a7f962c.setContent(html_96cd43e6e6ca5a8c447d7a1c1ce237fb);
marker_b811097e27e5a52c27647b84aa093cc7.bindPopup(popup_b8c436d77954912df0b69ae40a7f962c)
;
marker_b811097e27e5a52c27647b84aa093cc7.setIcon(div_icon_9d2587ad6ed16f185cbfeea7b33295d2);
var marker_aab84ede2d05703dc5225c56daf54746 = L.marker(
[26.1936178832923, 49.9145888000199],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_56e1db462f8d6662a7aeaa1de400c976 = 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:#2563EB;\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_330f53fe8390d90414f618e97c069267 = L.popup({
"maxWidth": 340,
});
var html_04d8bcc6a642a8206fc738026b65daa0 = $(`<div id="html_04d8bcc6a642a8206fc738026b65daa0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة إنشاءات المدن السعودية المحدودة</b><br> السجل التجاري: 2051045296<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 4220<br>الرقم الموحد: 7001662324<br> <a href="https://www.google.com/maps?q=26.1936178832923,49.9145888000199" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_330f53fe8390d90414f618e97c069267.setContent(html_04d8bcc6a642a8206fc738026b65daa0);
marker_aab84ede2d05703dc5225c56daf54746.bindPopup(popup_330f53fe8390d90414f618e97c069267)
;
marker_aab84ede2d05703dc5225c56daf54746.setIcon(div_icon_56e1db462f8d6662a7aeaa1de400c976);
var marker_a2ed566f05f0401d7b456cb4ce5d4167 = L.marker(
[26.2418249173281, 49.9705754984767],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_7985aca77dcbb4879b953a0ef48ee636 = 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:#2563EB;\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_d953df687f87fdb489092297c3e06adf = L.popup({
"maxWidth": 340,
});
var html_e224358f602792d3601b2f154f465e48 = $(`<div id="html_e224358f602792d3601b2f154f465e48" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة ريموت لوجيستيكس العربيه المحدودة شركة شخص واحد</b><br> السجل التجاري: 2050084402<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 5630<br>الرقم الموحد: 7001723530<br> <a href="https://www.google.com/maps?q=26.2418249173281,49.9705754984767" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d953df687f87fdb489092297c3e06adf.setContent(html_e224358f602792d3601b2f154f465e48);
marker_a2ed566f05f0401d7b456cb4ce5d4167.bindPopup(popup_d953df687f87fdb489092297c3e06adf)
;
marker_a2ed566f05f0401d7b456cb4ce5d4167.setIcon(div_icon_7985aca77dcbb4879b953a0ef48ee636);
var marker_512baca3cb57e25b50f5bb737047cf99 = L.marker(
[26.2734558432689, 49.9763351022607],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_35d7c2997ddffdc26a615d225be9313f = 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:#2563EB;\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_4cf3f8eb257d3da34b16282df64c0c5d = L.popup({
"maxWidth": 340,
});
var html_658f4e6e7e2c484633415e9998c66388 = $(`<div id="html_658f4e6e7e2c484633415e9998c66388" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>مصنع شركة الراجحي للصناعات المعدنية</b><br> السجل التجاري: 2050105718<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 2920<br>الرقم الموحد: 7007407849<br> <a href="https://www.google.com/maps?q=26.2734558432689,49.9763351022607" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4cf3f8eb257d3da34b16282df64c0c5d.setContent(html_658f4e6e7e2c484633415e9998c66388);
marker_512baca3cb57e25b50f5bb737047cf99.bindPopup(popup_4cf3f8eb257d3da34b16282df64c0c5d)
;
marker_512baca3cb57e25b50f5bb737047cf99.setIcon(div_icon_35d7c2997ddffdc26a615d225be9313f);
var marker_2b97cd1534e1e21da14006c43289321c = L.marker(
[26.2343041802943, 50.0025978933929],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_384e8a7dcefeb594d7131943b6268ab5 = 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:#2563EB;\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_5d73054504cd7817753b35e57d62d0a5 = L.popup({
"maxWidth": 340,
});
var html_4d4087a4c3f489d5921910be3d80c350 = $(`<div id="html_4d4087a4c3f489d5921910be3d80c350" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة فرحه للخدمات الدولية</b><br> السجل التجاري: 2050009048<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 4923<br>الرقم الموحد: 7014190560<br> <a href="https://www.google.com/maps?q=26.2343041802943,50.0025978933929" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5d73054504cd7817753b35e57d62d0a5.setContent(html_4d4087a4c3f489d5921910be3d80c350);
marker_2b97cd1534e1e21da14006c43289321c.bindPopup(popup_5d73054504cd7817753b35e57d62d0a5)
;
marker_2b97cd1534e1e21da14006c43289321c.setIcon(div_icon_384e8a7dcefeb594d7131943b6268ab5);
var marker_76fb0c394a73e7e55746e948e1fdaae8 = L.marker(
[26.2338576618479, 49.9971050828153],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_bbced8506065f4e3fe5ba0eb8e124013 = 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:#2563EB;\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_9a53982469be5d75e01d3d78f3100581 = L.popup({
"maxWidth": 340,
});
var html_2ac57747b41890a36a73994ac4ba0c37 = $(`<div id="html_2ac57747b41890a36a73994ac4ba0c37" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة رسيرفوار جروب السعودية</b><br> السجل التجاري: 2051051286<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 910<br>الرقم الموحد: 7001747414<br> <a href="https://www.google.com/maps?q=26.2338576618479,49.9971050828153" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9a53982469be5d75e01d3d78f3100581.setContent(html_2ac57747b41890a36a73994ac4ba0c37);
marker_76fb0c394a73e7e55746e948e1fdaae8.bindPopup(popup_9a53982469be5d75e01d3d78f3100581)
;
marker_76fb0c394a73e7e55746e948e1fdaae8.setIcon(div_icon_bbced8506065f4e3fe5ba0eb8e124013);
var marker_4d680220259915cf222aef5c4170818d = L.marker(
[26.327993111936, 49.952664973111],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_677ae5cba84da498c9fc0e47ed5983df = 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:#2563EB;\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_35d320fb0badca46d85efb596774ec19 = L.popup({
"maxWidth": 340,
});
var html_39f9292b45a95f2ce7ca897c4589f73e = $(`<div id="html_39f9292b45a95f2ce7ca897c4589f73e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>مؤسسة الذهب الاسود السعودية للصيانة والتشغيل</b><br> السجل التجاري: 2050115356<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 910<br>الرقم الموحد: 7008015989<br> <a href="https://www.google.com/maps?q=26.327993111936,49.952664973111" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_35d320fb0badca46d85efb596774ec19.setContent(html_39f9292b45a95f2ce7ca897c4589f73e);
marker_4d680220259915cf222aef5c4170818d.bindPopup(popup_35d320fb0badca46d85efb596774ec19)
;
marker_4d680220259915cf222aef5c4170818d.setIcon(div_icon_677ae5cba84da498c9fc0e47ed5983df);
var marker_d2898e097ff00b53c8927dcd17bd01f1 = L.marker(
[26.2751940802198, 49.9617196232809],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_28bea28d4168f42673027359095bba4d = 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:#2563EB;\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_121807269e574388e0e958015be4a47a = L.popup({
"maxWidth": 340,
});
var html_7d27055708fddc406d70c12aabf67c87 = $(`<div id="html_7d27055708fddc406d70c12aabf67c87" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة وسترن أطلس العربية المحدودة</b><br> السجل التجاري: 2051006890<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 910<br>الرقم الموحد: 7000614466<br> <a href="https://www.google.com/maps?q=26.2751940802198,49.9617196232809" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_121807269e574388e0e958015be4a47a.setContent(html_7d27055708fddc406d70c12aabf67c87);
marker_d2898e097ff00b53c8927dcd17bd01f1.bindPopup(popup_121807269e574388e0e958015be4a47a)
;
marker_d2898e097ff00b53c8927dcd17bd01f1.setIcon(div_icon_28bea28d4168f42673027359095bba4d);
var marker_0294118bffebd897c5a1460b2a2615c9 = L.marker(
[26.249522889, 50.004013432],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_9008475dc354be324d91ea936cbeff33 = 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:#2563EB;\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_48763ae42333b77171757e670d166acf = L.popup({
"maxWidth": 340,
});
var html_6498a45f51057eea8955d4575af1c7d9 = $(`<div id="html_6498a45f51057eea8955d4575af1c7d9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة سايبم العربيه السعودية شركة شخص واحد</b><br> السجل التجاري: 2051002660<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 910<br>الرقم الموحد: 7000013008<br> <a href="https://www.google.com/maps?q=26.249522889,50.004013432" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_48763ae42333b77171757e670d166acf.setContent(html_6498a45f51057eea8955d4575af1c7d9);
marker_0294118bffebd897c5a1460b2a2615c9.bindPopup(popup_48763ae42333b77171757e670d166acf)
;
marker_0294118bffebd897c5a1460b2a2615c9.setIcon(div_icon_9008475dc354be324d91ea936cbeff33);
var marker_6e71c446c67eff1c63f63aff19bf132f = L.marker(
[26.2376264943024, 49.9852787391798],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_52d0e5c7bb5d8c2574d525c17d69cd4d = 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:#2563EB;\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_a7801c59e98e136171fc950fcc6afaae = L.popup({
"maxWidth": 340,
});
var html_24707d8c00be9b9a2388fd959aafa6ef = $(`<div id="html_24707d8c00be9b9a2388fd959aafa6ef" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة معدات الاطفاء وأجهزة التحكم بالمخاطر شركة الشخص الواحد شركة شخص واحد</b><br> السجل التجاري: 2050008867<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 2920<br>الرقم الموحد: 7001574370<br> <a href="https://www.google.com/maps?q=26.2376264943024,49.9852787391798" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a7801c59e98e136171fc950fcc6afaae.setContent(html_24707d8c00be9b9a2388fd959aafa6ef);
marker_6e71c446c67eff1c63f63aff19bf132f.bindPopup(popup_a7801c59e98e136171fc950fcc6afaae)
;
marker_6e71c446c67eff1c63f63aff19bf132f.setIcon(div_icon_52d0e5c7bb5d8c2574d525c17d69cd4d);
var marker_6f09283f0586e71702fd689426667336 = L.marker(
[26.2448159868879, 49.9691019199386],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_1515b73574edc36fcfa6a3592656cfd6 = 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:#2563EB;\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_18f1757ee5dfc4f1b6ba4f63604dd0ff = L.popup({
"maxWidth": 340,
});
var html_ea254fe4f323a4b164bae0a7a10349ce = $(`<div id="html_ea254fe4f323a4b164bae0a7a10349ce" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>الشركة الوطنية للصلب المحدودة ذات الشخص الواحد</b><br> السجل التجاري: 2050034612<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 2410<br>الرقم الموحد: 7001492524<br> <a href="https://www.google.com/maps?q=26.2448159868879,49.9691019199386" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_18f1757ee5dfc4f1b6ba4f63604dd0ff.setContent(html_ea254fe4f323a4b164bae0a7a10349ce);
marker_6f09283f0586e71702fd689426667336.bindPopup(popup_18f1757ee5dfc4f1b6ba4f63604dd0ff)
;
marker_6f09283f0586e71702fd689426667336.setIcon(div_icon_1515b73574edc36fcfa6a3592656cfd6);
var marker_4cf4726cbacc20eaed3d12f7092c1d4b = L.marker(
[26.2553593325562, 49.9563238918573],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_20cf075d3be7704ddf50e9e69536b6e2 = 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:#2563EB;\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_f93b0d18d1fed544eac41c50532ce7c0 = L.popup({
"maxWidth": 340,
});
var html_040a73722c66cdbeb2d54785ce8d2fb7 = $(`<div id="html_040a73722c66cdbeb2d54785ce8d2fb7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة حديد محمود للصناعة شركة شخص واحد</b><br> السجل التجاري: 2050058771<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 2410<br>الرقم الموحد: 7009219465<br> <a href="https://www.google.com/maps?q=26.2553593325562,49.9563238918573" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f93b0d18d1fed544eac41c50532ce7c0.setContent(html_040a73722c66cdbeb2d54785ce8d2fb7);
marker_4cf4726cbacc20eaed3d12f7092c1d4b.bindPopup(popup_f93b0d18d1fed544eac41c50532ce7c0)
;
marker_4cf4726cbacc20eaed3d12f7092c1d4b.setIcon(div_icon_20cf075d3be7704ddf50e9e69536b6e2);
var marker_76ad985ab21ec8bd1d40cf5aa3fc9a2a = L.marker(
[26.2108546182944, 49.950695378354],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_4a12446811c3d7aeefa56167db48c48b = 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:#2563EB;\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_4c5fa2a1c86ad03f3403107a2eec1150 = L.popup({
"maxWidth": 340,
});
var html_bf34b8d2fae25eb86d326d9b4cfd1080 = $(`<div id="html_bf34b8d2fae25eb86d326d9b4cfd1080" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة بن قريعة المحدودة</b><br> السجل التجاري: 2052001304<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 4220<br>الرقم الموحد: 7009401428<br> <a href="https://www.google.com/maps?q=26.2108546182944,49.950695378354" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4c5fa2a1c86ad03f3403107a2eec1150.setContent(html_bf34b8d2fae25eb86d326d9b4cfd1080);
marker_76ad985ab21ec8bd1d40cf5aa3fc9a2a.bindPopup(popup_4c5fa2a1c86ad03f3403107a2eec1150)
;
marker_76ad985ab21ec8bd1d40cf5aa3fc9a2a.setIcon(div_icon_4a12446811c3d7aeefa56167db48c48b);
var marker_5744a8e5a8ee95959e2f9d317b996e06 = L.marker(
[26.2596901337353, 49.9910670267085],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_79d9fa2800599ff36c5aeaa97c40e2ee = 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:#2563EB;\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_ece52a261d097d3129d2b11cedb2d352 = L.popup({
"maxWidth": 340,
});
var html_e5746fcaeb3ef6651e01998493b57e34 = $(`<div id="html_e5746fcaeb3ef6651e01998493b57e34" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>الشركة العربية للمحولات</b><br> السجل التجاري: 2050032943<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 2710<br>الرقم الموحد: 7001388037<br> <a href="https://www.google.com/maps?q=26.2596901337353,49.9910670267085" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ece52a261d097d3129d2b11cedb2d352.setContent(html_e5746fcaeb3ef6651e01998493b57e34);
marker_5744a8e5a8ee95959e2f9d317b996e06.bindPopup(popup_ece52a261d097d3129d2b11cedb2d352)
;
marker_5744a8e5a8ee95959e2f9d317b996e06.setIcon(div_icon_79d9fa2800599ff36c5aeaa97c40e2ee);
var marker_3a573720e3d48e56d6314e2de4a79ab0 = L.marker(
[26.2612560837921, 49.9882511455058],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_28e2a811ae4cb0f9252a63fe7e59463c = 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:#2563EB;\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_b5faf1834216871866bca4d1834d57c6 = L.popup({
"maxWidth": 340,
});
var html_b41de8cfde5779e3e4eadb9bf5718522 = $(`<div id="html_b41de8cfde5779e3e4eadb9bf5718522" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة الشرق الاوسط للبطاريات</b><br> السجل التجاري: 2050030781<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 2720<br>الرقم الموحد: 7001379093<br> <a href="https://www.google.com/maps?q=26.2612560837921,49.9882511455058" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b5faf1834216871866bca4d1834d57c6.setContent(html_b41de8cfde5779e3e4eadb9bf5718522);
marker_3a573720e3d48e56d6314e2de4a79ab0.bindPopup(popup_b5faf1834216871866bca4d1834d57c6)
;
marker_3a573720e3d48e56d6314e2de4a79ab0.setIcon(div_icon_28e2a811ae4cb0f9252a63fe7e59463c);
var marker_0a1b6dd3d9341018e5b95924246f92c0 = L.marker(
[26.2664146571956, 50.022980902573],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_fb5634f010d570132261826ba8e4b282 = 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:#2563EB;\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_4cdb44c49447f19a14798fd0d2884b6f = L.popup({
"maxWidth": 340,
});
var html_9fd29e27f25a638fa98ee31ac6a7667d = $(`<div id="html_9fd29e27f25a638fa98ee31ac6a7667d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة بيكر هيوز الصناعية المحدودة</b><br> السجل التجاري: 2050014985<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 2824<br>الرقم الموحد: 7000745773<br> <a href="https://www.google.com/maps?q=26.2664146571956,50.022980902573" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4cdb44c49447f19a14798fd0d2884b6f.setContent(html_9fd29e27f25a638fa98ee31ac6a7667d);
marker_0a1b6dd3d9341018e5b95924246f92c0.bindPopup(popup_4cdb44c49447f19a14798fd0d2884b6f)
;
marker_0a1b6dd3d9341018e5b95924246f92c0.setIcon(div_icon_fb5634f010d570132261826ba8e4b282);
var marker_6143fe67c71d5b18b5d0e948c645a9d0 = L.marker(
[26.2576516240701, 49.9699943496371],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_923f3a34f937b78106d83377d6466a94 = 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:#2563EB;\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_023cee5b38b80bbbd519fc7217fe0e47 = L.popup({
"maxWidth": 340,
});
var html_179fb163c5d8b6364f5bde8b6cdd9664 = $(`<div id="html_179fb163c5d8b6364f5bde8b6cdd9664" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة غاز الشرق</b><br> السجل التجاري: 2050048153<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 3520<br>الرقم الموحد: 7001484398<br> <a href="https://www.google.com/maps?q=26.2576516240701,49.9699943496371" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_023cee5b38b80bbbd519fc7217fe0e47.setContent(html_179fb163c5d8b6364f5bde8b6cdd9664);
marker_6143fe67c71d5b18b5d0e948c645a9d0.bindPopup(popup_023cee5b38b80bbbd519fc7217fe0e47)
;
marker_6143fe67c71d5b18b5d0e948c645a9d0.setIcon(div_icon_923f3a34f937b78106d83377d6466a94);
var marker_092890ceaf3729c3efb78e298b76cee3 = L.marker(
[26.2293002975001, 50.0024785820001],
{
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
var div_icon_0c8193f136c5c2871bd34710485d0991 = 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:#2563EB;\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_3c1cb7a34cf4b0a8beacf3bd97544e16 = L.popup({
"maxWidth": 340,
});
var html_b25dc28176fe04e8a01729e69a199822 = $(`<div id="html_b25dc28176fe04e8a01729e69a199822" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;min-width:280px;"> <b>شركة ستراتوم ريزفوار العربية السعودية شركة شخص واحد</b><br> السجل التجاري: 2051232806<br> المنطقة: الدمام<br> الحارة: المدينة الصناعية الثانية بالدمام<br> الترميز: 910<br>الرقم الموحد: 7009139457<br> <a href="https://www.google.com/maps?q=26.2293002975001,50.0024785820001" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3c1cb7a34cf4b0a8beacf3bd97544e16.setContent(html_b25dc28176fe04e8a01729e69a199822);
marker_092890ceaf3729c3efb78e298b76cee3.bindPopup(popup_3c1cb7a34cf4b0a8beacf3bd97544e16)
;
marker_092890ceaf3729c3efb78e298b76cee3.setIcon(div_icon_0c8193f136c5c2871bd34710485d0991);
var layer_control_f0ee7fb525874d6ae7a70f1ba6800dfb_layers = {
base_layers : {
"openstreetmap" : tile_layer_a28dd7b433f335e19df64f65cd9809de,
"\u0623\u0642\u0645\u0627\u0631 \u0635\u0646\u0627\u0639\u064a\u0629 (Esri)" : tile_layer_64eef7e2ab1cf787f21bb6bb3a2ad131,
},
overlays : {
},
};
let layer_control_f0ee7fb525874d6ae7a70f1ba6800dfb = L.control.layers(
layer_control_f0ee7fb525874d6ae7a70f1ba6800dfb_layers.base_layers,
layer_control_f0ee7fb525874d6ae7a70f1ba6800dfb_layers.overlays,
{
"position": "topright",
"collapsed": true,
"autoZIndex": true,
}
).addTo(map_4e6ff1be29c37feb754c4e902b3c6b6b);
</script>
</html> |