-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarte_paris.html
1043 lines (665 loc) · 48.6 KB
/
carte_paris.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
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
<!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_aa29591021eaa5a84ee4fd8a547c0721 {
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_aa29591021eaa5a84ee4fd8a547c0721" ></div>
</body>
<script>
var map_aa29591021eaa5a84ee4fd8a547c0721 = L.map(
"map_aa29591021eaa5a84ee4fd8a547c0721",
{
center: [48.8566, 2.3522],
crs: L.CRS.EPSG3857,
zoom: 12,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_6aee4572391011ce834ee76d980b4ff8 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
function geo_json_982e32959f9041c8654c9553079de32a_styler(feature) {
switch(feature.id) {
default:
return {"color": "#ff0000", "fillColor": "#ff0000"};
}
}
function geo_json_982e32959f9041c8654c9553079de32a_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_982e32959f9041c8654c9553079de32a = L.geoJson(null, {
onEachFeature: geo_json_982e32959f9041c8654c9553079de32a_onEachFeature,
style: geo_json_982e32959f9041c8654c9553079de32a_styler,
});
function geo_json_982e32959f9041c8654c9553079de32a_add (data) {
geo_json_982e32959f9041c8654c9553079de32a
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_982e32959f9041c8654c9553079de32a_add({"features": [{"geometry": {"color": "#ff0000", "coordinates": [[[2.3257616254697, 48.869546133476], [2.3278733621861, 48.869861088958], [2.3508413205563, 48.863344411573], [2.3500912644194, 48.861951749823], [2.3445592260856, 48.85398930556], [2.3328469000671, 48.859300907461], [2.3207773515807, 48.863075035941], [2.3257616254697, 48.869546133476]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_fc2ef8fe1e082f8256ea5fa088e0c269 = L.marker(
[48.86382684578349, 2.334814084479325],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_aa886d425adfa92c9a26ddfd78d6d7fc = L.popup({"maxWidth": "100%"});
var html_eb9e9029c9d678f339c3cb3f9fe06751 = $(`<div id="html_eb9e9029c9d678f339c3cb3f9fe06751" style="width: 100.0%; height: 100.0%;">Arrondissement 1 : 29890.66 €/m²</div>`)[0];
popup_aa886d425adfa92c9a26ddfd78d6d7fc.setContent(html_eb9e9029c9d678f339c3cb3f9fe06751);
marker_fc2ef8fe1e082f8256ea5fa088e0c269.bindPopup(popup_aa886d425adfa92c9a26ddfd78d6d7fc)
;
function geo_json_43e175a87fec21c4a092b802498796bb_styler(feature) {
switch(feature.id) {
default:
return {"color": "#ff3300", "fillColor": "#ff3300"};
}
}
function geo_json_43e175a87fec21c4a092b802498796bb_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_43e175a87fec21c4a092b802498796bb = L.geoJson(null, {
onEachFeature: geo_json_43e175a87fec21c4a092b802498796bb_onEachFeature,
style: geo_json_43e175a87fec21c4a092b802498796bb_styler,
});
function geo_json_43e175a87fec21c4a092b802498796bb_add (data) {
geo_json_43e175a87fec21c4a092b802498796bb
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_43e175a87fec21c4a092b802498796bb_add({"features": [{"geometry": {"color": "#ff3300", "coordinates": [[[2.3508413205563, 48.863344411573], [2.3278733621861, 48.869861088958], [2.3399298105677, 48.871937310519], [2.3478317710849, 48.870624420335], [2.3541114926597, 48.869275285895], [2.3508413205563, 48.863344411573]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_7f86637e48cc5d305207aa775b0053ac = L.marker(
[48.86806448814216, 2.3452381796018336],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_155f9e8007c90eb3461f6cb5dd043283 = L.popup({"maxWidth": "100%"});
var html_f8c3c1dbfb4919d016660c9804d45f1e = $(`<div id="html_f8c3c1dbfb4919d016660c9804d45f1e" style="width: 100.0%; height: 100.0%;">Arrondissement 2 : 13407.34 €/m²</div>`)[0];
popup_155f9e8007c90eb3461f6cb5dd043283.setContent(html_f8c3c1dbfb4919d016660c9804d45f1e);
marker_7f86637e48cc5d305207aa775b0053ac.bindPopup(popup_155f9e8007c90eb3461f6cb5dd043283)
;
function geo_json_d5d7e99af45fb59e0aca7b65de9b2886_styler(feature) {
switch(feature.id) {
default:
return {"color": "#ff6600", "fillColor": "#ff6600"};
}
}
function geo_json_d5d7e99af45fb59e0aca7b65de9b2886_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_d5d7e99af45fb59e0aca7b65de9b2886 = L.geoJson(null, {
onEachFeature: geo_json_d5d7e99af45fb59e0aca7b65de9b2886_onEachFeature,
style: geo_json_d5d7e99af45fb59e0aca7b65de9b2886_styler,
});
function geo_json_d5d7e99af45fb59e0aca7b65de9b2886_add (data) {
geo_json_d5d7e99af45fb59e0aca7b65de9b2886
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_d5d7e99af45fb59e0aca7b65de9b2886_add({"features": [{"geometry": {"color": "#ff6600", "coordinates": [[[2.3500912644194, 48.861951749823], [2.3508413205563, 48.863344411573], [2.3541114926597, 48.869275285895], [2.3638513390126, 48.867431638281], [2.3684085721728, 48.855737300049], [2.3500912644194, 48.861951749823]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_0353fac93d597966349eb95cf22e654a = L.marker(
[48.863282022574, 2.3562325422067],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_31b696b4643f08b194f43d2d69c9fb57 = L.popup({"maxWidth": "100%"});
var html_2189cde170fb8dd5756cdb6621410368 = $(`<div id="html_2189cde170fb8dd5756cdb6621410368" style="width: 100.0%; height: 100.0%;">Arrondissement 3 : 13467.08 €/m²</div>`)[0];
popup_31b696b4643f08b194f43d2d69c9fb57.setContent(html_2189cde170fb8dd5756cdb6621410368);
marker_0353fac93d597966349eb95cf22e654a.bindPopup(popup_31b696b4643f08b194f43d2d69c9fb57)
;
function geo_json_b68b1ffe90aea9021ba544d3c308b037_styler(feature) {
switch(feature.id) {
default:
return {"color": "#ff9900", "fillColor": "#ff9900"};
}
}
function geo_json_b68b1ffe90aea9021ba544d3c308b037_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_b68b1ffe90aea9021ba544d3c308b037 = L.geoJson(null, {
onEachFeature: geo_json_b68b1ffe90aea9021ba544d3c308b037_onEachFeature,
style: geo_json_b68b1ffe90aea9021ba544d3c308b037_styler,
});
function geo_json_b68b1ffe90aea9021ba544d3c308b037_add (data) {
geo_json_b68b1ffe90aea9021ba544d3c308b037
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_b68b1ffe90aea9021ba544d3c308b037_add({"features": [{"geometry": {"color": "#ff9900", "coordinates": [[[2.3445592260856, 48.85398930556], [2.3500912644194, 48.861951749823], [2.3684085721728, 48.855737300049], [2.3690196371168, 48.853221440745], [2.3643180356191, 48.846167191329], [2.3445592260856, 48.85398930556]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_b9528cea576285a2edea30b90e3b0ab2 = L.marker(
[48.85417604884433, 2.3568259935832168],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_5a44f857a4baa44a7e894f818bdc5e3f = L.popup({"maxWidth": "100%"});
var html_2a881b8495fdf5224f0b945b9099434b = $(`<div id="html_2a881b8495fdf5224f0b945b9099434b" style="width: 100.0%; height: 100.0%;">Arrondissement 4 : 26982.22 €/m²</div>`)[0];
popup_5a44f857a4baa44a7e894f818bdc5e3f.setContent(html_2a881b8495fdf5224f0b945b9099434b);
marker_b9528cea576285a2edea30b90e3b0ab2.bindPopup(popup_5a44f857a4baa44a7e894f818bdc5e3f)
;
function geo_json_4b320d2bad6fdfcd8ef7838746dee87b_styler(feature) {
switch(feature.id) {
default:
return {"color": "#ffcc00", "fillColor": "#ffcc00"};
}
}
function geo_json_4b320d2bad6fdfcd8ef7838746dee87b_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_4b320d2bad6fdfcd8ef7838746dee87b = L.geoJson(null, {
onEachFeature: geo_json_4b320d2bad6fdfcd8ef7838746dee87b_onEachFeature,
style: geo_json_4b320d2bad6fdfcd8ef7838746dee87b_styler,
});
function geo_json_4b320d2bad6fdfcd8ef7838746dee87b_add (data) {
geo_json_4b320d2bad6fdfcd8ef7838746dee87b
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_4b320d2bad6fdfcd8ef7838746dee87b_add({"features": [{"geometry": {"color": "#ffcc00", "coordinates": [[[2.3445592260856, 48.85398930556], [2.3643180356191, 48.846167191329], [2.365950820881, 48.844908659278], [2.3613870338288, 48.839822776185], [2.3517180689518, 48.836813651152], [2.3420384635948, 48.838296917933], [2.3365927071777, 48.839690537143], [2.3445592260856, 48.85398930556]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_07bbfd9a872f4589ec10a5523201544d = L.marker(
[48.8442097930175, 2.35139044777805],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_e17d9fe6f971586ea9854384248ed70e = L.popup({"maxWidth": "100%"});
var html_ce02c974002516678c79c410e5d25986 = $(`<div id="html_ce02c974002516678c79c410e5d25986" style="width: 100.0%; height: 100.0%;">Arrondissement 5 : 13700.12 €/m²</div>`)[0];
popup_e17d9fe6f971586ea9854384248ed70e.setContent(html_ce02c974002516678c79c410e5d25986);
marker_07bbfd9a872f4589ec10a5523201544d.bindPopup(popup_e17d9fe6f971586ea9854384248ed70e)
;
function geo_json_f89cb68a380ce4a1409fb91bf3a7d54d_styler(feature) {
switch(feature.id) {
default:
return {"color": "#ffff00", "fillColor": "#ffff00"};
}
}
function geo_json_f89cb68a380ce4a1409fb91bf3a7d54d_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_f89cb68a380ce4a1409fb91bf3a7d54d = L.geoJson(null, {
onEachFeature: geo_json_f89cb68a380ce4a1409fb91bf3a7d54d_onEachFeature,
style: geo_json_f89cb68a380ce4a1409fb91bf3a7d54d_styler,
});
function geo_json_f89cb68a380ce4a1409fb91bf3a7d54d_add (data) {
geo_json_f89cb68a380ce4a1409fb91bf3a7d54d
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_f89cb68a380ce4a1409fb91bf3a7d54d_add({"features": [{"geometry": {"color": "#ffff00", "coordinates": [[[2.3166281602877, 48.846752387477], [2.3282850183008, 48.851787363918], [2.3328469000671, 48.859300907461], [2.3445592260856, 48.85398930556], [2.3365927071777, 48.839690537143], [2.3246635446251, 48.843518038723], [2.3166281602877, 48.846752387477]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_dc3c570c1794e3657c49c2c9c0947165 = L.marker(
[48.84882727539415, 2.328600530975957],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_5bb892908bb6bb344f3d6476476fe8e8 = L.popup({"maxWidth": "100%"});
var html_9da559ddfd703ae24e4fc8f89a10db3c = $(`<div id="html_9da559ddfd703ae24e4fc8f89a10db3c" style="width: 100.0%; height: 100.0%;">Arrondissement 6 : 18819.27 €/m²</div>`)[0];
popup_5bb892908bb6bb344f3d6476476fe8e8.setContent(html_9da559ddfd703ae24e4fc8f89a10db3c);
marker_dc3c570c1794e3657c49c2c9c0947165.bindPopup(popup_5bb892908bb6bb344f3d6476476fe8e8)
;
function geo_json_82bd8ff57ece8bd68183dd0ea899de52_styler(feature) {
switch(feature.id) {
default:
return {"color": "#e6ff00", "fillColor": "#e6ff00"};
}
}
function geo_json_82bd8ff57ece8bd68183dd0ea899de52_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_82bd8ff57ece8bd68183dd0ea899de52 = L.geoJson(null, {
onEachFeature: geo_json_82bd8ff57ece8bd68183dd0ea899de52_onEachFeature,
style: geo_json_82bd8ff57ece8bd68183dd0ea899de52_styler,
});
function geo_json_82bd8ff57ece8bd68183dd0ea899de52_add (data) {
geo_json_82bd8ff57ece8bd68183dd0ea899de52
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_82bd8ff57ece8bd68183dd0ea899de52_add({"features": [{"geometry": {"color": "#e6ff00", "coordinates": [[[2.3207773515807, 48.863075035941], [2.3328469000671, 48.859300907461], [2.3282850183008, 48.851787363918], [2.3166281602877, 48.846752387477], [2.3021915203793, 48.850344748998], [2.2897782765961, 48.858123113769], [2.3015562721716, 48.863475234966], [2.3207773515807, 48.863075035941]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_74d0b2c00f09a0d2b673da61c440eae6 = L.marker(
[48.856991728558874, 2.3141051063704996],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_8802037148038cb9b3c8a9099cd788f7 = L.popup({"maxWidth": "100%"});
var html_ee505f6e58798f74e8f4993d088361a2 = $(`<div id="html_ee505f6e58798f74e8f4993d088361a2" style="width: 100.0%; height: 100.0%;">Arrondissement 7 : 21931.41 €/m²</div>`)[0];
popup_8802037148038cb9b3c8a9099cd788f7.setContent(html_ee505f6e58798f74e8f4993d088361a2);
marker_74d0b2c00f09a0d2b673da61c440eae6.bindPopup(popup_8802037148038cb9b3c8a9099cd788f7)
;
function geo_json_11e139c73ce9cd9afd5c258bd0145404_styler(feature) {
switch(feature.id) {
default:
return {"color": "#ccff00", "fillColor": "#ccff00"};
}
}
function geo_json_11e139c73ce9cd9afd5c258bd0145404_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_11e139c73ce9cd9afd5c258bd0145404 = L.geoJson(null, {
onEachFeature: geo_json_11e139c73ce9cd9afd5c258bd0145404_onEachFeature,
style: geo_json_11e139c73ce9cd9afd5c258bd0145404_styler,
});
function geo_json_11e139c73ce9cd9afd5c258bd0145404_add (data) {
geo_json_11e139c73ce9cd9afd5c258bd0145404
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_11e139c73ce9cd9afd5c258bd0145404_add({"features": [{"geometry": {"color": "#ccff00", "coordinates": [[[2.3271206970663, 48.883485416617], [2.3257616254697, 48.869546133476], [2.3207773515807, 48.863075035941], [2.3015562721716, 48.863475234966], [2.2951453922338, 48.873861979677], [2.2981403262665, 48.87804262556], [2.3271206970663, 48.883485416617]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_486868f16410e026d1a7f92ec0beb7af = L.marker(
[48.873567406122, 2.313660337407843],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_ba88c114a4b2b1770637cca2e1bd5100 = L.popup({"maxWidth": "100%"});
var html_5c3e3eccab8c81393bfac4b51283a4dc = $(`<div id="html_5c3e3eccab8c81393bfac4b51283a4dc" style="width: 100.0%; height: 100.0%;">Arrondissement 8 : 19734.71 €/m²</div>`)[0];
popup_ba88c114a4b2b1770637cca2e1bd5100.setContent(html_5c3e3eccab8c81393bfac4b51283a4dc);
marker_486868f16410e026d1a7f92ec0beb7af.bindPopup(popup_ba88c114a4b2b1770637cca2e1bd5100)
;
function geo_json_21682d4088944f461638ada542892e70_styler(feature) {
switch(feature.id) {
default:
return {"color": "#b3ff00", "fillColor": "#b3ff00"};
}
}
function geo_json_21682d4088944f461638ada542892e70_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_21682d4088944f461638ada542892e70 = L.geoJson(null, {
onEachFeature: geo_json_21682d4088944f461638ada542892e70_onEachFeature,
style: geo_json_21682d4088944f461638ada542892e70_styler,
});
function geo_json_21682d4088944f461638ada542892e70_add (data) {
geo_json_21682d4088944f461638ada542892e70
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_21682d4088944f461638ada542892e70_add({"features": [{"geometry": {"color": "#b3ff00", "coordinates": [[[2.3257616254697, 48.869546133476], [2.3271206970663, 48.883485416617], [2.3379555061118, 48.882249883375], [2.3495508401232, 48.883620167912], [2.3478317710849, 48.870624420335], [2.3399298105677, 48.871937310519], [2.3278733621861, 48.869861088958], [2.3257616254697, 48.869546133476]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_51feb2ed9e6134adb6ffe2d0dd2f2673 = L.marker(
[48.8751088193335, 2.335223154759925],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_affc0059c096f46b63432d3da7f2ef03 = L.popup({"maxWidth": "100%"});
var html_3cdd41449291276de25bc949541dd590 = $(`<div id="html_3cdd41449291276de25bc949541dd590" style="width: 100.0%; height: 100.0%;">Arrondissement 9 : 15889.32 €/m²</div>`)[0];
popup_affc0059c096f46b63432d3da7f2ef03.setContent(html_3cdd41449291276de25bc949541dd590);
marker_51feb2ed9e6134adb6ffe2d0dd2f2673.bindPopup(popup_affc0059c096f46b63432d3da7f2ef03)
;
function geo_json_6e92e8871c7308ec7913ef79f8017956_styler(feature) {
switch(feature.id) {
default:
return {"color": "#99ff00", "fillColor": "#99ff00"};
}
}
function geo_json_6e92e8871c7308ec7913ef79f8017956_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_6e92e8871c7308ec7913ef79f8017956 = L.geoJson(null, {
onEachFeature: geo_json_6e92e8871c7308ec7913ef79f8017956_onEachFeature,
style: geo_json_6e92e8871c7308ec7913ef79f8017956_styler,
});
function geo_json_6e92e8871c7308ec7913ef79f8017956_add (data) {
geo_json_6e92e8871c7308ec7913ef79f8017956
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_6e92e8871c7308ec7913ef79f8017956_add({"features": [{"geometry": {"color": "#99ff00", "coordinates": [[[2.3646776664012, 48.884291351874], [2.3770153520998, 48.87192112928], [2.3638513390126, 48.867431638281], [2.3541114926597, 48.869275285895], [2.3478317710849, 48.870624420335], [2.3495508401232, 48.883620167912], [2.3646776664012, 48.884291351874]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_ab82f0b93fb5962862c51427687ae074 = L.marker(
[48.87592219220728, 2.3602451611118],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_b64fa27ed3c73bd7e581537037b7d8dd = L.popup({"maxWidth": "100%"});
var html_e5f3ce9aa33518458efd45fcd4d4eb35 = $(`<div id="html_e5f3ce9aa33518458efd45fcd4d4eb35" style="width: 100.0%; height: 100.0%;">Arrondissement 10 : 13552.85 €/m²</div>`)[0];
popup_b64fa27ed3c73bd7e581537037b7d8dd.setContent(html_e5f3ce9aa33518458efd45fcd4d4eb35);
marker_ab82f0b93fb5962862c51427687ae074.bindPopup(popup_b64fa27ed3c73bd7e581537037b7d8dd)
;
function geo_json_3ed698104990a3ce8bd5611deba84873_styler(feature) {
switch(feature.id) {
default:
return {"color": "#80ff00", "fillColor": "#80ff00"};
}
}
function geo_json_3ed698104990a3ce8bd5611deba84873_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_3ed698104990a3ce8bd5611deba84873 = L.geoJson(null, {
onEachFeature: geo_json_3ed698104990a3ce8bd5611deba84873_onEachFeature,
style: geo_json_3ed698104990a3ce8bd5611deba84873_styler,
});
function geo_json_3ed698104990a3ce8bd5611deba84873_add (data) {
geo_json_3ed698104990a3ce8bd5611deba84873
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_3ed698104990a3ce8bd5611deba84873_add({"features": [{"geometry": {"color": "#80ff00", "coordinates": [[[2.3770153520998, 48.87192112928], [2.3943004420294, 48.856491711482], [2.3991184448726, 48.848094484736], [2.3690196371168, 48.853221440745], [2.3684085721728, 48.855737300049], [2.3638513390126, 48.867431638281], [2.3770153520998, 48.87192112928]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_f92180cc5c706a2d57fa907fcaa4c132 = L.marker(
[48.86068840483614, 2.3783898770576855],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_304964274ddf78dabc022d7a99d3f854 = L.popup({"maxWidth": "100%"});
var html_03ee80b56fb3fb7bcd7fe5773b000f7b = $(`<div id="html_03ee80b56fb3fb7bcd7fe5773b000f7b" style="width: 100.0%; height: 100.0%;">Arrondissement 11 : 12544.61 €/m²</div>`)[0];
popup_304964274ddf78dabc022d7a99d3f854.setContent(html_03ee80b56fb3fb7bcd7fe5773b000f7b);
marker_f92180cc5c706a2d57fa907fcaa4c132.bindPopup(popup_304964274ddf78dabc022d7a99d3f854)
;
function geo_json_1b7e1a0a9db43315b47873ea99620489_styler(feature) {
switch(feature.id) {
default:
return {"color": "#66ff00", "fillColor": "#66ff00"};
}
}
function geo_json_1b7e1a0a9db43315b47873ea99620489_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_1b7e1a0a9db43315b47873ea99620489 = L.geoJson(null, {
onEachFeature: geo_json_1b7e1a0a9db43315b47873ea99620489_onEachFeature,
style: geo_json_1b7e1a0a9db43315b47873ea99620489_styler,
});
function geo_json_1b7e1a0a9db43315b47873ea99620489_add (data) {
geo_json_1b7e1a0a9db43315b47873ea99620489
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_1b7e1a0a9db43315b47873ea99620489_add({"features": [{"geometry": {"color": "#66ff00", "coordinates": [[[2.365950820881, 48.844908659278], [2.3643180356191, 48.846167191329], [2.3690196371168, 48.853221440745], [2.3991184448726, 48.848094484736], [2.4159711107696, 48.846622956277], [2.4122456125626, 48.834538914673], [2.4221386362435, 48.835797660955], [2.4275751567613, 48.841570705794], [2.4478479965512, 48.844804739969], [2.4634383121686, 48.842089485269], [2.4672474618601, 48.839072987582], [2.465730572119, 48.826226047985], [2.4612052142523, 48.818355149154], [2.4384475102742, 48.818232447877], [2.4199625195411, 48.824080072246], [2.406031823401, 48.827615470779], [2.3900720145113, 48.82569232682], [2.365950820881, 48.844908659278]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_2b8db89f4bdc9fb4c261832ff03a7eea = L.marker(
[48.836777744485886, 2.416792872243683],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_24bd942741af5d1a58b1a8d58f8e8e6b = L.popup({"maxWidth": "100%"});
var html_237249ea8ff1fde18ae10e451fd8653e = $(`<div id="html_237249ea8ff1fde18ae10e451fd8653e" style="width: 100.0%; height: 100.0%;">Arrondissement 12 : 10097.78 €/m²</div>`)[0];
popup_24bd942741af5d1a58b1a8d58f8e8e6b.setContent(html_237249ea8ff1fde18ae10e451fd8653e);
marker_2b8db89f4bdc9fb4c261832ff03a7eea.bindPopup(popup_24bd942741af5d1a58b1a8d58f8e8e6b)
;
function geo_json_9fbe17e7724c9ed386daa13f299865ba_styler(feature) {
switch(feature.id) {
default:
return {"color": "#4dff00", "fillColor": "#4dff00"};
}
}
function geo_json_9fbe17e7724c9ed386daa13f299865ba_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_9fbe17e7724c9ed386daa13f299865ba = L.geoJson(null, {
onEachFeature: geo_json_9fbe17e7724c9ed386daa13f299865ba_onEachFeature,
style: geo_json_9fbe17e7724c9ed386daa13f299865ba_styler,
});
function geo_json_9fbe17e7724c9ed386daa13f299865ba_add (data) {
geo_json_9fbe17e7724c9ed386daa13f299865ba
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_9fbe17e7724c9ed386daa13f299865ba_add({"features": [{"geometry": {"color": "#4dff00", "coordinates": [[[2.365950820881, 48.844908659278], [2.3900720145113, 48.82569232682], [2.3642042811729, 48.816398323996], [2.3564647458137, 48.815954893718], [2.3439025047441, 48.815767001297], [2.3414937722336, 48.828568124075], [2.3420384635948, 48.838296917933], [2.3517180689518, 48.836813651152], [2.3613870338288, 48.839822776185], [2.365950820881, 48.844908659278]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_48c745eb46876e208dec321e0879d7c9 = L.marker(
[48.8307131333732, 2.3583182526612996],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_4e69f096fd658654a3823f7de1343373 = L.popup({"maxWidth": "100%"});
var html_38ec9c76cb9a1f40cff54c6905247abd = $(`<div id="html_38ec9c76cb9a1f40cff54c6905247abd" style="width: 100.0%; height: 100.0%;">Arrondissement 13 : 9593.49 €/m²</div>`)[0];
popup_4e69f096fd658654a3823f7de1343373.setContent(html_38ec9c76cb9a1f40cff54c6905247abd);
marker_48c745eb46876e208dec321e0879d7c9.bindPopup(popup_4e69f096fd658654a3823f7de1343373)
;
function geo_json_fbe2b3470b02a2a75dbeec2e3ba8a0ad_styler(feature) {
switch(feature.id) {
default:
return {"color": "#33ff00", "fillColor": "#33ff00"};
}
}
function geo_json_fbe2b3470b02a2a75dbeec2e3ba8a0ad_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_fbe2b3470b02a2a75dbeec2e3ba8a0ad = L.geoJson(null, {
onEachFeature: geo_json_fbe2b3470b02a2a75dbeec2e3ba8a0ad_onEachFeature,
style: geo_json_fbe2b3470b02a2a75dbeec2e3ba8a0ad_styler,
});
function geo_json_fbe2b3470b02a2a75dbeec2e3ba8a0ad_add (data) {
geo_json_fbe2b3470b02a2a75dbeec2e3ba8a0ad
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_fbe2b3470b02a2a75dbeec2e3ba8a0ad_add({"features": [{"geometry": {"color": "#33ff00", "coordinates": [[[2.314145699673, 48.822290535442], [2.3013154184885, 48.825125760842], [2.3246635446251, 48.843518038723], [2.3365927071777, 48.839690537143], [2.3420384635948, 48.838296917933], [2.3414937722336, 48.828568124075], [2.3439025047441, 48.815767001297], [2.3318980606376, 48.817010929642], [2.314145699673, 48.822290535442]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_38fa06107c127c53ebc676ad001a10cd = L.marker(
[48.828062042282106, 2.327799541205266],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_37f2d36e79f6d38fdd66686ca740fc19 = L.popup({"maxWidth": "100%"});
var html_225aec3d25f94e3bed54ae6d7b26c6ff = $(`<div id="html_225aec3d25f94e3bed54ae6d7b26c6ff" style="width: 100.0%; height: 100.0%;">Arrondissement 14 : 11265.84 €/m²</div>`)[0];
popup_37f2d36e79f6d38fdd66686ca740fc19.setContent(html_225aec3d25f94e3bed54ae6d7b26c6ff);
marker_38fa06107c127c53ebc676ad001a10cd.bindPopup(popup_37f2d36e79f6d38fdd66686ca740fc19)
;
function geo_json_82ff6fe0611dfb39b6f49be0c5c55332_styler(feature) {
switch(feature.id) {
default:
return {"color": "#1aff00", "fillColor": "#1aff00"};
}
}
function geo_json_82ff6fe0611dfb39b6f49be0c5c55332_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_82ff6fe0611dfb39b6f49be0c5c55332 = L.geoJson(null, {
onEachFeature: geo_json_82ff6fe0611dfb39b6f49be0c5c55332_onEachFeature,
style: geo_json_82ff6fe0611dfb39b6f49be0c5c55332_styler,
});
function geo_json_82ff6fe0611dfb39b6f49be0c5c55332_add (data) {
geo_json_82ff6fe0611dfb39b6f49be0c5c55332
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_82ff6fe0611dfb39b6f49be0c5c55332_add({"features": [{"geometry": {"color": "#1aff00", "coordinates": [[[2.2897782765961, 48.858123113769], [2.3021915203793, 48.850344748998], [2.3166281602877, 48.846752387477], [2.3246635446251, 48.843518038723], [2.3013154184885, 48.825125760842], [2.2893937776751, 48.828352646104], [2.2790519306533, 48.832489952145], [2.2727931901868, 48.827920084226], [2.2627915245265, 48.833923373524], [2.2724846953815, 48.843681568601], [2.2897782765961, 48.858123113769]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_59da4e6e24e2ae39a5b8e54094d1916d = L.marker(
[48.84075952619799, 2.2909882104905455],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_c98387c0effe8da93bcf19bcd4b15a05 = L.popup({"maxWidth": "100%"});
var html_a0b7b824461f676766b10bc565a46852 = $(`<div id="html_a0b7b824461f676766b10bc565a46852" style="width: 100.0%; height: 100.0%;">Arrondissement 15 : 13695.36 €/m²</div>`)[0];
popup_c98387c0effe8da93bcf19bcd4b15a05.setContent(html_a0b7b824461f676766b10bc565a46852);
marker_59da4e6e24e2ae39a5b8e54094d1916d.bindPopup(popup_c98387c0effe8da93bcf19bcd4b15a05)
;
function geo_json_71ece0815d9bbc3251c8a6e18971d29a_styler(feature) {
switch(feature.id) {
default:
return {"color": "#00ff00", "fillColor": "#00ff00"};
}
}
function geo_json_71ece0815d9bbc3251c8a6e18971d29a_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_71ece0815d9bbc3251c8a6e18971d29a = L.geoJson(null, {
onEachFeature: geo_json_71ece0815d9bbc3251c8a6e18971d29a_onEachFeature,
style: geo_json_71ece0815d9bbc3251c8a6e18971d29a_styler,
});
function geo_json_71ece0815d9bbc3251c8a6e18971d29a_add (data) {
geo_json_71ece0815d9bbc3251c8a6e18971d29a
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_71ece0815d9bbc3251c8a6e18971d29a_add({"features": [{"geometry": {"color": "#00ff00", "coordinates": [[[2.225670292257, 48.859404562396], [2.2317363597469, 48.86906858161], [2.2457037884056, 48.876459232476], [2.2548171406686, 48.874080881369], [2.2584671711142, 48.880387263086], [2.2799493325675, 48.878573123982], [2.2951453922338, 48.873861979677], [2.3015562721716, 48.863475234966], [2.2897782765961, 48.858123113769], [2.2724846953815, 48.843681568601], [2.2627915245265, 48.833923373524], [2.2551442384175, 48.834809549369], [2.2506124417162, 48.845554851211], [2.2242191058804, 48.853516917557], [2.225670292257, 48.859404562396]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_6fbd692d2b1c8a4c14e7e500088bf73b = L.marker(
[48.860288319732604, 2.2582497549293596],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_3882af348ffb2fc88532565eb0aadc68 = L.popup({"maxWidth": "100%"});
var html_cb6783164eb70097b8591276ed4f2968 = $(`<div id="html_cb6783164eb70097b8591276ed4f2968" style="width: 100.0%; height: 100.0%;">Arrondissement 16 : 15304.85 €/m²</div>`)[0];
popup_3882af348ffb2fc88532565eb0aadc68.setContent(html_cb6783164eb70097b8591276ed4f2968);
marker_6fbd692d2b1c8a4c14e7e500088bf73b.bindPopup(popup_3882af348ffb2fc88532565eb0aadc68)
;
function geo_json_45223703c56e52af3a713bac0e2c9d92_styler(feature) {
switch(feature.id) {
default:
return {"color": "#00e600", "fillColor": "#00e600"};
}
}
function geo_json_45223703c56e52af3a713bac0e2c9d92_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_45223703c56e52af3a713bac0e2c9d92 = L.geoJson(null, {
onEachFeature: geo_json_45223703c56e52af3a713bac0e2c9d92_onEachFeature,
style: geo_json_45223703c56e52af3a713bac0e2c9d92_styler,
});
function geo_json_45223703c56e52af3a713bac0e2c9d92_add (data) {
geo_json_45223703c56e52af3a713bac0e2c9d92
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_45223703c56e52af3a713bac0e2c9d92_add({"features": [{"geometry": {"color": "#00e600", "coordinates": [[[2.2844595717547, 48.885639278202], [2.3037743623516, 48.894153778949], [2.3198871747441, 48.90045978209], [2.3299805220467, 48.901163282127], [2.3260974369951, 48.889111262565], [2.3271206970663, 48.883485416617], [2.2981403262665, 48.87804262556], [2.2951453922338, 48.873861979677], [2.2799493325675, 48.878573123982], [2.2844595717547, 48.885639278202]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_8e4987a295f1df097b98d113171817da = L.marker(
[48.88701298079711, 2.3049014387781],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_67e55511ceae25ea64ed134f2528f56c = L.popup({"maxWidth": "100%"});
var html_0562bdedef29e5cfe6dcc6120575b051 = $(`<div id="html_0562bdedef29e5cfe6dcc6120575b051" style="width: 100.0%; height: 100.0%;">Arrondissement 17 : 12682.35 €/m²</div>`)[0];
popup_67e55511ceae25ea64ed134f2528f56c.setContent(html_0562bdedef29e5cfe6dcc6120575b051);
marker_8e4987a295f1df097b98d113171817da.bindPopup(popup_67e55511ceae25ea64ed134f2528f56c)
;
function geo_json_b885c3b9ae48a083a78b15e2dab96c96_styler(feature) {
switch(feature.id) {
default:
return {"color": "#00cc00", "fillColor": "#00cc00"};
}
}
function geo_json_b885c3b9ae48a083a78b15e2dab96c96_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_b885c3b9ae48a083a78b15e2dab96c96 = L.geoJson(null, {
onEachFeature: geo_json_b885c3b9ae48a083a78b15e2dab96c96_onEachFeature,
style: geo_json_b885c3b9ae48a083a78b15e2dab96c96_styler,
});
function geo_json_b885c3b9ae48a083a78b15e2dab96c96_add (data) {
geo_json_b885c3b9ae48a083a78b15e2dab96c96
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_b885c3b9ae48a083a78b15e2dab96c96_add({"features": [{"geometry": {"color": "#00cc00", "coordinates": [[[2.3646776664012, 48.884291351874], [2.3495508401232, 48.883620167912], [2.3379555061118, 48.882249883375], [2.3271206970663, 48.883485416617], [2.3260974369951, 48.889111262565], [2.3299805220467, 48.901163282127], [2.3518739447639, 48.901522076927], [2.365846786, 48.901609465126], [2.3702905140491, 48.901653595285], [2.3698082422377, 48.893376450644], [2.3646776664012, 48.884291351874]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_de09f7a3a8a5a5a9d3ae8db031b79381 = L.marker(
[48.89148857312054, 2.3507163474723813],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_756bda97cfe31143269c4873a0d66b53 = L.popup({"maxWidth": "100%"});
var html_88bf87505e136e1ac4c078c64fcf3ae9 = $(`<div id="html_88bf87505e136e1ac4c078c64fcf3ae9" style="width: 100.0%; height: 100.0%;">Arrondissement 18 : 9856.64 €/m²</div>`)[0];
popup_756bda97cfe31143269c4873a0d66b53.setContent(html_88bf87505e136e1ac4c078c64fcf3ae9);
marker_de09f7a3a8a5a5a9d3ae8db031b79381.bindPopup(popup_756bda97cfe31143269c4873a0d66b53)
;
function geo_json_dba8c8f3c2c75033a84694db55112d5c_styler(feature) {
switch(feature.id) {
default:
return {"color": "#00b300", "fillColor": "#00b300"};
}
}
function geo_json_dba8c8f3c2c75033a84694db55112d5c_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_dba8c8f3c2c75033a84694db55112d5c = L.geoJson(null, {
onEachFeature: geo_json_dba8c8f3c2c75033a84694db55112d5c_onEachFeature,
style: geo_json_dba8c8f3c2c75033a84694db55112d5c_styler,
});
function geo_json_dba8c8f3c2c75033a84694db55112d5c_add (data) {
geo_json_dba8c8f3c2c75033a84694db55112d5c
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_dba8c8f3c2c75033a84694db55112d5c_add({"features": [{"geometry": {"color": "#00b300", "coordinates": [[[2.3770153520998, 48.87192112928], [2.3646776664012, 48.884291351874], [2.3698082422377, 48.893376450644], [2.3702905140491, 48.901653595285], [2.3894416378177, 48.901152013806], [2.394906293421, 48.898444039523], [2.3986443942733, 48.889410347347], [2.4106903466383, 48.878475106516], [2.3770153520998, 48.87192112928]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_069974fd463e8728f18e6083cc6f8176 = L.marker(
[48.88784946261722, 2.383609977670878],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_fca5cb6fbfbf22ca158c4355a826a629 = L.popup({"maxWidth": "100%"});
var html_2d936f6c236f09c8719be3dcbd5edccc = $(`<div id="html_2d936f6c236f09c8719be3dcbd5edccc" style="width: 100.0%; height: 100.0%;">Arrondissement 19 : 10297.09 €/m²</div>`)[0];
popup_fca5cb6fbfbf22ca158c4355a826a629.setContent(html_2d936f6c236f09c8719be3dcbd5edccc);
marker_069974fd463e8728f18e6083cc6f8176.bindPopup(popup_fca5cb6fbfbf22ca158c4355a826a629)
;
function geo_json_c109dc1f5c30dff5bffb568935dc9222_styler(feature) {
switch(feature.id) {
default:
return {"color": "#009900", "fillColor": "#009900"};
}
}
function geo_json_c109dc1f5c30dff5bffb568935dc9222_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_c109dc1f5c30dff5bffb568935dc9222 = L.geoJson(null, {
onEachFeature: geo_json_c109dc1f5c30dff5bffb568935dc9222_onEachFeature,
style: geo_json_c109dc1f5c30dff5bffb568935dc9222_styler,
});
function geo_json_c109dc1f5c30dff5bffb568935dc9222_add (data) {
geo_json_c109dc1f5c30dff5bffb568935dc9222
.addData(data)
.addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
}
geo_json_c109dc1f5c30dff5bffb568935dc9222_add({"features": [{"geometry": {"color": "#009900", "coordinates": [[[2.4132704497803, 48.873116980044], [2.4153151254188, 48.855173471685], [2.4163411302989, 48.849233783552], [2.4159711107696, 48.846622956277], [2.3991184448726, 48.848094484736], [2.3943004420294, 48.856491711482], [2.3770153520998, 48.87192112928], [2.4106903466383, 48.878475106516], [2.4132704497803, 48.873116980044]]], "type": "Polygon"}, "id": "0", "type": "Feature"}], "type": "FeatureCollection"});
var marker_08f1e02455dc82a9eeefb7987857db7a = L.marker(
[48.86136073373512, 2.4061436501875555],
{}
).addTo(map_aa29591021eaa5a84ee4fd8a547c0721);
var popup_a848a97b581267ac82eade875cca4f34 = L.popup({"maxWidth": "100%"});
var html_42aaa3f86bdd3845144ee0284ba30239 = $(`<div id="html_42aaa3f86bdd3845144ee0284ba30239" style="width: 100.0%; height: 100.0%;">Arrondissement 20 : 8423.96 €/m²</div>`)[0];
popup_a848a97b581267ac82eade875cca4f34.setContent(html_42aaa3f86bdd3845144ee0284ba30239);