63d85a4
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 |
<!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_9131f19ccacedd18cf52d25d89939344 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<style>html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
<style>#map {
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
}
</style>
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-locatecontrol/0.66.2/L.Control.Locate.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet-locatecontrol/0.66.2/L.Control.Locate.min.css"/>
</head>
<body>
<style>
.stats-box {
position: fixed;
bottom: 14px;
right: 14px;
width: 300px;
background: rgba(255,255,255,0.92);
border-radius: 14px;
box-shadow: 0 2px 14px rgba(0,0,0,0.2);
z-index: 9999;
font-family: Arial, sans-serif;
overflow: hidden;
}
.stats-head {
padding:10px 12px;
font-weight:700;
font-size:14px;
border-bottom:1px solid rgba(0,0,0,0.08);
direction:rtl;
display:flex;
justify-content:space-between;
align-items:center;
gap:10px;
}
.stats-title {
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
max-width: 210px;
}
.toggle {
cursor:pointer;
background:rgba(0,0,0,0.06);
border-radius:10px;
padding:4px 8px;
font-size:12px;
}
.stats-body {
padding:10px 12px;
direction:rtl;
font-size:13px;
line-height:1.8;
}
.legend {
max-height: 180px;
overflow:auto;
padding-right: 2px;
margin-top: 8px;
}
.stats-fab {
position: fixed;
bottom: 14px;
right: 14px;
z-index: 9999;
display:none;
cursor:pointer;
background: rgba(255,255,255,0.92);
padding: 10px 12px;
border-radius: 14px;
box-shadow: 0 2px 14px rgba(0,0,0,0.2);
font-family: Arial, sans-serif;
font-size: 13px;
direction: rtl;
}
hr {
border:none;
border-top:1px solid rgba(0,0,0,0.08);
margin:10px 0;
}
</style>
<div id="statsFab" class="stats-fab">إظهار الإحصاءات</div>
<div id="statsBox" class="stats-box">
<div class="stats-head">
<span class="stats-title">فاطمه حسين بن ابراهيم القرقوش - 12</span>
<span class="toggle" id="hideStats">إخفاء</span>
</div>
<div class="stats-body" id="statsBody">
<b>عدد المواقع:</b> 21<br>
<b>عدد الحارات:</b> 1<br>
<b>الأكثر:</b> <b>المحمدية</b>: 21
<hr>
<b>تلوين حسب الحارة</b>
<div class="legend">
<div style="display:flex;gap:6px;align-items:center;margin:4px 0;">
<span style="width:12px;height:12px;border-radius:50%;
background:#6c757d;display:inline-block;border:1px solid rgba(0,0,0,0.2);"></span>
<span style="font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:170px;">المحمدية</span>
<span style="font-size:12px;color:#666;">(21)</span>
</div>
</div>
</div>
</div>
<script>
(function(){
const box = document.getElementById('statsBox');
const fab = document.getElementById('statsFab');
const hide = document.getElementById('hideStats');
hide.addEventListener('click', function(){
box.style.display = 'none';
fab.style.display = 'block';
});
fab.addEventListener('click', function(){
box.style.display = 'block';
fab.style.display = 'none';
});
})();
</script>
<style>
.leaflet-control.est-search-control {
background: rgba(255,255,255,0.92);
box-shadow: 0 2px 14px rgba(0,0,0,0.20);
border-radius: 14px;
padding: 10px 10px;
width: 320px;
direction: rtl;
font-family: Arial, sans-serif;
}
.est-search-control input {
width: 100%;
border: 1px solid rgba(0,0,0,0.15);
border-radius: 10px;
padding: 10px 12px;
font-size: 13px;
outline: none;
}
.est-search-meta {
margin-top: 6px;
font-size: 12px;
color: #666;
display:flex;
justify-content:space-between;
gap:8px;
}
.est-results {
margin-top: 8px;
max-height: 180px;
overflow: auto;
border-top: 1px solid rgba(0,0,0,0.08);
padding-top: 6px;
}
.est-item {
cursor: pointer;
padding: 8px 10px;
border-radius: 10px;
font-size: 13px;
line-height: 1.4;
}
.est-item:hover {
background: rgba(0,0,0,0.06);
}
.est-badge {
font-size: 12px;
color: #333;
}
.est-clear {
cursor:pointer;
user-select:none;
font-size:12px;
color:#0b6efd;
}
</style>
<script>
(function(){
const map = map_9131f19ccacedd18cf52d25d89939344;
const items = [{"title": "مؤسسة العمارة الاندلسية التجارية", "lat": 26.44104879, "lon": 50.05958554, "markerVar": "marker_5223c2b169ffd7976fc51fbe2ea7e841"}, {"title": "شركة تران جيي للتجارة والمقاولات", "lat": 26.4411233, "lon": 50.0625531, "markerVar": "marker_5e71ad3257b9987bcc68a63eaade00ff"}, {"title": "شركة أفضل طريقة التجارية", "lat": 26.4415775999999, "lon": 50.0632508599999, "markerVar": "marker_b609417b3b7c525280c60ca750d1a1cb"}, {"title": "شركة زعيم القهوة للتجارة شركة شخص واحد", "lat": 26.44163105, "lon": 50.0640432, "markerVar": "marker_4c09143b58aa68f2d31427dda8215bb7"}, {"title": "شركة لمسة الجلدية للتجارة", "lat": 26.4422791699999, "lon": 50.06165842, "markerVar": "marker_eb77909cd03b9d2a8e5b210c33db896c"}, {"title": "شركة إمدادات الحبشي للتجارة", "lat": 26.44451851, "lon": 50.05651889, "markerVar": "marker_a0a4d7f9d346067226378d31320e3174"}, {"title": "شركة سعود بن عبدالعزيز بن محمد السعدون للسجاد", "lat": 26.44732841, "lon": 50.0621600699999, "markerVar": "marker_aa99b17a1b962ac2189829f19905c453"}, {"title": "شركة ثروات الفيصل التجارية", "lat": 26.4475801799999, "lon": 50.0616041199999, "markerVar": "marker_258b65520b74e74e38dc6b5fbfeb2427"}, {"title": "شركة الهلال الاوسط التجارية", "lat": 26.45095191, "lon": 50.0545273299999, "markerVar": "marker_dd66f26dc37c2e78d6ca347c4e8279ce"}, {"title": "شركة العناية بالنظافة الصحية للتجارة", "lat": 26.4511253599999, "lon": 50.0623860099999, "markerVar": "marker_6e6e0b5832bdbdbc63594a777c8722e5"}, {"title": "شركة بست دريم التجارية", "lat": 26.45147705, "lon": 50.06152344, "markerVar": "marker_46c307a745397df830e3bb3d9ff4efae"}, {"title": "شركة عالم الغذاء الدولي للمواد الغذائية شركة شخص واحد", "lat": 26.45234577164111, "lon": 50.05530584603548, "markerVar": "marker_6c6803e013d31f3c7f7c8386af2e8ef9"}, {"title": "شركة المهاب للمقاولات العامة", "lat": 26.45248453586704, "lon": 50.06213713049945, "markerVar": "marker_fdde89db851417582bd506d49a81fa14"}, {"title": "شركة الخدمة والدعم للمقاولات شخص واحد", "lat": 26.45264031744163, "lon": 50.06220758892596, "markerVar": "marker_ea7ceb75b590cd39728ba4dfee2c26ea"}, {"title": "شركة الطبقة العليا للتجارة شركة شخص واحد", "lat": 26.4543265299999, "lon": 50.0600264899999, "markerVar": "marker_d81b50067290b6ef672f4a9a6ae05d16"}, {"title": "شركة تونس العالمية التجارية", "lat": 26.45504136651721, "lon": 50.05670757851831, "markerVar": "marker_8fbe6beedbf78e69a4a32e27559a950d"}, {"title": "شركة وادي العاصي للمقاولات شخص واحد", "lat": 26.4607235, "lon": 50.0610686899999, "markerVar": "marker_cabf7789bdc58ae16c7130e3cdd04c4a"}, {"title": "شركة قلعة الوادي للتجارة", "lat": 26.4616322416367, "lon": 50.0609893684094, "markerVar": "marker_23119a3ed4e7435877d0fc70fde0e60e"}, {"title": "شركة بيت نسما للمقاولات العامة", "lat": 26.46713571560447, "lon": 50.04766671387263, "markerVar": "marker_40ebe03f9281c14e72aa9d62a7930b26"}, {"title": "شركة سي آي ان كيو الدولية المحدودة", "lat": 26.4676547762875, "lon": 50.05954155698419, "markerVar": "marker_11a5bd596cb780ec2ebe9d66f7845a8f"}, {"title": "شركة وادي الضيافة لخدمات الاعاشة شركة شخص واحد", "lat": 26.4702413999999, "lon": 50.0584566499999, "markerVar": "marker_3e32ed6af9d631f3e7cae76b9eec8c93"}];
function norm(s){
if(!s) return "";
s = (""+s).toLowerCase();
s = s.replace(/[\u064B-\u065F]/g, "");
s = s.replace(/[إأآا]/g, "ا")
.replace(/ى/g, "ي")
.replace(/ة/g, "ه")
.replace(/ؤ/g, "و")
.replace(/ئ/g, "ي")
.replace(/ـ/g, "");
s = s.replace(/\s+/g, " ").trim();
return s;
}
const SearchControl = L.Control.extend({
options: { position: 'bottomleft' },
onAdd: function(){
const div = L.DomUtil.create('div', 'leaflet-control est-search-control');
div.innerHTML = `
<input id="estQ" type="text" placeholder="ابحث باسم المنشأة (جزء من الاسم)..." />
<div class="est-search-meta">
<span id="estCount" class="est-badge"></span>
<span id="estClear" class="est-clear">مسح</span>
</div>
<div id="estResults" class="est-results"></div>
`;
L.DomEvent.disableClickPropagation(div);
L.DomEvent.disableScrollPropagation(div);
return div;
}
});
map.addControl(new SearchControl());
function renderResults(hits){
const results = document.getElementById('estResults');
const count = document.getElementById('estCount');
results.innerHTML = "";
if(!hits.length){
count.textContent = "لا توجد نتائج";
return;
}
count.textContent = "النتائج: " + hits.length;
for(const h of hits.slice(0, 50)){
const el = document.createElement('div');
el.className = 'est-item';
el.textContent = h.title;
el.onclick = function(){
try {
const mv = window[h.markerVar];
if(mv && mv.getLatLng){
map.setView(mv.getLatLng(), Math.max(map.getZoom(), 17), {animate:true});
if(mv.openPopup) mv.openPopup();
} else {
map.setView([h.lat, h.lon], Math.max(map.getZoom(), 17), {animate:true});
}
} catch(e) {}
};
results.appendChild(el);
}
}
function search(q){
const nq = norm(q);
if(!nq) return [];
const hits = [];
for(const it of items){
if(norm(it.title).includes(nq)) hits.push(it);
}
return hits;
}
setTimeout(function(){
const input = document.getElementById('estQ');
const clearBtn = document.getElementById('estClear');
input.addEventListener('input', function(){
renderResults(search(this.value));
});
input.addEventListener('keydown', function(e){
if(e.key === 'Enter'){
const hits = search(this.value);
renderResults(hits);
if(hits.length){
try {
const mv = window[hits[0].markerVar];
if(mv && mv.getLatLng){
map.setView(mv.getLatLng(), Math.max(map.getZoom(), 17), {animate:true});
if(mv.openPopup) mv.openPopup();
}
} catch(e) {}
}
}
});
clearBtn.addEventListener('click', function(){
input.value = "";
document.getElementById('estResults').innerHTML = "";
document.getElementById('estCount').textContent = "";
});
}, 0);
})();
</script>
<div style="
position: fixed;
bottom: 8px; left: 8px;
background: rgba(255,255,255,0.85);
padding: 6px 10px;
border-radius: 10px;
font-size: 13px;
direction: rtl;
z-index: 9999;
box-shadow: 0 1px 8px rgba(0,0,0,0.15);
font-family: Arial, sans-serif;
">
تصميم وإعداد <b>نوف الناصر</b>
</div>
<div class="folium-map" id="map_9131f19ccacedd18cf52d25d89939344" ></div>
</body>
<script>
var map_9131f19ccacedd18cf52d25d89939344 = L.map(
"map_9131f19ccacedd18cf52d25d89939344",
{
center: [26.452136546904523, 50.059710409202125],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
L.control.scale().addTo(map_9131f19ccacedd18cf52d25d89939344);
var tile_layer_094b804ae37fac7f141f404a1a4f2355 = 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_094b804ae37fac7f141f404a1a4f2355.addTo(map_9131f19ccacedd18cf52d25d89939344);
var tile_layer_856e363de740c90d50a9ea0a59e07373 = 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_856e363de740c90d50a9ea0a59e07373.addTo(map_9131f19ccacedd18cf52d25d89939344);
var locate_control_97d7302ac9eb545d3db51d7ecc85775f = L.control.locate(
{"flyTo": true}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var marker_5223c2b169ffd7976fc51fbe2ea7e841 = L.marker(
[26.44104879, 50.05958554],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_35aa5c7cab97d38f604fcbb9674e5de7 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_466092f8af5fb4ff7b5c842533ce337e = L.popup({
"maxWidth": 320,
});
var html_ee6281c0d4379190fd86a9b09895969c = $(`<div id="html_ee6281c0d4379190fd86a9b09895969c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>مؤسسة العمارة الاندلسية التجارية</b><br> السجل التجاري: 2050068423<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.44104879,50.05958554" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_466092f8af5fb4ff7b5c842533ce337e.setContent(html_ee6281c0d4379190fd86a9b09895969c);
marker_5223c2b169ffd7976fc51fbe2ea7e841.bindPopup(popup_466092f8af5fb4ff7b5c842533ce337e)
;
marker_5223c2b169ffd7976fc51fbe2ea7e841.bindTooltip(
`<div>
مؤسسة العمارة الاندلسية التجارية
</div>`,
{
"sticky": true,
}
);
marker_5223c2b169ffd7976fc51fbe2ea7e841.setIcon(icon_35aa5c7cab97d38f604fcbb9674e5de7);
var marker_5e71ad3257b9987bcc68a63eaade00ff = L.marker(
[26.4411233, 50.0625531],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_1173627c08f1e899c501d24970fbe695 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_076803d0db78691f70d7bda7ac7c06f6 = L.popup({
"maxWidth": 320,
});
var html_6a5f29a0bcbc69b658587b487df0f604 = $(`<div id="html_6a5f29a0bcbc69b658587b487df0f604" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة تران جيي للتجارة والمقاولات</b><br> السجل التجاري: 2050152479<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.4411233,50.0625531" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_076803d0db78691f70d7bda7ac7c06f6.setContent(html_6a5f29a0bcbc69b658587b487df0f604);
marker_5e71ad3257b9987bcc68a63eaade00ff.bindPopup(popup_076803d0db78691f70d7bda7ac7c06f6)
;
marker_5e71ad3257b9987bcc68a63eaade00ff.bindTooltip(
`<div>
شركة تران جيي للتجارة والمقاولات
</div>`,
{
"sticky": true,
}
);
marker_5e71ad3257b9987bcc68a63eaade00ff.setIcon(icon_1173627c08f1e899c501d24970fbe695);
var marker_b609417b3b7c525280c60ca750d1a1cb = L.marker(
[26.4415775999999, 50.0632508599999],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_b520185f238d5fe906d617e0758126d4 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ae80139b308b19d640f714cbe036e034 = L.popup({
"maxWidth": 320,
});
var html_162242dee921ee45bf5c8772a8ad2a63 = $(`<div id="html_162242dee921ee45bf5c8772a8ad2a63" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة أفضل طريقة التجارية</b><br> السجل التجاري: 2050152574<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.4415775999999,50.0632508599999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ae80139b308b19d640f714cbe036e034.setContent(html_162242dee921ee45bf5c8772a8ad2a63);
marker_b609417b3b7c525280c60ca750d1a1cb.bindPopup(popup_ae80139b308b19d640f714cbe036e034)
;
marker_b609417b3b7c525280c60ca750d1a1cb.bindTooltip(
`<div>
شركة أفضل طريقة التجارية
</div>`,
{
"sticky": true,
}
);
marker_b609417b3b7c525280c60ca750d1a1cb.setIcon(icon_b520185f238d5fe906d617e0758126d4);
var marker_4c09143b58aa68f2d31427dda8215bb7 = L.marker(
[26.44163105, 50.0640432],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_adfb1b26a4ff47d82fd0fb498ec508dd = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cdf38e1c7e70adc1d9b0bdf0acf75e1a = L.popup({
"maxWidth": 320,
});
var html_2becf5bda3f5e8fa90ad8c8a4c891c79 = $(`<div id="html_2becf5bda3f5e8fa90ad8c8a4c891c79" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة زعيم القهوة للتجارة شركة شخص واحد</b><br> السجل التجاري: 2031102194<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.44163105,50.0640432" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cdf38e1c7e70adc1d9b0bdf0acf75e1a.setContent(html_2becf5bda3f5e8fa90ad8c8a4c891c79);
marker_4c09143b58aa68f2d31427dda8215bb7.bindPopup(popup_cdf38e1c7e70adc1d9b0bdf0acf75e1a)
;
marker_4c09143b58aa68f2d31427dda8215bb7.bindTooltip(
`<div>
شركة زعيم القهوة للتجارة شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_4c09143b58aa68f2d31427dda8215bb7.setIcon(icon_adfb1b26a4ff47d82fd0fb498ec508dd);
var marker_eb77909cd03b9d2a8e5b210c33db896c = L.marker(
[26.4422791699999, 50.06165842],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_0fc7e4ccc550f99946fedfd3c32c6cc9 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a0988a1cd1ce7ede7026ef4606b90de7 = L.popup({
"maxWidth": 320,
});
var html_f8a473ae3b3e8720b615e22caf345df9 = $(`<div id="html_f8a473ae3b3e8720b615e22caf345df9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة لمسة الجلدية للتجارة</b><br> السجل التجاري: 2050044970<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.4422791699999,50.06165842" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a0988a1cd1ce7ede7026ef4606b90de7.setContent(html_f8a473ae3b3e8720b615e22caf345df9);
marker_eb77909cd03b9d2a8e5b210c33db896c.bindPopup(popup_a0988a1cd1ce7ede7026ef4606b90de7)
;
marker_eb77909cd03b9d2a8e5b210c33db896c.bindTooltip(
`<div>
شركة لمسة الجلدية للتجارة
</div>`,
{
"sticky": true,
}
);
marker_eb77909cd03b9d2a8e5b210c33db896c.setIcon(icon_0fc7e4ccc550f99946fedfd3c32c6cc9);
var marker_a0a4d7f9d346067226378d31320e3174 = L.marker(
[26.44451851, 50.05651889],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_33dbf083d48ed3f70ee3e03b789331dd = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7dc068a16601f6ae73ce6eb47e48e239 = L.popup({
"maxWidth": 320,
});
var html_3653feccc1da16b3d3aa51f19667f818 = $(`<div id="html_3653feccc1da16b3d3aa51f19667f818" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة إمدادات الحبشي للتجارة</b><br> السجل التجاري: 2050130618<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.44451851,50.05651889" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7dc068a16601f6ae73ce6eb47e48e239.setContent(html_3653feccc1da16b3d3aa51f19667f818);
marker_a0a4d7f9d346067226378d31320e3174.bindPopup(popup_7dc068a16601f6ae73ce6eb47e48e239)
;
marker_a0a4d7f9d346067226378d31320e3174.bindTooltip(
`<div>
شركة إمدادات الحبشي للتجارة
</div>`,
{
"sticky": true,
}
);
marker_a0a4d7f9d346067226378d31320e3174.setIcon(icon_33dbf083d48ed3f70ee3e03b789331dd);
var marker_aa99b17a1b962ac2189829f19905c453 = L.marker(
[26.44732841, 50.0621600699999],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_c0a64e3d76405359a20a498ab90a8f21 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_192e6f2c01ea12b562c4c689b2196076 = L.popup({
"maxWidth": 320,
});
var html_5d954da10fd77614cbe90192db25ef13 = $(`<div id="html_5d954da10fd77614cbe90192db25ef13" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة سعود بن عبدالعزيز بن محمد السعدون للسجاد</b><br> السجل التجاري: 2050135008<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.44732841,50.0621600699999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_192e6f2c01ea12b562c4c689b2196076.setContent(html_5d954da10fd77614cbe90192db25ef13);
marker_aa99b17a1b962ac2189829f19905c453.bindPopup(popup_192e6f2c01ea12b562c4c689b2196076)
;
marker_aa99b17a1b962ac2189829f19905c453.bindTooltip(
`<div>
شركة سعود بن عبدالعزيز بن محمد السعدون للسجاد
</div>`,
{
"sticky": true,
}
);
marker_aa99b17a1b962ac2189829f19905c453.setIcon(icon_c0a64e3d76405359a20a498ab90a8f21);
var marker_258b65520b74e74e38dc6b5fbfeb2427 = L.marker(
[26.4475801799999, 50.0616041199999],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_dc878f155fcbfdca1dae54ff15176b08 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7c0a39792bc22d7eff96cedccafb6fb0 = L.popup({
"maxWidth": 320,
});
var html_53decb348aaa68ebddfdddb751923b50 = $(`<div id="html_53decb348aaa68ebddfdddb751923b50" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة ثروات الفيصل التجارية</b><br> السجل التجاري: 2050032393<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.4475801799999,50.0616041199999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7c0a39792bc22d7eff96cedccafb6fb0.setContent(html_53decb348aaa68ebddfdddb751923b50);
marker_258b65520b74e74e38dc6b5fbfeb2427.bindPopup(popup_7c0a39792bc22d7eff96cedccafb6fb0)
;
marker_258b65520b74e74e38dc6b5fbfeb2427.bindTooltip(
`<div>
شركة ثروات الفيصل التجارية
</div>`,
{
"sticky": true,
}
);
marker_258b65520b74e74e38dc6b5fbfeb2427.setIcon(icon_dc878f155fcbfdca1dae54ff15176b08);
var marker_dd66f26dc37c2e78d6ca347c4e8279ce = L.marker(
[26.45095191, 50.0545273299999],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_388c2e6baba80020f78d112a5d3b859b = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8e077dc80674ed2e2f2cb5ddc263171c = L.popup({
"maxWidth": 320,
});
var html_b8f8094b90e341efa58db3b91e684bec = $(`<div id="html_b8f8094b90e341efa58db3b91e684bec" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الهلال الاوسط التجارية</b><br> السجل التجاري: 2050220155<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.45095191,50.0545273299999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8e077dc80674ed2e2f2cb5ddc263171c.setContent(html_b8f8094b90e341efa58db3b91e684bec);
marker_dd66f26dc37c2e78d6ca347c4e8279ce.bindPopup(popup_8e077dc80674ed2e2f2cb5ddc263171c)
;
marker_dd66f26dc37c2e78d6ca347c4e8279ce.bindTooltip(
`<div>
شركة الهلال الاوسط التجارية
</div>`,
{
"sticky": true,
}
);
marker_dd66f26dc37c2e78d6ca347c4e8279ce.setIcon(icon_388c2e6baba80020f78d112a5d3b859b);
var marker_6e6e0b5832bdbdbc63594a777c8722e5 = L.marker(
[26.4511253599999, 50.0623860099999],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_6a1105b8dd976481e7e632bc69b2752e = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3e30b26dc3d7af2ae38dca6779bcb0bd = L.popup({
"maxWidth": 320,
});
var html_254572a57472ad944fcc908502425b03 = $(`<div id="html_254572a57472ad944fcc908502425b03" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة العناية بالنظافة الصحية للتجارة</b><br> السجل التجاري: 2062011408<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.4511253599999,50.0623860099999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3e30b26dc3d7af2ae38dca6779bcb0bd.setContent(html_254572a57472ad944fcc908502425b03);
marker_6e6e0b5832bdbdbc63594a777c8722e5.bindPopup(popup_3e30b26dc3d7af2ae38dca6779bcb0bd)
;
marker_6e6e0b5832bdbdbc63594a777c8722e5.bindTooltip(
`<div>
شركة العناية بالنظافة الصحية للتجارة
</div>`,
{
"sticky": true,
}
);
marker_6e6e0b5832bdbdbc63594a777c8722e5.setIcon(icon_6a1105b8dd976481e7e632bc69b2752e);
var marker_46c307a745397df830e3bb3d9ff4efae = L.marker(
[26.45147705, 50.06152344],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_661daecc73ce2fc30c4847bc8d3e2370 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9984effefcf612a2f14c0aab25654280 = L.popup({
"maxWidth": 320,
});
var html_4a853fc362fc06b61d4e9f332759c01c = $(`<div id="html_4a853fc362fc06b61d4e9f332759c01c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة بست دريم التجارية</b><br> السجل التجاري: 2050054049<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.45147705,50.06152344" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9984effefcf612a2f14c0aab25654280.setContent(html_4a853fc362fc06b61d4e9f332759c01c);
marker_46c307a745397df830e3bb3d9ff4efae.bindPopup(popup_9984effefcf612a2f14c0aab25654280)
;
marker_46c307a745397df830e3bb3d9ff4efae.bindTooltip(
`<div>
شركة بست دريم التجارية
</div>`,
{
"sticky": true,
}
);
marker_46c307a745397df830e3bb3d9ff4efae.setIcon(icon_661daecc73ce2fc30c4847bc8d3e2370);
var marker_6c6803e013d31f3c7f7c8386af2e8ef9 = L.marker(
[26.45234577164111, 50.05530584603548],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_acec8bbe70824d5a77f663e4f1dbefff = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fb627a802694a5f0a9a5ee3f7815dde6 = L.popup({
"maxWidth": 320,
});
var html_ea3637305dc721c071d35f7e3219137e = $(`<div id="html_ea3637305dc721c071d35f7e3219137e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة عالم الغذاء الدولي للمواد الغذائية شركة شخص واحد</b><br> السجل التجاري: 4030195785<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.45234577164111,50.05530584603548" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fb627a802694a5f0a9a5ee3f7815dde6.setContent(html_ea3637305dc721c071d35f7e3219137e);
marker_6c6803e013d31f3c7f7c8386af2e8ef9.bindPopup(popup_fb627a802694a5f0a9a5ee3f7815dde6)
;
marker_6c6803e013d31f3c7f7c8386af2e8ef9.bindTooltip(
`<div>
شركة عالم الغذاء الدولي للمواد الغذائية شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_6c6803e013d31f3c7f7c8386af2e8ef9.setIcon(icon_acec8bbe70824d5a77f663e4f1dbefff);
var marker_fdde89db851417582bd506d49a81fa14 = L.marker(
[26.45248453586704, 50.06213713049945],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_02a03e657a6422f3ed29041013b50296 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bc46e96e4a9f301d3bb94ef3828b41b6 = L.popup({
"maxWidth": 320,
});
var html_9be6473f80c8ed6050b4492160ca67d0 = $(`<div id="html_9be6473f80c8ed6050b4492160ca67d0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة المهاب للمقاولات العامة</b><br> السجل التجاري: 2050180451<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.45248453586704,50.06213713049945" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bc46e96e4a9f301d3bb94ef3828b41b6.setContent(html_9be6473f80c8ed6050b4492160ca67d0);
marker_fdde89db851417582bd506d49a81fa14.bindPopup(popup_bc46e96e4a9f301d3bb94ef3828b41b6)
;
marker_fdde89db851417582bd506d49a81fa14.bindTooltip(
`<div>
شركة المهاب للمقاولات العامة
</div>`,
{
"sticky": true,
}
);
marker_fdde89db851417582bd506d49a81fa14.setIcon(icon_02a03e657a6422f3ed29041013b50296);
var marker_ea7ceb75b590cd39728ba4dfee2c26ea = L.marker(
[26.45264031744163, 50.06220758892596],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_953348a2aab95772b16f412f752aecad = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_997f8b8b654d872d56b25ea1766a13f4 = L.popup({
"maxWidth": 320,
});
var html_1e686698bea497b63d0fb82e86b43749 = $(`<div id="html_1e686698bea497b63d0fb82e86b43749" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الخدمة والدعم للمقاولات شخص واحد</b><br> السجل التجاري: 2050175068<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.45264031744163,50.06220758892596" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_997f8b8b654d872d56b25ea1766a13f4.setContent(html_1e686698bea497b63d0fb82e86b43749);
marker_ea7ceb75b590cd39728ba4dfee2c26ea.bindPopup(popup_997f8b8b654d872d56b25ea1766a13f4)
;
marker_ea7ceb75b590cd39728ba4dfee2c26ea.bindTooltip(
`<div>
شركة الخدمة والدعم للمقاولات شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_ea7ceb75b590cd39728ba4dfee2c26ea.setIcon(icon_953348a2aab95772b16f412f752aecad);
var marker_d81b50067290b6ef672f4a9a6ae05d16 = L.marker(
[26.4543265299999, 50.0600264899999],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_60da61f82cfe11467a504d7acdcc550c = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_17660d87bc3fa0754f723e9ccd8606db = L.popup({
"maxWidth": 320,
});
var html_1c28dc7fdb81ec4dfadf868c864dd30b = $(`<div id="html_1c28dc7fdb81ec4dfadf868c864dd30b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الطبقة العليا للتجارة شركة شخص واحد</b><br> السجل التجاري: 2050053910<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.4543265299999,50.0600264899999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_17660d87bc3fa0754f723e9ccd8606db.setContent(html_1c28dc7fdb81ec4dfadf868c864dd30b);
marker_d81b50067290b6ef672f4a9a6ae05d16.bindPopup(popup_17660d87bc3fa0754f723e9ccd8606db)
;
marker_d81b50067290b6ef672f4a9a6ae05d16.bindTooltip(
`<div>
شركة الطبقة العليا للتجارة شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_d81b50067290b6ef672f4a9a6ae05d16.setIcon(icon_60da61f82cfe11467a504d7acdcc550c);
var marker_8fbe6beedbf78e69a4a32e27559a950d = L.marker(
[26.45504136651721, 50.05670757851831],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_388333893c0142754e011f657b053f54 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2ecd813471e6c1ce2d07ba1b60c6cc01 = L.popup({
"maxWidth": 320,
});
var html_7a9fd4c6e743a4bbfe38e1456871d55d = $(`<div id="html_7a9fd4c6e743a4bbfe38e1456871d55d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة تونس العالمية التجارية</b><br> السجل التجاري: 4030565598<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.45504136651721,50.05670757851831" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2ecd813471e6c1ce2d07ba1b60c6cc01.setContent(html_7a9fd4c6e743a4bbfe38e1456871d55d);
marker_8fbe6beedbf78e69a4a32e27559a950d.bindPopup(popup_2ecd813471e6c1ce2d07ba1b60c6cc01)
;
marker_8fbe6beedbf78e69a4a32e27559a950d.bindTooltip(
`<div>
شركة تونس العالمية التجارية
</div>`,
{
"sticky": true,
}
);
marker_8fbe6beedbf78e69a4a32e27559a950d.setIcon(icon_388333893c0142754e011f657b053f54);
var marker_cabf7789bdc58ae16c7130e3cdd04c4a = L.marker(
[26.4607235, 50.0610686899999],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_266cce4a0b426472afd700ae14dc6bd3 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_04b3d26ffb9726857200d7ac1409b561 = L.popup({
"maxWidth": 320,
});
var html_be4408458405656ca36932d4571fbe0a = $(`<div id="html_be4408458405656ca36932d4571fbe0a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة وادي العاصي للمقاولات شخص واحد</b><br> السجل التجاري: 2050174719<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.4607235,50.0610686899999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_04b3d26ffb9726857200d7ac1409b561.setContent(html_be4408458405656ca36932d4571fbe0a);
marker_cabf7789bdc58ae16c7130e3cdd04c4a.bindPopup(popup_04b3d26ffb9726857200d7ac1409b561)
;
marker_cabf7789bdc58ae16c7130e3cdd04c4a.bindTooltip(
`<div>
شركة وادي العاصي للمقاولات شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_cabf7789bdc58ae16c7130e3cdd04c4a.setIcon(icon_266cce4a0b426472afd700ae14dc6bd3);
var marker_23119a3ed4e7435877d0fc70fde0e60e = L.marker(
[26.4616322416367, 50.0609893684094],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_046bc3b2a1384c9b4d3fe8bb0c5db4b4 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1f7c6e0c331051bf03ddd824acb34164 = L.popup({
"maxWidth": 320,
});
var html_ecf89205733d4ac64c9b148552db5029 = $(`<div id="html_ecf89205733d4ac64c9b148552db5029" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة قلعة الوادي للتجارة</b><br> السجل التجاري: 2050134249<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.4616322416367,50.0609893684094" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1f7c6e0c331051bf03ddd824acb34164.setContent(html_ecf89205733d4ac64c9b148552db5029);
marker_23119a3ed4e7435877d0fc70fde0e60e.bindPopup(popup_1f7c6e0c331051bf03ddd824acb34164)
;
marker_23119a3ed4e7435877d0fc70fde0e60e.bindTooltip(
`<div>
شركة قلعة الوادي للتجارة
</div>`,
{
"sticky": true,
}
);
marker_23119a3ed4e7435877d0fc70fde0e60e.setIcon(icon_046bc3b2a1384c9b4d3fe8bb0c5db4b4);
var marker_40ebe03f9281c14e72aa9d62a7930b26 = L.marker(
[26.46713571560447, 50.04766671387263],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_4a3e16913f995678b9724382aad14f1a = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_132561ea50ec4298cc4b8bd9c65fbb2d = L.popup({
"maxWidth": 320,
});
var html_5defdbfd02b248ed075aafe48a08ad11 = $(`<div id="html_5defdbfd02b248ed075aafe48a08ad11" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة بيت نسما للمقاولات العامة</b><br> السجل التجاري: 2055150800<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.46713571560447,50.04766671387263" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_132561ea50ec4298cc4b8bd9c65fbb2d.setContent(html_5defdbfd02b248ed075aafe48a08ad11);
marker_40ebe03f9281c14e72aa9d62a7930b26.bindPopup(popup_132561ea50ec4298cc4b8bd9c65fbb2d)
;
marker_40ebe03f9281c14e72aa9d62a7930b26.bindTooltip(
`<div>
شركة بيت نسما للمقاولات العامة
</div>`,
{
"sticky": true,
}
);
marker_40ebe03f9281c14e72aa9d62a7930b26.setIcon(icon_4a3e16913f995678b9724382aad14f1a);
var marker_11a5bd596cb780ec2ebe9d66f7845a8f = L.marker(
[26.4676547762875, 50.05954155698419],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_433d0b62996fe3f700e2550f65700227 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b03d59feb5b0fa8b613df8714d887c58 = L.popup({
"maxWidth": 320,
});
var html_12b12bbe45b071bb0028e76459393018 = $(`<div id="html_12b12bbe45b071bb0028e76459393018" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة سي آي ان كيو الدولية المحدودة</b><br> السجل التجاري: 2050181587<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.4676547762875,50.05954155698419" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b03d59feb5b0fa8b613df8714d887c58.setContent(html_12b12bbe45b071bb0028e76459393018);
marker_11a5bd596cb780ec2ebe9d66f7845a8f.bindPopup(popup_b03d59feb5b0fa8b613df8714d887c58)
;
marker_11a5bd596cb780ec2ebe9d66f7845a8f.bindTooltip(
`<div>
شركة سي آي ان كيو الدولية المحدودة
</div>`,
{
"sticky": true,
}
);
marker_11a5bd596cb780ec2ebe9d66f7845a8f.setIcon(icon_433d0b62996fe3f700e2550f65700227);
var marker_3e32ed6af9d631f3e7cae76b9eec8c93 = L.marker(
[26.4702413999999, 50.0584566499999],
{
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
var icon_198c0b1bad27609808e7171419e1b622 = L.AwesomeMarkers.icon(
{
"markerColor": "gray",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2092c26e66c68ae20c2967a967386fe4 = L.popup({
"maxWidth": 320,
});
var html_e4bd1e615d2429f4fe9ef198dfc93508 = $(`<div id="html_e4bd1e615d2429f4fe9ef198dfc93508" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة وادي الضيافة لخدمات الاعاشة شركة شخص واحد</b><br> السجل التجاري: 2051248072<br> المنطقة: الدمام<br> الحارة: المحمدية<br> <a href="https://www.google.com/maps?q=26.4702413999999,50.0584566499999" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2092c26e66c68ae20c2967a967386fe4.setContent(html_e4bd1e615d2429f4fe9ef198dfc93508);
marker_3e32ed6af9d631f3e7cae76b9eec8c93.bindPopup(popup_2092c26e66c68ae20c2967a967386fe4)
;
marker_3e32ed6af9d631f3e7cae76b9eec8c93.bindTooltip(
`<div>
شركة وادي الضيافة لخدمات الاعاشة شركة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_3e32ed6af9d631f3e7cae76b9eec8c93.setIcon(icon_198c0b1bad27609808e7171419e1b622);
map_9131f19ccacedd18cf52d25d89939344.fitBounds(
[[26.44104879, 50.05958554], [26.4411233, 50.0625531], [26.4415775999999, 50.0632508599999], [26.44163105, 50.0640432], [26.4422791699999, 50.06165842], [26.44451851, 50.05651889], [26.44732841, 50.0621600699999], [26.4475801799999, 50.0616041199999], [26.45095191, 50.0545273299999], [26.4511253599999, 50.0623860099999], [26.45147705, 50.06152344], [26.45234577164111, 50.05530584603548], [26.45248453586704, 50.06213713049945], [26.45264031744163, 50.06220758892596], [26.4543265299999, 50.0600264899999], [26.45504136651721, 50.05670757851831], [26.4607235, 50.0610686899999], [26.4616322416367, 50.0609893684094], [26.46713571560447, 50.04766671387263], [26.4676547762875, 50.05954155698419], [26.4702413999999, 50.0584566499999]],
{"padding": [30, 30]}
);
var layer_control_e7bd11210f57c496a4d8162bca92dcb3_layers = {
base_layers : {
"\u062e\u0631\u064a\u0637\u0629 \u0627\u0644\u0634\u0627\u0631\u0639" : tile_layer_094b804ae37fac7f141f404a1a4f2355,
"\u0623\u0642\u0645\u0627\u0631 \u0635\u0646\u0627\u0639\u064a\u0629 (Esri)" : tile_layer_856e363de740c90d50a9ea0a59e07373,
},
overlays : {
},
};
let layer_control_e7bd11210f57c496a4d8162bca92dcb3 = L.control.layers(
layer_control_e7bd11210f57c496a4d8162bca92dcb3_layers.base_layers,
layer_control_e7bd11210f57c496a4d8162bca92dcb3_layers.overlays,
{
"position": "topright",
"collapsed": false,
"autoZIndex": true,
}
).addTo(map_9131f19ccacedd18cf52d25d89939344);
</script>
</html> |