File size: 43,209 Bytes
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 |
<!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_616515ed6973d5d905746a1343828923 {
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">ابرار بنت يوسف بن علي آل حماد - 49</span>
<span class="toggle" id="hideStats">إخفاء</span>
</div>
<div class="stats-body" id="statsBody">
<b>عدد المواقع:</b> 13<br>
<b>عدد الحارات:</b> 6<br>
<b>الأكثر:</b> <b>البديع</b>: 5 | <b>الصناعية</b>: 4 | <b>النرجس</b>: 1
<hr>
<b>تلوين حسب الحارة</b>
<div class="legend">
<div style="display:flex;gap:6px;align-items:center;margin:4px 0;">
<span style="width:12px;height:12px;border-radius:50%;
background:#dc3545;display:inline-block;border:1px solid rgba(0,0,0,0.2);"></span>
<span style="font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:170px;">البديع</span>
<span style="font-size:12px;color:#666;">(5)</span>
</div>
<div style="display:flex;gap:6px;align-items:center;margin:4px 0;">
<span style="width:12px;height:12px;border-radius:50%;
background:#dc3545;display:inline-block;border:1px solid rgba(0,0,0,0.2);"></span>
<span style="font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:170px;">الصناعية</span>
<span style="font-size:12px;color:#666;">(4)</span>
</div>
<div style="display:flex;gap:6px;align-items:center;margin:4px 0;">
<span style="width:12px;height:12px;border-radius:50%;
background:#d63384;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;">(1)</span>
</div>
<div style="display:flex;gap:6px;align-items:center;margin:4px 0;">
<span style="width:12px;height:12px;border-radius:50%;
background:#4b0082;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;">(1)</span>
</div>
<div style="display:flex;gap:6px;align-items:center;margin:4px 0;">
<span style="width:12px;height:12px;border-radius:50%;
background:#fd7e14;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;">(1)</span>
</div>
<div style="display:flex;gap:6px;align-items:center;margin:4px 0;">
<span style="width:12px;height:12px;border-radius:50%;
background:#8b0000;display:inline-block;border:1px solid rgba(0,0,0,0.2);"></span>
<span style="font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:170px;">الروضة</span>
<span style="font-size:12px;color:#666;">(1)</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_616515ed6973d5d905746a1343828923;
// items: list of objects (title, lat, lon, markerVar)
const items = [{"title": "مؤسسة مباني كيان للمقاولات", "lat": 26.6006107352834, "lon": 49.9802682835193, "markerVar": "marker_6787acb96cb923dd2daa5aa1f0273f1e"}, {"title": "فرع شركة أرمش للدواجن مركز تسويق", "lat": 26.59542293, "lon": 49.98203618, "markerVar": "marker_e442b9765ad44a7ffe5727b03631ddb9"}, {"title": "شركة النزاهة الأولى لخدمات السيارات", "lat": 26.5895911069455, "lon": 50.0400257133762, "markerVar": "marker_102b60f9b5b2719d9d6f865758976583"}, {"title": "شركة مصنع صفوة ساره الصناعية", "lat": 26.58579882, "lon": 50.03189729, "markerVar": "marker_739f006fca201e97af68b38bdf3e1fe3"}, {"title": "مؤسسة عقيل سعيد بن منصور ال ليث للمقاولات العامة", "lat": 26.5842710199999, "lon": 49.98412909, "markerVar": "marker_d41171b17a1af24860526ee6ad643764"}, {"title": "شركة الاسطح العالمية للصناعة", "lat": 26.55276226, "lon": 49.95783711, "markerVar": "marker_95f1e6a4088254534ce9bcbe26e55426"}, {"title": "شركة حاوية الشرق للصيانة", "lat": 26.55023478, "lon": 49.95900822, "markerVar": "marker_d772d8a7d06d2b1794eb29c2f51ca3ce"}, {"title": "شركة نفط وجاز التجارية", "lat": 26.58195133640392, "lon": 50.03887061029673, "markerVar": "marker_22c7e1733eb54f2e859ed8e86a9815b6"}, {"title": "شركة مصنع نبع الريم للبلاستيك", "lat": 26.58851118196579, "lon": 50.0374267436564, "markerVar": "marker_ac9fe1dd263172b3613e849a62427a2e"}, {"title": "شركة لالكو المحدودة شخص واحد", "lat": 26.54458389802751, "lon": 49.95696801692247, "markerVar": "marker_c0b2adb601251ae46fdd00c0cb03093e"}, {"title": "شركة سهل ولين المحدودة", "lat": 26.54372223925531, "lon": 49.9571318112572, "markerVar": "marker_d9f2d98f55ec8f63410a501fe7caa2f0"}, {"title": "شركة رمال الخير للمقاولات", "lat": 26.57873892004969, "lon": 50.03087152701637, "markerVar": "marker_acfee633b6ca8b89f1b4193af7a673bf"}, {"title": "شركة النهضة المتحدة للصناعة", "lat": 26.55119776866939, "lon": 49.95846938341856, "markerVar": "marker_f295afd87d4dff874bc0ff8e50d7c8ff"}];
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_616515ed6973d5d905746a1343828923" ></div>
</body>
<script>
var map_616515ed6973d5d905746a1343828923 = L.map(
"map_616515ed6973d5d905746a1343828923",
{
center: [26.572876692046187, 49.99345692149718],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
L.control.scale().addTo(map_616515ed6973d5d905746a1343828923);
var tile_layer_543005efb1f168c593b7916e2445dd4a = 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_543005efb1f168c593b7916e2445dd4a.addTo(map_616515ed6973d5d905746a1343828923);
var tile_layer_8229d3bed87d4aeeb50ee049dc2098b4 = 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_8229d3bed87d4aeeb50ee049dc2098b4.addTo(map_616515ed6973d5d905746a1343828923);
var locate_control_fd2d172c145c9b472212daac77fd9083 = L.control.locate(
{"flyTo": true}
).addTo(map_616515ed6973d5d905746a1343828923);
var marker_6787acb96cb923dd2daa5aa1f0273f1e = L.marker(
[26.6006107352834, 49.9802682835193],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_5740e619800b246dd2ed74281ea24f60 = L.AwesomeMarkers.icon(
{
"markerColor": "darkpurple",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ff47d7b97e4a6d2564f307dff7a3ec55 = L.popup({
"maxWidth": 320,
});
var html_9c09f0d0f81b89c39da0292055ce353d = $(`<div id="html_9c09f0d0f81b89c39da0292055ce353d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>مؤسسة مباني كيان للمقاولات</b><br> السجل التجاري: 2053022528<br> المنطقة: العواميه<br> الحارة: الثريا<br> <a href="https://www.google.com/maps?q=26.6006107352834,49.9802682835193" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ff47d7b97e4a6d2564f307dff7a3ec55.setContent(html_9c09f0d0f81b89c39da0292055ce353d);
marker_6787acb96cb923dd2daa5aa1f0273f1e.bindPopup(popup_ff47d7b97e4a6d2564f307dff7a3ec55)
;
marker_6787acb96cb923dd2daa5aa1f0273f1e.bindTooltip(
`<div>
مؤسسة مباني كيان للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_6787acb96cb923dd2daa5aa1f0273f1e.setIcon(icon_5740e619800b246dd2ed74281ea24f60);
var marker_e442b9765ad44a7ffe5727b03631ddb9 = L.marker(
[26.59542293, 49.98203618],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_4494222a0ef1220074ddf8f3664a1968 = L.AwesomeMarkers.icon(
{
"markerColor": "pink",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1a9b06f1119be8fde0c57f45007ad4c7 = L.popup({
"maxWidth": 320,
});
var html_7c03d7b363faf192cb0ea59c8bc26828 = $(`<div id="html_7c03d7b363faf192cb0ea59c8bc26828" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>فرع شركة أرمش للدواجن مركز تسويق</b><br> السجل التجاري: 2053121884<br> المنطقة: العواميه<br> الحارة: النرجس<br> <a href="https://www.google.com/maps?q=26.59542293,49.98203618" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1a9b06f1119be8fde0c57f45007ad4c7.setContent(html_7c03d7b363faf192cb0ea59c8bc26828);
marker_e442b9765ad44a7ffe5727b03631ddb9.bindPopup(popup_1a9b06f1119be8fde0c57f45007ad4c7)
;
marker_e442b9765ad44a7ffe5727b03631ddb9.bindTooltip(
`<div>
فرع شركة أرمش للدواجن مركز تسويق
</div>`,
{
"sticky": true,
}
);
marker_e442b9765ad44a7ffe5727b03631ddb9.setIcon(icon_4494222a0ef1220074ddf8f3664a1968);
var marker_102b60f9b5b2719d9d6f865758976583 = L.marker(
[26.5895911069455, 50.0400257133762],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_475378e9413802f6f28f0f5e43a400fb = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7302c9dc210c13aca835552766ebe59d = L.popup({
"maxWidth": 320,
});
var html_e86a7dec3f78fca0762b9aff035b81b2 = $(`<div id="html_e86a7dec3f78fca0762b9aff035b81b2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة النزاهة الأولى لخدمات السيارات</b><br> السجل التجاري: 2053035163<br> المنطقة: تاروت<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.5895911069455,50.0400257133762" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7302c9dc210c13aca835552766ebe59d.setContent(html_e86a7dec3f78fca0762b9aff035b81b2);
marker_102b60f9b5b2719d9d6f865758976583.bindPopup(popup_7302c9dc210c13aca835552766ebe59d)
;
marker_102b60f9b5b2719d9d6f865758976583.bindTooltip(
`<div>
شركة النزاهة الأولى لخدمات السيارات
</div>`,
{
"sticky": true,
}
);
marker_102b60f9b5b2719d9d6f865758976583.setIcon(icon_475378e9413802f6f28f0f5e43a400fb);
var marker_739f006fca201e97af68b38bdf3e1fe3 = L.marker(
[26.58579882, 50.03189729],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_f821d6c07bfec51a0dcdf12018a1f3d2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_94a3cbb2dfa8028e65f86a467bf76286 = L.popup({
"maxWidth": 320,
});
var html_6f83d1dd626d3c35181e6f88ed1af678 = $(`<div id="html_6f83d1dd626d3c35181e6f88ed1af678" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة مصنع صفوة ساره الصناعية</b><br> السجل التجاري: 2053034283<br> المنطقة: تاروت<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.58579882,50.03189729" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_94a3cbb2dfa8028e65f86a467bf76286.setContent(html_6f83d1dd626d3c35181e6f88ed1af678);
marker_739f006fca201e97af68b38bdf3e1fe3.bindPopup(popup_94a3cbb2dfa8028e65f86a467bf76286)
;
marker_739f006fca201e97af68b38bdf3e1fe3.bindTooltip(
`<div>
شركة مصنع صفوة ساره الصناعية
</div>`,
{
"sticky": true,
}
);
marker_739f006fca201e97af68b38bdf3e1fe3.setIcon(icon_f821d6c07bfec51a0dcdf12018a1f3d2);
var marker_d41171b17a1af24860526ee6ad643764 = L.marker(
[26.5842710199999, 49.98412909],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_48d5bfc29466544531a6e6dd4e04098c = L.AwesomeMarkers.icon(
{
"markerColor": "orange",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c8ff3ddb507fca6985a979388b6ecbaf = L.popup({
"maxWidth": 320,
});
var html_78e721b2e0d81cd7039c072c672b7876 = $(`<div id="html_78e721b2e0d81cd7039c072c672b7876" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>مؤسسة عقيل سعيد بن منصور ال ليث للمقاولات العامة</b><br> السجل التجاري: 2053100948<br> المنطقة: العواميه<br> الحارة: العوامية<br> <a href="https://www.google.com/maps?q=26.5842710199999,49.98412909" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c8ff3ddb507fca6985a979388b6ecbaf.setContent(html_78e721b2e0d81cd7039c072c672b7876);
marker_d41171b17a1af24860526ee6ad643764.bindPopup(popup_c8ff3ddb507fca6985a979388b6ecbaf)
;
marker_d41171b17a1af24860526ee6ad643764.bindTooltip(
`<div>
مؤسسة عقيل سعيد بن منصور ال ليث للمقاولات العامة
</div>`,
{
"sticky": true,
}
);
marker_d41171b17a1af24860526ee6ad643764.setIcon(icon_48d5bfc29466544531a6e6dd4e04098c);
var marker_95f1e6a4088254534ce9bcbe26e55426 = L.marker(
[26.55276226, 49.95783711],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_648d50167bb7348008f7f2f504b1b78e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_588fc9976164ab981c6414fde3154613 = L.popup({
"maxWidth": 320,
});
var html_d7d51e2598724b5b936baea37860f6dc = $(`<div id="html_d7d51e2598724b5b936baea37860f6dc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة الاسطح العالمية للصناعة</b><br> السجل التجاري: 2050169532<br> المنطقة: الجاروديه<br> الحارة: البديع<br> <a href="https://www.google.com/maps?q=26.55276226,49.95783711" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_588fc9976164ab981c6414fde3154613.setContent(html_d7d51e2598724b5b936baea37860f6dc);
marker_95f1e6a4088254534ce9bcbe26e55426.bindPopup(popup_588fc9976164ab981c6414fde3154613)
;
marker_95f1e6a4088254534ce9bcbe26e55426.bindTooltip(
`<div>
شركة الاسطح العالمية للصناعة
</div>`,
{
"sticky": true,
}
);
marker_95f1e6a4088254534ce9bcbe26e55426.setIcon(icon_648d50167bb7348008f7f2f504b1b78e);
var marker_d772d8a7d06d2b1794eb29c2f51ca3ce = L.marker(
[26.55023478, 49.95900822],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_084a201a070973e3b75b5fcf4729e053 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f381c08eb1950349cfb268754fa7a85f = L.popup({
"maxWidth": 320,
});
var html_b3016a0c4065c01b94ba47bce237a642 = $(`<div id="html_b3016a0c4065c01b94ba47bce237a642" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة حاوية الشرق للصيانة</b><br> السجل التجاري: 2053115822<br> المنطقة: الجاروديه<br> الحارة: البديع<br> <a href="https://www.google.com/maps?q=26.55023478,49.95900822" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f381c08eb1950349cfb268754fa7a85f.setContent(html_b3016a0c4065c01b94ba47bce237a642);
marker_d772d8a7d06d2b1794eb29c2f51ca3ce.bindPopup(popup_f381c08eb1950349cfb268754fa7a85f)
;
marker_d772d8a7d06d2b1794eb29c2f51ca3ce.bindTooltip(
`<div>
شركة حاوية الشرق للصيانة
</div>`,
{
"sticky": true,
}
);
marker_d772d8a7d06d2b1794eb29c2f51ca3ce.setIcon(icon_084a201a070973e3b75b5fcf4729e053);
var marker_22c7e1733eb54f2e859ed8e86a9815b6 = L.marker(
[26.58195133640392, 50.03887061029673],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_088a341b5fbbbb621cadba16aa49c46a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a8da4d532272894de71cc7c6cd5fe219 = L.popup({
"maxWidth": 320,
});
var html_00a524f69f5620b51e7da0860bcffd96 = $(`<div id="html_00a524f69f5620b51e7da0860bcffd96" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة نفط وجاز التجارية</b><br> السجل التجاري: 2252105844<br> المنطقة: تاروت<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.58195133640392,50.03887061029673" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a8da4d532272894de71cc7c6cd5fe219.setContent(html_00a524f69f5620b51e7da0860bcffd96);
marker_22c7e1733eb54f2e859ed8e86a9815b6.bindPopup(popup_a8da4d532272894de71cc7c6cd5fe219)
;
marker_22c7e1733eb54f2e859ed8e86a9815b6.bindTooltip(
`<div>
شركة نفط وجاز التجارية
</div>`,
{
"sticky": true,
}
);
marker_22c7e1733eb54f2e859ed8e86a9815b6.setIcon(icon_088a341b5fbbbb621cadba16aa49c46a);
var marker_ac9fe1dd263172b3613e849a62427a2e = L.marker(
[26.58851118196579, 50.0374267436564],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_492a11ec5eed2f3056d8ac21a0a47c03 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0e6a589285796cf7855cf85eb61a4331 = L.popup({
"maxWidth": 320,
});
var html_2744907017303bd2a5c8a41235e66691 = $(`<div id="html_2744907017303bd2a5c8a41235e66691" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة مصنع نبع الريم للبلاستيك</b><br> السجل التجاري: 2053123964<br> المنطقة: تاروت<br> الحارة: الصناعية<br> <a href="https://www.google.com/maps?q=26.58851118196579,50.0374267436564" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0e6a589285796cf7855cf85eb61a4331.setContent(html_2744907017303bd2a5c8a41235e66691);
marker_ac9fe1dd263172b3613e849a62427a2e.bindPopup(popup_0e6a589285796cf7855cf85eb61a4331)
;
marker_ac9fe1dd263172b3613e849a62427a2e.bindTooltip(
`<div>
شركة مصنع نبع الريم للبلاستيك
</div>`,
{
"sticky": true,
}
);
marker_ac9fe1dd263172b3613e849a62427a2e.setIcon(icon_492a11ec5eed2f3056d8ac21a0a47c03);
var marker_c0b2adb601251ae46fdd00c0cb03093e = L.marker(
[26.54458389802751, 49.95696801692247],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_87eaa8cca97c1c2afcf071cd00776185 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_10f17e0a70942b1e0ae6cc40f80b647f = L.popup({
"maxWidth": 320,
});
var html_aa4a12dc085986efa205a8a38536dc5d = $(`<div id="html_aa4a12dc085986efa205a8a38536dc5d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة لالكو المحدودة شخص واحد</b><br> السجل التجاري: 4030519856<br> المنطقة: الجاروديه<br> الحارة: البديع<br> <a href="https://www.google.com/maps?q=26.54458389802751,49.95696801692247" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_10f17e0a70942b1e0ae6cc40f80b647f.setContent(html_aa4a12dc085986efa205a8a38536dc5d);
marker_c0b2adb601251ae46fdd00c0cb03093e.bindPopup(popup_10f17e0a70942b1e0ae6cc40f80b647f)
;
marker_c0b2adb601251ae46fdd00c0cb03093e.bindTooltip(
`<div>
شركة لالكو المحدودة شخص واحد
</div>`,
{
"sticky": true,
}
);
marker_c0b2adb601251ae46fdd00c0cb03093e.setIcon(icon_87eaa8cca97c1c2afcf071cd00776185);
var marker_d9f2d98f55ec8f63410a501fe7caa2f0 = L.marker(
[26.54372223925531, 49.9571318112572],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_d9cacec92dd60c35b46784a59369f56f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_20e564546bfafb21faf14616ae5b960d = L.popup({
"maxWidth": 320,
});
var html_59e27546810ca3080a052b49f8913fcb = $(`<div id="html_59e27546810ca3080a052b49f8913fcb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة سهل ولين المحدودة</b><br> السجل التجاري: 2051255749<br> المنطقة: الجاروديه<br> الحارة: البديع<br> <a href="https://www.google.com/maps?q=26.54372223925531,49.9571318112572" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_20e564546bfafb21faf14616ae5b960d.setContent(html_59e27546810ca3080a052b49f8913fcb);
marker_d9f2d98f55ec8f63410a501fe7caa2f0.bindPopup(popup_20e564546bfafb21faf14616ae5b960d)
;
marker_d9f2d98f55ec8f63410a501fe7caa2f0.bindTooltip(
`<div>
شركة سهل ولين المحدودة
</div>`,
{
"sticky": true,
}
);
marker_d9f2d98f55ec8f63410a501fe7caa2f0.setIcon(icon_d9cacec92dd60c35b46784a59369f56f);
var marker_acfee633b6ca8b89f1b4193af7a673bf = L.marker(
[26.57873892004969, 50.03087152701637],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_08eb0d94befad6f623dd9e81a8c94ff6 = L.AwesomeMarkers.icon(
{
"markerColor": "darkred",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9ab00546205742993cc1cc49ac56d44f = L.popup({
"maxWidth": 320,
});
var html_da07b1a8ed06e8743eafd22d25a42c2d = $(`<div id="html_da07b1a8ed06e8743eafd22d25a42c2d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة رمال الخير للمقاولات</b><br> السجل التجاري: 2053012890<br> المنطقة: تاروت<br> الحارة: الروضة<br> <a href="https://www.google.com/maps?q=26.57873892004969,50.03087152701637" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9ab00546205742993cc1cc49ac56d44f.setContent(html_da07b1a8ed06e8743eafd22d25a42c2d);
marker_acfee633b6ca8b89f1b4193af7a673bf.bindPopup(popup_9ab00546205742993cc1cc49ac56d44f)
;
marker_acfee633b6ca8b89f1b4193af7a673bf.bindTooltip(
`<div>
شركة رمال الخير للمقاولات
</div>`,
{
"sticky": true,
}
);
marker_acfee633b6ca8b89f1b4193af7a673bf.setIcon(icon_08eb0d94befad6f623dd9e81a8c94ff6);
var marker_f295afd87d4dff874bc0ff8e50d7c8ff = L.marker(
[26.55119776866939, 49.95846938341856],
{
}
).addTo(map_616515ed6973d5d905746a1343828923);
var icon_8c696a093b5b245a1ff4a4e248699cb9 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f8da6d7f4a256e6e1db5b71dbd3d415a = L.popup({
"maxWidth": 320,
});
var html_9f9927e31db40d1ad5ff222ae91c0954 = $(`<div id="html_9f9927e31db40d1ad5ff222ae91c0954" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-family:Arial;line-height:1.7;"> <b>شركة النهضة المتحدة للصناعة</b><br> السجل التجاري: 2050193076<br> المنطقة: الجاروديه<br> الحارة: البديع<br> <a href="https://www.google.com/maps?q=26.55119776866939,49.95846938341856" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f8da6d7f4a256e6e1db5b71dbd3d415a.setContent(html_9f9927e31db40d1ad5ff222ae91c0954);
marker_f295afd87d4dff874bc0ff8e50d7c8ff.bindPopup(popup_f8da6d7f4a256e6e1db5b71dbd3d415a)
;
marker_f295afd87d4dff874bc0ff8e50d7c8ff.bindTooltip(
`<div>
شركة النهضة المتحدة للصناعة
</div>`,
{
"sticky": true,
}
);
marker_f295afd87d4dff874bc0ff8e50d7c8ff.setIcon(icon_8c696a093b5b245a1ff4a4e248699cb9);
map_616515ed6973d5d905746a1343828923.fitBounds(
[[26.6006107352834, 49.9802682835193], [26.59542293, 49.98203618], [26.5895911069455, 50.0400257133762], [26.58579882, 50.03189729], [26.5842710199999, 49.98412909], [26.55276226, 49.95783711], [26.55023478, 49.95900822], [26.58195133640392, 50.03887061029673], [26.58851118196579, 50.0374267436564], [26.54458389802751, 49.95696801692247], [26.54372223925531, 49.9571318112572], [26.57873892004969, 50.03087152701637], [26.55119776866939, 49.95846938341856]],
{"padding": [30, 30]}
);
var layer_control_5f4d766b1e30b71f5356ee9028e33c58_layers = {
base_layers : {
"\u062e\u0631\u064a\u0637\u0629 \u0627\u0644\u0634\u0627\u0631\u0639" : tile_layer_543005efb1f168c593b7916e2445dd4a,
"\u0623\u0642\u0645\u0627\u0631 \u0635\u0646\u0627\u0639\u064a\u0629 (Esri)" : tile_layer_8229d3bed87d4aeeb50ee049dc2098b4,
},
overlays : {
},
};
let layer_control_5f4d766b1e30b71f5356ee9028e33c58 = L.control.layers(
layer_control_5f4d766b1e30b71f5356ee9028e33c58_layers.base_layers,
layer_control_5f4d766b1e30b71f5356ee9028e33c58_layers.overlays,
{
"position": "topright",
"collapsed": false,
"autoZIndex": true,
}
).addTo(map_616515ed6973d5d905746a1343828923);
</script>
</html> |