-
Notifications
You must be signed in to change notification settings - Fork 1
/
map.html
747 lines (345 loc) · 42.7 KB
/
map.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<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 src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/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/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/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_55bdce6569b705f7e49a935b31f0c8cf {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_55bdce6569b705f7e49a935b31f0c8cf" ></div>
</body>
<script>
var map_55bdce6569b705f7e49a935b31f0c8cf = L.map(
"map_55bdce6569b705f7e49a935b31f0c8cf",
{
center: [32.110466956646356, 34.796250492965434],
crs: L.CRS.EPSG3857,
zoom: 14,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_308368e281087dc0e5eef3cdbd94718b = L.tileLayer(
"https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca target=\"_blank\" href=\"http://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca target=\"_blank\" href=\"http://cartodb.com/attributions\"\u003eCartoDB\u003c/a\u003e, CartoDB \u003ca target=\"_blank\" href =\"http://cartodb.com/attributions\"\u003eattributions\u003c/a\u003e", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var circle_marker_bc95af1d1d57dd12032ea63be9b62d64 = L.circleMarker(
[32.10846967737704, 34.794126407371664],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9.363333333333333, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_4caefdda485c9fd523a4d0718af055e7 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_b9642d801dd94011964a2e925384c84a = $(`<div id="html_b9642d801dd94011964a2e925384c84a" style="width: 100.0%; height: 100.0%;">Street: רדינג<br>Exact location on this street is unknown<br>Rooms: 2.5<br>Floor: 2<br>Price: 5300<br><a href='https://www.facebook.com/groups/914953618536575/posts/6742148269150385/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_4caefdda485c9fd523a4d0718af055e7.setContent(html_b9642d801dd94011964a2e925384c84a);
circle_marker_bc95af1d1d57dd12032ea63be9b62d64.bindPopup(popup_4caefdda485c9fd523a4d0718af055e7)
;
var circle_marker_2199030384c734b1a2e44609ea58d243 = L.circleMarker(
[32.109021312262364, 34.796177905264464],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 15.413333333333334, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_04c975fb63219c5707dc4f1f9ec6077c = L.popup({"maxWidth": 200, "minWidth": 200});
var html_686570dd0aab6173d28afd304b9c23ad = $(`<div id="html_686570dd0aab6173d28afd304b9c23ad" style="width: 100.0%; height: 100.0%;">Street: נח<br>Number: 6<br>Rooms: 3<br>Floor: 0<br>Price: 6800<br><a href='https://www.facebook.com/groups/914953618536575/posts/6741833399181872/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_04c975fb63219c5707dc4f1f9ec6077c.setContent(html_686570dd0aab6173d28afd304b9c23ad);
circle_marker_2199030384c734b1a2e44609ea58d243.bindPopup(popup_04c975fb63219c5707dc4f1f9ec6077c)
;
var circle_marker_53d351cd7e70ac1d11c75f866ffd46df = L.circleMarker(
[32.10716378842689, 34.7946397969963],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 15.87, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_3dfeb5d098e2cb6f4ba76b8fe6345cd9 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_9cc210676e141b01efd8571b4dad8675 = $(`<div id="html_9cc210676e141b01efd8571b4dad8675" style="width: 100.0%; height: 100.0%;">Street: יהודה קרני<br>Exact location on this street is unknown<br>Rooms: 3<br>Floor: 3<br>Price: 6900<br><a href='https://www.facebook.com/groups/914953618536575/posts/6636374369727776/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_3dfeb5d098e2cb6f4ba76b8fe6345cd9.setContent(html_9cc210676e141b01efd8571b4dad8675);
circle_marker_53d351cd7e70ac1d11c75f866ffd46df.bindPopup(popup_3dfeb5d098e2cb6f4ba76b8fe6345cd9)
;
var circle_marker_0942dfd2d373ead961d879f000190364 = L.circleMarker(
[32.11368563316967, 34.79815982210182],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 16.333333333333332, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_1d93d0baf40c9d27a772455598204b38 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_2c693541e107f7a412138bbc0879658c = $(`<div id="html_2c693541e107f7a412138bbc0879658c" style="width: 100.0%; height: 100.0%;">Street: בארט<br>Exact location on this street is unknown<br>Rooms: 4<br>Price: 7000<br><a href='https://www.facebook.com/groups/914953618536575/posts/6608671719164708/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_1d93d0baf40c9d27a772455598204b38.setContent(html_2c693541e107f7a412138bbc0879658c);
circle_marker_0942dfd2d373ead961d879f000190364.bindPopup(popup_1d93d0baf40c9d27a772455598204b38)
;
var circle_marker_785e4a34ea0ddb012a0a566d6e913c3a = L.circleMarker(
[32.10645444720557, 34.791980041448795],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 11.603333333333333, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_d7b39b333b30610eb8420eae70ccc403 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_9a4d8c5ebfa191bdfbe6a145e6b0bf87 = $(`<div id="html_9a4d8c5ebfa191bdfbe6a145e6b0bf87" style="width: 100.0%; height: 100.0%;">Street: שמעוני<br>Exact location on this street is unknown<br>Rooms: 2.5<br>Floor: 3<br>Price: 5900<br><a href='https://www.facebook.com/groups/914953618536575/posts/6679601935405019/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_d7b39b333b30610eb8420eae70ccc403.setContent(html_9a4d8c5ebfa191bdfbe6a145e6b0bf87);
circle_marker_785e4a34ea0ddb012a0a566d6e913c3a.bindPopup(popup_d7b39b333b30610eb8420eae70ccc403)
;
var circle_marker_b8f5a5298a0592b5ce8fe6a2ec4b8d72 = L.circleMarker(
[32.10923018848167, 34.794018412535394],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.75, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_8a8317c29698d59abb487b83edb0f52b = L.popup({"maxWidth": 200, "minWidth": 200});
var html_946ad22f8a053b62136a850ad8080b66 = $(`<div id="html_946ad22f8a053b62136a850ad8080b66" style="width: 100.0%; height: 100.0%;">Street: רדינג<br>Exact location on this street is unknown<br>Rooms: 3<br>Price: 4500<br><a href='https://www.facebook.com/groups/914953618536575/posts/6728761013822444/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_8a8317c29698d59abb487b83edb0f52b.setContent(html_946ad22f8a053b62136a850ad8080b66);
circle_marker_b8f5a5298a0592b5ce8fe6a2ec4b8d72.bindPopup(popup_8a8317c29698d59abb487b83edb0f52b)
;
var circle_marker_fa42a4163746147e8b6b778323fd4823 = L.circleMarker(
[32.10371177512551, 34.79496101368838],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9.363333333333333, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_eb3d5ac09087f120b67b8883408fed0e = L.popup({"maxWidth": 200, "minWidth": 200});
var html_32b3fc1ea6224267f5867cee3b728120 = $(`<div id="html_32b3fc1ea6224267f5867cee3b728120" style="width: 100.0%; height: 100.0%;">Street: רדינג<br>Number: 4<br>Rooms: 2.5<br>Price: 5300</div>`)[0];
popup_eb3d5ac09087f120b67b8883408fed0e.setContent(html_32b3fc1ea6224267f5867cee3b728120);
circle_marker_fa42a4163746147e8b6b778323fd4823.bindPopup(popup_eb3d5ac09087f120b67b8883408fed0e)
;
var circle_marker_60cf2e7ef81260aa27044d563104a917 = L.circleMarker(
[32.11722624851654, 34.79706283878762],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 19.2027, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_1be2f0600ce166b898fa1616586a1e4e = L.popup({"maxWidth": 200, "minWidth": 200});
var html_0da43e73315515695dc5702ec9a6542e = $(`<div id="html_0da43e73315515695dc5702ec9a6542e" style="width: 100.0%; height: 100.0%;">Street: טאגור<br>Exact location on this street is unknown<br>Rooms: 3<br>Floor: 3<br>Price: 7590</div>`)[0];
popup_1be2f0600ce166b898fa1616586a1e4e.setContent(html_0da43e73315515695dc5702ec9a6542e);
circle_marker_60cf2e7ef81260aa27044d563104a917.bindPopup(popup_1be2f0600ce166b898fa1616586a1e4e)
;
var circle_marker_600dd18bcc362e9d3fdf987478e1b183 = L.circleMarker(
[32.11136423206324, 34.799211859407606],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 16.803333333333335, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_8df0f7a95ab5783f133c84b7ae51b5b8 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_02f243dce0ade099813e13b26d53e5bd = $(`<div id="html_02f243dce0ade099813e13b26d53e5bd" style="width: 100.0%; height: 100.0%;">Exact location is missing, arbitrary location was chosen<br>Rooms: 2.5<br>Floor: 0<br>Price: 7100<br><a href='https://www.facebook.com/groups/914953618536575/posts/6651499434881936/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_8df0f7a95ab5783f133c84b7ae51b5b8.setContent(html_02f243dce0ade099813e13b26d53e5bd);
circle_marker_600dd18bcc362e9d3fdf987478e1b183.bindPopup(popup_8df0f7a95ab5783f133c84b7ae51b5b8)
;
var circle_marker_b7b6a0622bb023b31c2a778294eded4e = L.circleMarker(
[32.11102079429361, 34.794802315245384],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9.72, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_2699cfb9193061216690676fe35894cf = L.popup({"maxWidth": 200, "minWidth": 200});
var html_ce4a4059c52140f0d1c460205a7a5f8e = $(`<div id="html_ce4a4059c52140f0d1c460205a7a5f8e" style="width: 100.0%; height: 100.0%;">Street: אשר ברש<br>Exact location on this street is unknown<br>Rooms: 2<br>Floor: 3<br>Price: 5400<br><a href='https://www.facebook.com/groups/914953618536575/posts/6397425670289315/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_2699cfb9193061216690676fe35894cf.setContent(html_ce4a4059c52140f0d1c460205a7a5f8e);
circle_marker_b7b6a0622bb023b31c2a778294eded4e.bindPopup(popup_2699cfb9193061216690676fe35894cf)
;
var circle_marker_19e3cdf38c7cfc4f213829b89561796d = L.circleMarker(
[32.10876524443402, 34.79750926724935],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 18.253333333333334, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_985eb6238dc38785a3d76caeffe61308 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_1648df5a88d45bea93868950af8bca96 = $(`<div id="html_1648df5a88d45bea93868950af8bca96" style="width: 100.0%; height: 100.0%;">Street: נח<br>Exact location on this street is unknown<br>Rooms: 3<br>Floor: 3<br>Price: 7400<br><a href='https://www.facebook.com/groups/914953618536575/posts/6611994308832449/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_985eb6238dc38785a3d76caeffe61308.setContent(html_1648df5a88d45bea93868950af8bca96);
circle_marker_19e3cdf38c7cfc4f213829b89561796d.bindPopup(popup_985eb6238dc38785a3d76caeffe61308)
;
var circle_marker_cf20ca0eab4610c76fb73a154cedd9eb = L.circleMarker(
[32.116999959190345, 34.79295334087516],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10.565633333333333, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_25386fe80fb855e085c00b2722beabc2 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_db8e08d2b726196a28e5328e3d444064 = $(`<div id="html_db8e08d2b726196a28e5328e3d444064" style="width: 100.0%; height: 100.0%;">Street: הסבוראים<br>Exact location on this street is unknown<br>Rooms: 3<br>Floor: 3<br>Price: 5630<br><a href='https://www.facebook.com/groups/914953618536575/posts/6695437250488154/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_25386fe80fb855e085c00b2722beabc2.setContent(html_db8e08d2b726196a28e5328e3d444064);
circle_marker_cf20ca0eab4610c76fb73a154cedd9eb.bindPopup(popup_25386fe80fb855e085c00b2722beabc2)
;
var circle_marker_5238b75fd7ad2045b1739c02e5a0126b = L.circleMarker(
[32.11356046865428, 34.7963367184816],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 20.28, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_ae4b103e05f48c3cc134c1a5a1686616 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_d3da1e85023ab0130ddc06d28b47f031 = $(`<div id="html_d3da1e85023ab0130ddc06d28b47f031" style="width: 100.0%; height: 100.0%;">Street: איינשטיין<br>Exact location on this street is unknown<br>Rooms: 3<br>Floor: 2<br>Price: 7800<br><a href='https://www.facebook.com/groups/914953618536575/posts/6415748945123654/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_ae4b103e05f48c3cc134c1a5a1686616.setContent(html_d3da1e85023ab0130ddc06d28b47f031);
circle_marker_5238b75fd7ad2045b1739c02e5a0126b.bindPopup(popup_ae4b103e05f48c3cc134c1a5a1686616)
;
var circle_marker_7f564835b1c9998b8ea68c85d59bdca8 = L.circleMarker(
[32.117486699263935, 34.797914240627776],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 13.23, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_c0ac6e33e6e490f249d311b06e6359ee = L.popup({"maxWidth": 200, "minWidth": 200});
var html_867364d54bdc16fac7d292d154dde8d0 = $(`<div id="html_867364d54bdc16fac7d292d154dde8d0" style="width: 100.0%; height: 100.0%;">Street: פסטרנק<br>Exact location on this street is unknown<br>Rooms: 3<br>Floor: 0<br>Price: 6300<br><a href='https://www.facebook.com/groups/914953618536575/posts/6261441850554365/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_c0ac6e33e6e490f249d311b06e6359ee.setContent(html_867364d54bdc16fac7d292d154dde8d0);
circle_marker_7f564835b1c9998b8ea68c85d59bdca8.bindPopup(popup_c0ac6e33e6e490f249d311b06e6359ee)
;
var circle_marker_148eb1e15db1a58664a01741a1cfc008 = L.circleMarker(
[32.11257291713561, 34.800207268213164],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": NaN, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_ee6fdb2b92e4330efb6a8799f9ed1d92 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_287003f96de80887cb5ea12427bf3278 = $(`<div id="html_287003f96de80887cb5ea12427bf3278" style="width: 100.0%; height: 100.0%;">Street: פרנקל<br>Exact location on this street is unknown<br>Rooms: 3.5<br>Floor: 0<br>Price: nan<br><a href='https://www.facebook.com/groups/914953618536575/posts/6645786165453263/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_ee6fdb2b92e4330efb6a8799f9ed1d92.setContent(html_287003f96de80887cb5ea12427bf3278);
circle_marker_148eb1e15db1a58664a01741a1cfc008.bindPopup(popup_ee6fdb2b92e4330efb6a8799f9ed1d92)
;
var circle_marker_2bb008810f0ffad4e9c82d2c24bda8f5 = L.circleMarker(
[32.1114854195299, 34.797325891400575],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 30.083333333333332, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_347de2ab2db19cfac54b7d381e377df3 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_d0cd047637d9dd101837368c96421893 = $(`<div id="html_d0cd047637d9dd101837368c96421893" style="width: 100.0%; height: 100.0%;">Street: איינשטיין<br>Exact location on this street is unknown<br>Rooms: 4<br>Floor: 3<br>Price: 9500<br><a href='https://www.facebook.com/groups/914953618536575/posts/6680656661966213/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_347de2ab2db19cfac54b7d381e377df3.setContent(html_d0cd047637d9dd101837368c96421893);
circle_marker_2bb008810f0ffad4e9c82d2c24bda8f5.bindPopup(popup_347de2ab2db19cfac54b7d381e377df3)
;
var circle_marker_581c4eb327c39a3fc23c20c536c68a2c = L.circleMarker(
[32.1170432283374, 34.80012305559181],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 21.333333333333332, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_123da9aba87bd15d048e881dd3e84688 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_042ad9a7dd28e16ba7cc0a22cd5896ed = $(`<div id="html_042ad9a7dd28e16ba7cc0a22cd5896ed" style="width: 100.0%; height: 100.0%;">Street: פיליכובסקי<br>Exact location on this street is unknown<br>Rooms: 3<br>Floor: 4<br>Price: 8000<br><a href='https://www.facebook.com/groups/914953618536575/posts/6751852221513323/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_123da9aba87bd15d048e881dd3e84688.setContent(html_042ad9a7dd28e16ba7cc0a22cd5896ed);
circle_marker_581c4eb327c39a3fc23c20c536c68a2c.bindPopup(popup_123da9aba87bd15d048e881dd3e84688)
;
var circle_marker_5249284f4b63385c83822504b5b10894 = L.circleMarker(
[32.106619485274265, 34.79388534843399],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 11.603333333333333, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_292e744c67aac1432081308d8f076f8d = L.popup({"maxWidth": 200, "minWidth": 200});
var html_e9845ab969ac3244a590dac3a974753e = $(`<div id="html_e9845ab969ac3244a590dac3a974753e" style="width: 100.0%; height: 100.0%;">Street: שמעוני<br>Exact location on this street is unknown<br>Rooms: 2<br>Price: 5900<br><a href='https://www.facebook.com/groups/914953618536575/posts/6751751441523401/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_292e744c67aac1432081308d8f076f8d.setContent(html_e9845ab969ac3244a590dac3a974753e);
circle_marker_5249284f4b63385c83822504b5b10894.bindPopup(popup_292e744c67aac1432081308d8f076f8d)
;
var circle_marker_0dae2df5d17c348dc85e6140d11457f7 = L.circleMarker(
[32.10835623921511, 34.79884972199064],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 16.333333333333332, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_17852af22cc69c34843b96fd15dcafca = L.popup({"maxWidth": 200, "minWidth": 200});
var html_92093c12b9021b71b63eb5b167f0267b = $(`<div id="html_92093c12b9021b71b63eb5b167f0267b" style="width: 100.0%; height: 100.0%;">Street: חיים לבנון<br>Exact location on this street is unknown<br>Rooms: 3<br>Floor: 4<br>Price: 7000<br><a href='https://www.facebook.com/groups/914953618536575/posts/6752012958163916/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_17852af22cc69c34843b96fd15dcafca.setContent(html_92093c12b9021b71b63eb5b167f0267b);
circle_marker_0dae2df5d17c348dc85e6140d11457f7.bindPopup(popup_17852af22cc69c34843b96fd15dcafca)
;
var circle_marker_85222bc9fb8b114aef3f52ebbee14239 = L.circleMarker(
[32.109289169988294, 34.79500896526471],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 12.0, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_bcef70ddc5d6ffde187ce8afaaf5af2c = L.popup({"maxWidth": 200, "minWidth": 200});
var html_b7972865f5004e082f4ac74d7a9f5744 = $(`<div id="html_b7972865f5004e082f4ac74d7a9f5744" style="width: 100.0%; height: 100.0%;">Street: אשר ברש<br>Exact location on this street is unknown<br>Rooms: 2.5<br>Price: 6000<br><a href='https://www.facebook.com/groups/914953618536575/posts/6098621946836357/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_bcef70ddc5d6ffde187ce8afaaf5af2c.setContent(html_b7972865f5004e082f4ac74d7a9f5744);
circle_marker_85222bc9fb8b114aef3f52ebbee14239.bindPopup(popup_bcef70ddc5d6ffde187ce8afaaf5af2c)
;
var circle_marker_f8a45406444af51ed5ea84a6ce7c7d77 = L.circleMarker(
[32.110117078791944, 34.795600156460466],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 15.413333333333334, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_649b482eecdf7fa03bf9712ae327de3e = L.popup({"maxWidth": 200, "minWidth": 200});
var html_1de1a659f3e332d0d34f41175153739c = $(`<div id="html_1de1a659f3e332d0d34f41175153739c" style="width: 100.0%; height: 100.0%;">Street: ברזיל<br>Exact location on this street is unknown<br>Rooms: 3<br>Floor: 2<br>Price: 6800<br><a href='https://www.facebook.com/groups/914953618536575/posts/6131046330260585/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_649b482eecdf7fa03bf9712ae327de3e.setContent(html_1de1a659f3e332d0d34f41175153739c);
circle_marker_f8a45406444af51ed5ea84a6ce7c7d77.bindPopup(popup_649b482eecdf7fa03bf9712ae327de3e)
;
var circle_marker_8d7f2a1d68fa99d74003627141b297bb = L.circleMarker(
[32.110023097008565, 34.79555338399941],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 16.333333333333332, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_1dc5ec6ca4afcd9e276016f3888e4509 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_586ac034bad8bb7d7612dfb64c9f5aff = $(`<div id="html_586ac034bad8bb7d7612dfb64c9f5aff" style="width: 100.0%; height: 100.0%;">Street: הברון הירש<br>Exact location on this street is unknown<br>Rooms: 3<br>Floor: 1<br>Price: 7000<br><a href='https://www.facebook.com/groups/914953618536575' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_1dc5ec6ca4afcd9e276016f3888e4509.setContent(html_586ac034bad8bb7d7612dfb64c9f5aff);
circle_marker_8d7f2a1d68fa99d74003627141b297bb.bindPopup(popup_1dc5ec6ca4afcd9e276016f3888e4509)
;
var circle_marker_981b4d7b654f936b0f375b2fe47a43d6 = L.circleMarker(
[32.117306173214786, 34.795669308072185],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 22.963333333333335, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_ea03dba687874d7b875f3043fcae50ea = L.popup({"maxWidth": 200, "minWidth": 200});
var html_a8432faab74c22a95dc59a394705b699 = $(`<div id="html_a8432faab74c22a95dc59a394705b699" style="width: 100.0%; height: 100.0%;">Street: התנאים<br>Number: 9<br>Rooms: 3.5<br>Floor: 1<br>Price: 8300<br><a href='https://www.facebook.com/groups/914953618536575/posts/6803012999730578/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_ea03dba687874d7b875f3043fcae50ea.setContent(html_a8432faab74c22a95dc59a394705b699);
circle_marker_981b4d7b654f936b0f375b2fe47a43d6.bindPopup(popup_ea03dba687874d7b875f3043fcae50ea)
;
var circle_marker_01cdb1a5aaa88cdd67fa0dc007d307ca = L.circleMarker(
[32.1045314022082, 34.793644735471],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 18.75, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_5b163ab47ca7fd6119f39a843f13985b = L.popup({"maxWidth": 200, "minWidth": 200});
var html_786d4ac4b5ddeceb527a869b7ee7c009 = $(`<div id="html_786d4ac4b5ddeceb527a869b7ee7c009" style="width: 100.0%; height: 100.0%;">Street: הררי<br>Number: 8<br>Rooms: 3<br>Floor: 3<br>Price: 7500<br><a href='https://www.facebook.com/groups/914953618536575/posts/6784112291620649/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_5b163ab47ca7fd6119f39a843f13985b.setContent(html_786d4ac4b5ddeceb527a869b7ee7c009);
circle_marker_01cdb1a5aaa88cdd67fa0dc007d307ca.bindPopup(popup_5b163ab47ca7fd6119f39a843f13985b)
;
var circle_marker_5f8cb9bd1f93095cd2fadf79d0c3c426 = L.circleMarker(
[32.11050387197451, 34.79629380151851],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 11.603333333333333, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_80b408d92f9f39baff97515e297680e3 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_c933cfdc8fee2ff781f60885652e183a = $(`<div id="html_c933cfdc8fee2ff781f60885652e183a" style="width: 100.0%; height: 100.0%;">Exact location is missing, arbitrary location was chosen<br>Rooms: 2.5<br>Floor: 2<br>Price: 5900<br><a href='https://www.facebook.com/groups/914953618536575/posts/6783604201671458/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_80b408d92f9f39baff97515e297680e3.setContent(html_c933cfdc8fee2ff781f60885652e183a);
circle_marker_5f8cb9bd1f93095cd2fadf79d0c3c426.bindPopup(popup_80b408d92f9f39baff97515e297680e3)
;
var circle_marker_a2e1bc354f3cd34fc1cc9b820855d69a = L.circleMarker(
[32.10857507881056, 34.79748747335422],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8.003333333333334, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_5b0ed56d3f95905feb98bcebc857c3d5 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_3d068b55aeb763bcd9ff5b20b5cbb41f = $(`<div id="html_3d068b55aeb763bcd9ff5b20b5cbb41f" style="width: 100.0%; height: 100.0%;">Street: ברודצקי<br>Exact location on this street is unknown<br>Rooms: 2<br>Price: 4900<br><a href='https://github.com/theguyben/Rentalytics/blob/main/posts_screenshots/Hedia_Leshem.png?raw=true' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_5b0ed56d3f95905feb98bcebc857c3d5.setContent(html_3d068b55aeb763bcd9ff5b20b5cbb41f);
circle_marker_a2e1bc354f3cd34fc1cc9b820855d69a.bindPopup(popup_5b0ed56d3f95905feb98bcebc857c3d5)
;
var circle_marker_94beb41746ac9ed06bd865e54645127f = L.circleMarker(
[32.10944795243984, 34.79962469863185],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9.72, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_911f2af7e3a0e78eb84f693668fe2f81 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_e79983a7221b99888fe447c371f125d6 = $(`<div id="html_e79983a7221b99888fe447c371f125d6" style="width: 100.0%; height: 100.0%;">Street: כפר יונה<br>Number: 9<br>Rooms: 3<br>Floor: 2<br>Price: 5400<br><a href='https://www.facebook.com/groups/914953618536575/posts/6800563143308897/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_911f2af7e3a0e78eb84f693668fe2f81.setContent(html_e79983a7221b99888fe447c371f125d6);
circle_marker_94beb41746ac9ed06bd865e54645127f.bindPopup(popup_911f2af7e3a0e78eb84f693668fe2f81)
;
var circle_marker_8a0e4bca6ef6d023d7c6415b60d62d05 = L.circleMarker(
[32.109621581797654, 34.7958954618096],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 21.333333333333332, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_8879d022a9d39bf3d0191ef1fa2e78c0 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_8f23ac97eac8fc1c99f254bd03efb7a8 = $(`<div id="html_8f23ac97eac8fc1c99f254bd03efb7a8" style="width: 100.0%; height: 100.0%;">Street: נח<br>Exact location on this street is unknown<br>Rooms: 3<br>Floor: 0<br>Price: 8000<br><a href='https://www.facebook.com/groups/914953618536575/posts/6776261505739061/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_8879d022a9d39bf3d0191ef1fa2e78c0.setContent(html_8f23ac97eac8fc1c99f254bd03efb7a8);
circle_marker_8a0e4bca6ef6d023d7c6415b60d62d05.bindPopup(popup_8879d022a9d39bf3d0191ef1fa2e78c0)
;
var circle_marker_aeeafcc14031afb621806dd43c714644 = L.circleMarker(
[32.10938306975007, 34.79637853130783],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10.083333333333334, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_8d52eb6bf3f12177385afff497a04305 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_153c15ccc00937f301037b75464a44f7 = $(`<div id="html_153c15ccc00937f301037b75464a44f7" style="width: 100.0%; height: 100.0%;">Street: נח<br>Exact location on this street is unknown<br>Rooms: 2<br>Price: 5500<br><a href='https://www.facebook.com/ofir.patury/posts/pfbid02WhKcydqjeY19DKwg8LdRLXWZsL7dqFim5nWRhoyaSkqP1NUnNp2z9d1GAn8JNVb3l' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_8d52eb6bf3f12177385afff497a04305.setContent(html_153c15ccc00937f301037b75464a44f7);
circle_marker_aeeafcc14031afb621806dd43c714644.bindPopup(popup_8d52eb6bf3f12177385afff497a04305)
;
var circle_marker_3302268d8d64f020dc4c622cb2a85782 = L.circleMarker(
[32.10550924465976, 34.79450272878687],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 14.963333333333333, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_d089b3c7ea8b393f43463594d873dd21 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_9ef40093be9b23c53fbb561c0409e598 = $(`<div id="html_9ef40093be9b23c53fbb561c0409e598" style="width: 100.0%; height: 100.0%;">Street: רידינג<br>Number: 16<br>Rooms: 2<br>Floor: 0<br>Price: 6700<br><a href='https://www.facebook.com/groups/914953618536575/posts/6791667067531838/' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_d089b3c7ea8b393f43463594d873dd21.setContent(html_9ef40093be9b23c53fbb561c0409e598);
circle_marker_3302268d8d64f020dc4c622cb2a85782.bindPopup(popup_d089b3c7ea8b393f43463594d873dd21)
;
var circle_marker_77b7af37c4f094dc0de2406764a93037 = L.circleMarker(
[32.10993017743584, 34.797860771540485],
{"bubblingMouseEvents": true, "color": "purple", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "purple", "fillOpacity": 0.5, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 13.653333333333334, "stroke": true, "weight": 3}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var popup_8a8a6bf00a21caf6b96ca33421b552b1 = L.popup({"maxWidth": 200, "minWidth": 200});
var html_c9ad2b6d7efe4dd6ad153f436d09e60b = $(`<div id="html_c9ad2b6d7efe4dd6ad153f436d09e60b" style="width: 100.0%; height: 100.0%;">Street: הברון הירש<br>Exact location on this street is unknown<br>Rooms: 3<br>Floor: 2<br>Price: 6400<br><a href='https://github.com/theguyben/Rentalytics/blob/main/posts_screenshots/Meital_Marciano.png?raw=true' target='_blank'>Link to Facebook Post</a></div>`)[0];
popup_8a8a6bf00a21caf6b96ca33421b552b1.setContent(html_c9ad2b6d7efe4dd6ad153f436d09e60b);
circle_marker_77b7af37c4f094dc0de2406764a93037.bindPopup(popup_8a8a6bf00a21caf6b96ca33421b552b1)
;
var marker_aaca2834f0a1b5a7c018953560687060 = L.marker(
[32.105644, 34.799734],
{}
).addTo(map_55bdce6569b705f7e49a935b31f0c8cf);
var icon_a0c6c2892074c2af4a67bf01501b068a = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "home", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_aaca2834f0a1b5a7c018953560687060.setIcon(icon_a0c6c2892074c2af4a67bf01501b068a);
var popup_39e82d988096dfc6e0db5f2ee6ebefaa = L.popup({"maxWidth": "100%"});
var html_e258f0eb390de8cd28dde879db9b2c94 = $(`<div id="html_e258f0eb390de8cd28dde879db9b2c94" style="width: 100.0%; height: 100.0%;">My House</div>`)[0];
popup_39e82d988096dfc6e0db5f2ee6ebefaa.setContent(html_e258f0eb390de8cd28dde879db9b2c94);
marker_aaca2834f0a1b5a7c018953560687060.bindPopup(popup_39e82d988096dfc6e0db5f2ee6ebefaa)
;
</script>
</html>