-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheducation_data.html
8373 lines (4384 loc) · 368 KB
/
education_data.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>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<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://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.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://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.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://rawcdn.githack.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<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>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_92292bd9ffe641ae887a22f386102ace {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_92292bd9ffe641ae887a22f386102ace" ></div>
</body>
<script>
var map_92292bd9ffe641ae887a22f386102ace = L.map(
"map_92292bd9ffe641ae887a22f386102ace",
{
center: [23.0, 72.55],
crs: L.CRS.EPSG3857,
zoom: 13,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_2a0fec9afa4e40efa76cce21fd4bf140 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca 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_92292bd9ffe641ae887a22f386102ace);
var tile_layer_ca3394c83ef14d76b1c98fa0bef3a5a9 = L.tileLayer(
"https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"http://cartodb.com/attributions\"\u003eCartoDB\u003c/a\u003e, CartoDB \u003ca 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_92292bd9ffe641ae887a22f386102ace);
var tile_layer_d41281bcdcbd4999ba956f489b0b6737 = L.tileLayer(
"https://cartodb-basemaps-{s}.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"http://cartodb.com/attributions\"\u003eCartoDB\u003c/a\u003e, CartoDB \u003ca 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_92292bd9ffe641ae887a22f386102ace);
var feature_group_4b5561599ccb4482a15b28a2ead68427 = L.featureGroup(
{}
).addTo(map_92292bd9ffe641ae887a22f386102ace);
var marker_7f631f4983b7422fbd6f26428a10191d = L.marker(
[23.027760000000054, 72.60027000000008],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_53927f6ce9b64081aca104c662a802a9 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_7f631f4983b7422fbd6f26428a10191d.setIcon(icon_53927f6ce9b64081aca104c662a802a9);
var popup_cf4e0ee19b9b4fcc819dd764d1ebe76c = L.popup({"maxWidth": "100%"});
var html_dde7bce4684a49cea9c12df563bd79a7 = $(`<div id="html_dde7bce4684a49cea9c12df563bd79a7" style="width: 100.0%; height: 100.0%;">Neighbourhood-Agol ,Number of Schools =58 ,Mean Rating:4.26</div>`)[0];
popup_cf4e0ee19b9b4fcc819dd764d1ebe76c.setContent(html_dde7bce4684a49cea9c12df563bd79a7);
marker_7f631f4983b7422fbd6f26428a10191d.bindPopup(popup_cf4e0ee19b9b4fcc819dd764d1ebe76c)
;
var marker_3bcf38bbc969452199efa2a391ad26f3 = L.marker(
[23.00212000000005, 72.54979000000003],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_6dab298cb5c84fa297e9dfc8f077dcd4 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_3bcf38bbc969452199efa2a391ad26f3.setIcon(icon_6dab298cb5c84fa297e9dfc8f077dcd4);
var popup_d6b2915cd34f4ceda11dde39899edae9 = L.popup({"maxWidth": "100%"});
var html_e3984732c38f4e019305548702d61e20 = $(`<div id="html_e3984732c38f4e019305548702d61e20" style="width: 100.0%; height: 100.0%;">Neighbourhood-Alam Roza ,Number of Schools =60 ,Mean Rating:4.43</div>`)[0];
popup_d6b2915cd34f4ceda11dde39899edae9.setContent(html_e3984732c38f4e019305548702d61e20);
marker_3bcf38bbc969452199efa2a391ad26f3.bindPopup(popup_d6b2915cd34f4ceda11dde39899edae9)
;
var marker_dba490e7de0e45c9a5c427754e4363da = L.marker(
[23.018850000000054, 72.55441000000008],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_e0608799be6e473b998b1ffef83ebf3f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_dba490e7de0e45c9a5c427754e4363da.setIcon(icon_e0608799be6e473b998b1ffef83ebf3f);
var popup_8f14d046533d4c36afd093ed1ef86a29 = L.popup({"maxWidth": "100%"});
var html_a72696157d294f97850c4a9173a1f0f5 = $(`<div id="html_a72696157d294f97850c4a9173a1f0f5" style="width: 100.0%; height: 100.0%;">Neighbourhood-Ambawadi ,Number of Schools =58 ,Mean Rating:4.44</div>`)[0];
popup_8f14d046533d4c36afd093ed1ef86a29.setContent(html_a72696157d294f97850c4a9173a1f0f5);
marker_dba490e7de0e45c9a5c427754e4363da.bindPopup(popup_8f14d046533d4c36afd093ed1ef86a29)
;
var marker_3a94888663cd493e8ede8a7cc7c6c743 = L.marker(
[23.007350000000034, 72.62268000000007],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_876adac6a0e445b49677a5f4f1a49978 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_3a94888663cd493e8ede8a7cc7c6c743.setIcon(icon_876adac6a0e445b49677a5f4f1a49978);
var popup_126e31199eb74bb4b509b3d686c79566 = L.popup({"maxWidth": "100%"});
var html_a90bd78799b444959c6f3e1512fbca8a = $(`<div id="html_a90bd78799b444959c6f3e1512fbca8a" style="width: 100.0%; height: 100.0%;">Neighbourhood-Amraiwadi ,Number of Schools =60 ,Mean Rating:3.84</div>`)[0];
popup_126e31199eb74bb4b509b3d686c79566.setContent(html_a90bd78799b444959c6f3e1512fbca8a);
marker_3a94888663cd493e8ede8a7cc7c6c743.bindPopup(popup_126e31199eb74bb4b509b3d686c79566)
;
var marker_ca9f3052038848ada450445503f2a249 = L.marker(
[23.011390000000066, 72.51712000000003],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_bb62fd52f6194cecaf59897149abfbd8 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_ca9f3052038848ada450445503f2a249.setIcon(icon_bb62fd52f6194cecaf59897149abfbd8);
var popup_19e626d60acc44b6a76446a44c14a478 = L.popup({"maxWidth": "100%"});
var html_d31079e981984d8d9f13b048132e6651 = $(`<div id="html_d31079e981984d8d9f13b048132e6651" style="width: 100.0%; height: 100.0%;">Neighbourhood-Anand Nagar (Ahmedabad) ,Number of Schools =57 ,Mean Rating:4.22</div>`)[0];
popup_19e626d60acc44b6a76446a44c14a478.setContent(html_d31079e981984d8d9f13b048132e6651);
marker_ca9f3052038848ada450445503f2a249.bindPopup(popup_19e626d60acc44b6a76446a44c14a478)
;
var marker_3ccabd37e1114d98957fb6befaa68380 = L.marker(
[23.04708000000005, 72.60481000000004],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_4062a6d862d94c8cafe9ce83ad99f4c0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_3ccabd37e1114d98957fb6befaa68380.setIcon(icon_4062a6d862d94c8cafe9ce83ad99f4c0);
var popup_b33d1fec5c0f40819b81496dd09da73e = L.popup({"maxWidth": "100%"});
var html_f30fb800ea284c89a857e8c02b358708 = $(`<div id="html_f30fb800ea284c89a857e8c02b358708" style="width: 100.0%; height: 100.0%;">Neighbourhood-Asarwa ,Number of Schools =56 ,Mean Rating:3.85</div>`)[0];
popup_b33d1fec5c0f40819b81496dd09da73e.setContent(html_f30fb800ea284c89a857e8c02b358708);
marker_3ccabd37e1114d98957fb6befaa68380.bindPopup(popup_b33d1fec5c0f40819b81496dd09da73e)
;
var marker_b6048cd5e5194e1e9d01ea664aa68a9a = L.marker(
[23.04225742945364, 72.60456625728018],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_8ae7e8999626476a8a720d1e469c7575 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_b6048cd5e5194e1e9d01ea664aa68a9a.setIcon(icon_8ae7e8999626476a8a720d1e469c7575);
var popup_5fa5a0702cfc47f3bde76f891460fa8f = L.popup({"maxWidth": "100%"});
var html_5d0c178c3f944696bdc63a9a1bc97bdc = $(`<div id="html_5d0c178c3f944696bdc63a9a1bc97bdc" style="width: 100.0%; height: 100.0%;">Neighbourhood-Asarwa Chakla ,Number of Schools =58 ,Mean Rating:3.91</div>`)[0];
popup_5fa5a0702cfc47f3bde76f891460fa8f.setContent(html_5d0c178c3f944696bdc63a9a1bc97bdc);
marker_b6048cd5e5194e1e9d01ea664aa68a9a.bindPopup(popup_5fa5a0702cfc47f3bde76f891460fa8f)
;
var marker_9d3e683dca4f4f05b47f61fe71b21c1b = L.marker(
[23.034760000000066, 72.63024000000007],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_c039b101d80b49178915aafd0afa6f1a = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_9d3e683dca4f4f05b47f61fe71b21c1b.setIcon(icon_c039b101d80b49178915aafd0afa6f1a);
var popup_8bf7db94a039408ba8556b8cd6d0ca25 = L.popup({"maxWidth": "100%"});
var html_b3cecd6409f44dd391698bd2292a6800 = $(`<div id="html_b3cecd6409f44dd391698bd2292a6800" style="width: 100.0%; height: 100.0%;">Neighbourhood-Bapunagar ,Number of Schools =60 ,Mean Rating:4.4</div>`)[0];
popup_8bf7db94a039408ba8556b8cd6d0ca25.setContent(html_b3cecd6409f44dd391698bd2292a6800);
marker_9d3e683dca4f4f05b47f61fe71b21c1b.bindPopup(popup_8bf7db94a039408ba8556b8cd6d0ca25)
;
var marker_57cf6f219997431484414a1a7121c975 = L.marker(
[22.85570000000007, 72.59490000000005],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_f5271af5583246c8a5fb59e7d9e9c92e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_57cf6f219997431484414a1a7121c975.setIcon(icon_f5271af5583246c8a5fb59e7d9e9c92e);
var popup_2ddb2e57cf114cfdb245f93fe2ddddac = L.popup({"maxWidth": "100%"});
var html_478308d0e76d44eab5c8ca64abcfd764 = $(`<div id="html_478308d0e76d44eab5c8ca64abcfd764" style="width: 100.0%; height: 100.0%;">Neighbourhood-Bareja (area) ,Number of Schools =18 ,Mean Rating:4.21</div>`)[0];
popup_2ddb2e57cf114cfdb245f93fe2ddddac.setContent(html_478308d0e76d44eab5c8ca64abcfd764);
marker_57cf6f219997431484414a1a7121c975.bindPopup(popup_2ddb2e57cf114cfdb245f93fe2ddddac)
;
var marker_1f9fe155484d43bab8e1327ca881b5b0 = L.marker(
[23.002780000000033, 72.57706000000006],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_475922cd46f84189ac984e916dbe1cab = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_1f9fe155484d43bab8e1327ca881b5b0.setIcon(icon_475922cd46f84189ac984e916dbe1cab);
var popup_be6fc93a7ffd43a1b4ce6bff3e08df52 = L.popup({"maxWidth": "100%"});
var html_2892adc86024467b9ed2505eeebe5522 = $(`<div id="html_2892adc86024467b9ed2505eeebe5522" style="width: 100.0%; height: 100.0%;">Neighbourhood-Behrampura ,Number of Schools =49 ,Mean Rating:4.4</div>`)[0];
popup_be6fc93a7ffd43a1b4ce6bff3e08df52.setContent(html_2892adc86024467b9ed2505eeebe5522);
marker_1f9fe155484d43bab8e1327ca881b5b0.bindPopup(popup_be6fc93a7ffd43a1b4ce6bff3e08df52)
;
var marker_0e08ae6915af4246b027f00f320f22b2 = L.marker(
[23.002575410797863, 72.59815911107509],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_7dc8bf62b0b94f02b29dcbc561fe0daf = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_0e08ae6915af4246b027f00f320f22b2.setIcon(icon_7dc8bf62b0b94f02b29dcbc561fe0daf);
var popup_92401304372d4f92be0d6d87d77eb51e = L.popup({"maxWidth": "100%"});
var html_8e7ac625d4e7475898de8f2963609c91 = $(`<div id="html_8e7ac625d4e7475898de8f2963609c91" style="width: 100.0%; height: 100.0%;">Neighbourhood-Bhairavnath Road ,Number of Schools =60 ,Mean Rating:4.13</div>`)[0];
popup_92401304372d4f92be0d6d87d77eb51e.setContent(html_8e7ac625d4e7475898de8f2963609c91);
marker_0e08ae6915af4246b027f00f320f22b2.bindPopup(popup_92401304372d4f92be0d6d87d77eb51e)
;
var marker_8cd4d315e9434f5e838f6da95c5dad58 = L.marker(
[23.030320000000078, 72.47247000000004],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_5b76cbebddc848b982e7544a150e7cb1 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_8cd4d315e9434f5e838f6da95c5dad58.setIcon(icon_5b76cbebddc848b982e7544a150e7cb1);
var popup_fd620eadac1242a8bc3a8bbae63194fd = L.popup({"maxWidth": "100%"});
var html_0b5bfb53e7bc4939b3184b84a7b7f5f6 = $(`<div id="html_0b5bfb53e7bc4939b3184b84a7b7f5f6" style="width: 100.0%; height: 100.0%;">Neighbourhood-Bopal ,Number of Schools =60 ,Mean Rating:4.55</div>`)[0];
popup_fd620eadac1242a8bc3a8bbae63194fd.setContent(html_0b5bfb53e7bc4939b3184b84a7b7f5f6);
marker_8cd4d315e9434f5e838f6da95c5dad58.bindPopup(popup_fd620eadac1242a8bc3a8bbae63194fd)
;
var marker_53b56ca89c7946e9b45effcce7dd5f9a = L.marker(
[23.000980000000034, 72.57459000000007],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_1f8e73268a754085850aa10b79eeeabd = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_53b56ca89c7946e9b45effcce7dd5f9a.setIcon(icon_1f8e73268a754085850aa10b79eeeabd);
var popup_82647d3f8b3b4b9fa633a6b9d502217f = L.popup({"maxWidth": "100%"});
var html_3944bc354630403a964cd767a2cdeff8 = $(`<div id="html_3944bc354630403a964cd767a2cdeff8" style="width: 100.0%; height: 100.0%;">Neighbourhood-Calico Mills (area) ,Number of Schools =39 ,Mean Rating:4.42</div>`)[0];
popup_82647d3f8b3b4b9fa633a6b9d502217f.setContent(html_3944bc354630403a964cd767a2cdeff8);
marker_53b56ca89c7946e9b45effcce7dd5f9a.bindPopup(popup_82647d3f8b3b4b9fa633a6b9d502217f)
;
var marker_8aefc6eca27544a8a618a14205a6f901 = L.marker(
[23.11214000000007, 72.57989000000003],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_a99f3ebf22db42759ae17e3cd14c02a5 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_8aefc6eca27544a8a618a14205a6f901.setIcon(icon_a99f3ebf22db42759ae17e3cd14c02a5);
var popup_a4a6e738b410434cbb7257e0d75c74a5 = L.popup({"maxWidth": "100%"});
var html_79d904a86e0c41a08b27cdc0733d8758 = $(`<div id="html_79d904a86e0c41a08b27cdc0733d8758" style="width: 100.0%; height: 100.0%;">Neighbourhood-Chandkheda ,Number of Schools =60 ,Mean Rating:4.2</div>`)[0];
popup_a4a6e738b410434cbb7257e0d75c74a5.setContent(html_79d904a86e0c41a08b27cdc0733d8758);
marker_8aefc6eca27544a8a618a14205a6f901.bindPopup(popup_a4a6e738b410434cbb7257e0d75c74a5)
;
var marker_59f147a8dff640a2b4fc7be7e94120af = L.marker(
[23.087290000000053, 72.54899000000006],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_52fd176fd7a149f5b8891d45f5ab778d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_59f147a8dff640a2b4fc7be7e94120af.setIcon(icon_52fd176fd7a149f5b8891d45f5ab778d);
var popup_b44825167c104e3a829e2b5ee2ccbf8b = L.popup({"maxWidth": "100%"});
var html_5d0100de224e41138f6ac6c14f0eb943 = $(`<div id="html_5d0100de224e41138f6ac6c14f0eb943" style="width: 100.0%; height: 100.0%;">Neighbourhood-Chandlodiya ,Number of Schools =60 ,Mean Rating:4.14</div>`)[0];
popup_b44825167c104e3a829e2b5ee2ccbf8b.setContent(html_5d0100de224e41138f6ac6c14f0eb943);
marker_59f147a8dff640a2b4fc7be7e94120af.bindPopup(popup_b44825167c104e3a829e2b5ee2ccbf8b)
;
var marker_99dee8fe97a24f35842dd4528cc0886d = L.marker(
[23.036070000000052, 72.59213000000005],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_d65610c6cb6f4895a1619eff3c6ab1bc = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_99dee8fe97a24f35842dd4528cc0886d.setIcon(icon_d65610c6cb6f4895a1619eff3c6ab1bc);
var popup_3786bb1f7cbb4b908fd15fb2e4208d98 = L.popup({"maxWidth": "100%"});
var html_4b263385afe1474cb9e979f00db16f10 = $(`<div id="html_4b263385afe1474cb9e979f00db16f10" style="width: 100.0%; height: 100.0%;">Neighbourhood-Dariapur (Ahmedabad) ,Number of Schools =60 ,Mean Rating:3.92</div>`)[0];
popup_3786bb1f7cbb4b908fd15fb2e4208d98.setContent(html_4b263385afe1474cb9e979f00db16f10);
marker_99dee8fe97a24f35842dd4528cc0886d.bindPopup(popup_3786bb1f7cbb4b908fd15fb2e4208d98)
;
var marker_db0a5c5ce0ca44a68065d7e8ccdf0822 = L.marker(
[23.022390333701104, 72.57669435394355],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_872ac14e281e4f8cb1a50b269d939fc9 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_db0a5c5ce0ca44a68065d7e8ccdf0822.setIcon(icon_872ac14e281e4f8cb1a50b269d939fc9);
var popup_46b5f26619d643c1bdb9def1de2f1414 = L.popup({"maxWidth": "100%"});
var html_6a8d90da298a41d893c09de9fa2893da = $(`<div id="html_6a8d90da298a41d893c09de9fa2893da" style="width: 100.0%; height: 100.0%;">Neighbourhood-Ellis bridge (area) ,Number of Schools =60 ,Mean Rating:4.14</div>`)[0];
popup_46b5f26619d643c1bdb9def1de2f1414.setContent(html_6a8d90da298a41d893c09de9fa2893da);
marker_db0a5c5ce0ca44a68065d7e8ccdf0822.bindPopup(popup_46b5f26619d643c1bdb9def1de2f1414)
;
var marker_dedf182539e443a5be79ace0dc28bd07 = L.marker(
[23.07275000000004, 72.54964000000007],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_2b316a1eea484b18a1d960fd6e8444d8 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_dedf182539e443a5be79ace0dc28bd07.setIcon(icon_2b316a1eea484b18a1d960fd6e8444d8);
var popup_85fed86ee8fb48a187716e47456aa373 = L.popup({"maxWidth": "100%"});
var html_ab7231bb733d446abfc5dfbdcd189cd6 = $(`<div id="html_ab7231bb733d446abfc5dfbdcd189cd6" style="width: 100.0%; height: 100.0%;">Neighbourhood-Ghatlodiya ,Number of Schools =60 ,Mean Rating:4.25</div>`)[0];
popup_85fed86ee8fb48a187716e47456aa373.setContent(html_ab7231bb733d446abfc5dfbdcd189cd6);
marker_dedf182539e443a5be79ace0dc28bd07.bindPopup(popup_85fed86ee8fb48a187716e47456aa373)
;
var marker_a2cb5b151f0e4d58930bf825606ec8ac = L.marker(
[22.974030000000035, 72.61170000000004],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_8dc33e87d8a64f3097191897cbef8977 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_a2cb5b151f0e4d58930bf825606ec8ac.setIcon(icon_8dc33e87d8a64f3097191897cbef8977);
var popup_8d478c99dbf0463088f9c307e793e399 = L.popup({"maxWidth": "100%"});
var html_9373b9ca457d4e2da62a77f3564af43d = $(`<div id="html_9373b9ca457d4e2da62a77f3564af43d" style="width: 100.0%; height: 100.0%;">Neighbourhood-Ghodasar ,Number of Schools =60 ,Mean Rating:4.11</div>`)[0];
popup_8d478c99dbf0463088f9c307e793e399.setContent(html_9373b9ca457d4e2da62a77f3564af43d);
marker_a2cb5b151f0e4d58930bf825606ec8ac.bindPopup(popup_8d478c99dbf0463088f9c307e793e399)
;
var marker_534afe472c6e47f885aafdb67f63cec1 = L.marker(
[23.050070000000066, 72.59831000000008],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_670a3dbcb5fd4294951116de6a426f39 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_534afe472c6e47f885aafdb67f63cec1.setIcon(icon_670a3dbcb5fd4294951116de6a426f39);
var popup_8bfd1796472842129f265b620047dde5 = L.popup({"maxWidth": "100%"});
var html_10a835c8b4794d31895026d06fbb6997 = $(`<div id="html_10a835c8b4794d31895026d06fbb6997" style="width: 100.0%; height: 100.0%;">Neighbourhood-Girdharnagar ,Number of Schools =60 ,Mean Rating:4.05</div>`)[0];
popup_8bfd1796472842129f265b620047dde5.setContent(html_10a835c8b4794d31895026d06fbb6997);
marker_534afe472c6e47f885aafdb67f63cec1.bindPopup(popup_8bfd1796472842129f265b620047dde5)
;
var marker_874d41d76b0d4004a57ac8241f857dcf = L.marker(
[23.006018549998913, 72.59080240924993],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_9c803eed5a784606aa30854078d2a9c3 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_874d41d76b0d4004a57ac8241f857dcf.setIcon(icon_9c803eed5a784606aa30854078d2a9c3);
var popup_741b0dc3cc544e06bf4cbb3c533302f3 = L.popup({"maxWidth": "100%"});
var html_9e5a6f9db4f947d39e5a9697528d5b0a = $(`<div id="html_9e5a6f9db4f947d39e5a9697528d5b0a" style="width: 100.0%; height: 100.0%;">Neighbourhood-Gita Mandir Road ,Number of Schools =60 ,Mean Rating:4.11</div>`)[0];
popup_741b0dc3cc544e06bf4cbb3c533302f3.setContent(html_9e5a6f9db4f947d39e5a9697528d5b0a);
marker_874d41d76b0d4004a57ac8241f857dcf.bindPopup(popup_741b0dc3cc544e06bf4cbb3c533302f3)
;
var marker_f01869bc38494882a21f90bd53cfd8e0 = L.marker(
[23.028490000000033, 72.40776000000005],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_dad65ffcbc3d43589c1af463c9525342 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_f01869bc38494882a21f90bd53cfd8e0.setIcon(icon_dad65ffcbc3d43589c1af463c9525342);
var popup_7a1cc4681e4142f1855fc9e093a98c35 = L.popup({"maxWidth": "100%"});
var html_70eb8b3f108846df9952b9cefb41166b = $(`<div id="html_70eb8b3f108846df9952b9cefb41166b" style="width: 100.0%; height: 100.0%;">Neighbourhood-Godhavi ,Number of Schools =12 ,Mean Rating:3.95</div>`)[0];
popup_7a1cc4681e4142f1855fc9e093a98c35.setContent(html_70eb8b3f108846df9952b9cefb41166b);
marker_f01869bc38494882a21f90bd53cfd8e0.bindPopup(popup_7a1cc4681e4142f1855fc9e093a98c35)
;
var marker_62b4a218ba764aeca712ba0f9b776f6b = L.marker(
[23.01597000000004, 72.61082000000005],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_c64523b698404baf854eced453635bed = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_62b4a218ba764aeca712ba0f9b776f6b.setIcon(icon_c64523b698404baf854eced453635bed);
var popup_4160759399a44bd7b3e015b3da2ec884 = L.popup({"maxWidth": "100%"});
var html_d8bd5bb4b2e64db2beebb547c9c57310 = $(`<div id="html_d8bd5bb4b2e64db2beebb547c9c57310" style="width: 100.0%; height: 100.0%;">Neighbourhood-Gomtipur ,Number of Schools =49 ,Mean Rating:4.0</div>`)[0];
popup_4160759399a44bd7b3e015b3da2ec884.setContent(html_d8bd5bb4b2e64db2beebb547c9c57310);
marker_62b4a218ba764aeca712ba0f9b776f6b.bindPopup(popup_4160759399a44bd7b3e015b3da2ec884)
;
var marker_7eb9e1894c664d6c946eeb76fee8bbe7 = L.marker(
[23.101730000000032, 72.53900000000004],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_9db62dcc22de4990a5a3c5a568d4b619 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_7eb9e1894c664d6c946eeb76fee8bbe7.setIcon(icon_9db62dcc22de4990a5a3c5a568d4b619);
var popup_83bdf6b7c93a46c6aa0d98de371a3de8 = L.popup({"maxWidth": "100%"});
var html_4e566a5074864eb2ad90cb940fc28052 = $(`<div id="html_4e566a5074864eb2ad90cb940fc28052" style="width: 100.0%; height: 100.0%;">Neighbourhood-Gota, Gujarat ,Number of Schools =54 ,Mean Rating:4.53</div>`)[0];
popup_83bdf6b7c93a46c6aa0d98de371a3de8.setContent(html_4e566a5074864eb2ad90cb940fc28052);
marker_7eb9e1894c664d6c946eeb76fee8bbe7.bindPopup(popup_83bdf6b7c93a46c6aa0d98de371a3de8)
;
var marker_25b8ca3d24684a618e5adc3cb6e3cda9 = L.marker(
[22.97137000000004, 72.59743000000003],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_796f6ca744c74b0b92c9523c259f4275 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_25b8ca3d24684a618e5adc3cb6e3cda9.setIcon(icon_796f6ca744c74b0b92c9523c259f4275);
var popup_a80a300aa950445785bd726f725ef1fe = L.popup({"maxWidth": "100%"});
var html_af434a474af9475bbb0380f35a06ee35 = $(`<div id="html_af434a474af9475bbb0380f35a06ee35" style="width: 100.0%; height: 100.0%;">Neighbourhood-Isanpur ,Number of Schools =60 ,Mean Rating:3.94</div>`)[0];
popup_a80a300aa950445785bd726f725ef1fe.setContent(html_af434a474af9475bbb0380f35a06ee35);
marker_25b8ca3d24684a618e5adc3cb6e3cda9.bindPopup(popup_a80a300aa950445785bd726f725ef1fe)
;
var marker_8bb4d399e894438f9799ab243b2e3745 = L.marker(
[23.01265000000007, 72.58458000000007],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_a345df190d5740a0986719e57521ebb9 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_8bb4d399e894438f9799ab243b2e3745.setIcon(icon_a345df190d5740a0986719e57521ebb9);
var popup_2e520e3b267a44979ff8581497655b12 = L.popup({"maxWidth": "100%"});
var html_7dde351b33074cd39fa6b13aeb16a04e = $(`<div id="html_7dde351b33074cd39fa6b13aeb16a04e" style="width: 100.0%; height: 100.0%;">Neighbourhood-Jamalpur, Gujarat ,Number of Schools =60 ,Mean Rating:4.09</div>`)[0];
popup_2e520e3b267a44979ff8581497655b12.setContent(html_7dde351b33074cd39fa6b13aeb16a04e);
marker_8bb4d399e894438f9799ab243b2e3745.bindPopup(popup_2e520e3b267a44979ff8581497655b12)
;
var marker_ea32e735d598408f88cc50b55a217bb7 = L.marker(
[23.089520000000054, 72.58551000000007],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_f83b2dacd27841e786d29bcac0d91c02 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_ea32e735d598408f88cc50b55a217bb7.setIcon(icon_f83b2dacd27841e786d29bcac0d91c02);
var popup_5f021a432f004c57b67a84a5c3268dda = L.popup({"maxWidth": "100%"});
var html_545a1a67b26d472f819f478fd7e9c0ce = $(`<div id="html_545a1a67b26d472f819f478fd7e9c0ce" style="width: 100.0%; height: 100.0%;">Neighbourhood-Jawahar Chowk ,Number of Schools =45 ,Mean Rating:3.84</div>`)[0];
popup_5f021a432f004c57b67a84a5c3268dda.setContent(html_545a1a67b26d472f819f478fd7e9c0ce);
marker_ea32e735d598408f88cc50b55a217bb7.bindPopup(popup_5f021a432f004c57b67a84a5c3268dda)
;
var marker_652f9dc4a14540d4a745c3b64647eea9 = L.marker(
[23.006100000000053, 72.53149000000008],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_4edf04c38aa04e6cacb73ca4161ab658 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_652f9dc4a14540d4a745c3b64647eea9.setIcon(icon_4edf04c38aa04e6cacb73ca4161ab658);
var popup_fcede5933c944246a8e044289aff5159 = L.popup({"maxWidth": "100%"});
var html_5442761032344472b1ddb7d3aad62766 = $(`<div id="html_5442761032344472b1ddb7d3aad62766" style="width: 100.0%; height: 100.0%;">Neighbourhood-Jivrajpark ,Number of Schools =60 ,Mean Rating:4.08</div>`)[0];
popup_fcede5933c944246a8e044289aff5159.setContent(html_5442761032344472b1ddb7d3aad62766);
marker_652f9dc4a14540d4a745c3b64647eea9.bindPopup(popup_fcede5933c944246a8e044289aff5159)
;
var marker_be3c668a308d41dd9d8ac86125feee96 = L.marker(
[23.02063000000004, 72.52522000000005],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_090222107e024a8b9595a5bf1a796e29 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_be3c668a308d41dd9d8ac86125feee96.setIcon(icon_090222107e024a8b9595a5bf1a796e29);
var popup_9c7b3fa7e5fe41469b83ed4fdc0549c7 = L.popup({"maxWidth": "100%"});
var html_7f9d87f8619844b1bcd9b253755a42f6 = $(`<div id="html_7f9d87f8619844b1bcd9b253755a42f6" style="width: 100.0%; height: 100.0%;">Neighbourhood-Jodhpur, Gujarat ,Number of Schools =58 ,Mean Rating:4.49</div>`)[0];
popup_9c7b3fa7e5fe41469b83ed4fdc0549c7.setContent(html_7f9d87f8619844b1bcd9b253755a42f6);
marker_be3c668a308d41dd9d8ac86125feee96.bindPopup(popup_9c7b3fa7e5fe41469b83ed4fdc0549c7)
;
var marker_060bd2baffee470f83fe44294f281e0d = L.marker(
[22.998620000000077, 72.52433000000008],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_c27537a5d8304177b71c1d1914e67536 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_060bd2baffee470f83fe44294f281e0d.setIcon(icon_c27537a5d8304177b71c1d1914e67536);
var popup_b2dcbb6e3f694632abfbad3e4df1d847 = L.popup({"maxWidth": "100%"});
var html_bf83b0e7d86b4ab58b413cf959a2665d = $(`<div id="html_bf83b0e7d86b4ab58b413cf959a2665d" style="width: 100.0%; height: 100.0%;">Neighbourhood-Juhapura ,Number of Schools =60 ,Mean Rating:4.22</div>`)[0];
popup_b2dcbb6e3f694632abfbad3e4df1d847.setContent(html_bf83b0e7d86b4ab58b413cf959a2665d);
marker_060bd2baffee470f83fe44294f281e0d.bindPopup(popup_b2dcbb6e3f694632abfbad3e4df1d847)
;
var marker_15a8621df9474cc8aeb6f7c7f737313b = L.marker(
[23.09025745274659, 72.58551179799491],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_9baf25ba72c94a5f905950b35500af6d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_15a8621df9474cc8aeb6f7c7f737313b.setIcon(icon_9baf25ba72c94a5f905950b35500af6d);
var popup_73f63f0006974b928f8ced8f02bc189e = L.popup({"maxWidth": "100%"});
var html_2ddbeb5320c34141b58cd5a82ab9b309 = $(`<div id="html_2ddbeb5320c34141b58cd5a82ab9b309" style="width: 100.0%; height: 100.0%;">Neighbourhood-Kabirchowk ,Number of Schools =48 ,Mean Rating:3.87</div>`)[0];
popup_73f63f0006974b928f8ced8f02bc189e.setContent(html_2ddbeb5320c34141b58cd5a82ab9b309);
marker_15a8621df9474cc8aeb6f7c7f737313b.bindPopup(popup_73f63f0006974b928f8ced8f02bc189e)
;
var marker_785fe18d34a944e5b68665dcaf9cbe90 = L.marker(
[23.02825000000007, 72.59372000000008],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_b105945aedc9468cacbb6476e0f0d9d5 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_785fe18d34a944e5b68665dcaf9cbe90.setIcon(icon_b105945aedc9468cacbb6476e0f0d9d5);
var popup_165950dbcac94f288c935d24df321b8e = L.popup({"maxWidth": "100%"});
var html_8d8b0b7f6aaa4193a314d75107134831 = $(`<div id="html_8d8b0b7f6aaa4193a314d75107134831" style="width: 100.0%; height: 100.0%;">Neighbourhood-Kalupur ,Number of Schools =60 ,Mean Rating:4.14</div>`)[0];
popup_165950dbcac94f288c935d24df321b8e.setContent(html_8d8b0b7f6aaa4193a314d75107134831);
marker_785fe18d34a944e5b68665dcaf9cbe90.bindPopup(popup_165950dbcac94f288c935d24df321b8e)
;
var marker_cd83c4f4e4a0428f838091aa65947ca5 = L.marker(
[23.04764000000005, 72.56149000000005],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_d34aa72e24c8438682e61c98a27d4f7d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_cd83c4f4e4a0428f838091aa65947ca5.setIcon(icon_d34aa72e24c8438682e61c98a27d4f7d);
var popup_83d6a118ea054b62a87ca93f0c24679d = L.popup({"maxWidth": "100%"});
var html_3cb16c780bf2470a94aaeb1a27f967f1 = $(`<div id="html_3cb16c780bf2470a94aaeb1a27f967f1" style="width: 100.0%; height: 100.0%;">Neighbourhood-Kalyanpura (Ahmedabad) ,Number of Schools =60 ,Mean Rating:4.23</div>`)[0];
popup_83d6a118ea054b62a87ca93f0c24679d.setContent(html_3cb16c780bf2470a94aaeb1a27f967f1);
marker_cd83c4f4e4a0428f838091aa65947ca5.bindPopup(popup_83d6a118ea054b62a87ca93f0c24679d)
;
var marker_dacd328ab39a438d95f2c31c34655bfc = L.marker(
[23.020770000000034, 72.59244000000007],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_a724313825dc43ddae11a3a0bd959ed5 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_dacd328ab39a438d95f2c31c34655bfc.setIcon(icon_a724313825dc43ddae11a3a0bd959ed5);
var popup_928e3d36bd424a8ba155b4853b230676 = L.popup({"maxWidth": "100%"});
var html_6dba93b975f04001b07f03a2742e8134 = $(`<div id="html_6dba93b975f04001b07f03a2742e8134" style="width: 100.0%; height: 100.0%;">Neighbourhood-Khadia, Ahmedabad ,Number of Schools =60 ,Mean Rating:4.03</div>`)[0];
popup_928e3d36bd424a8ba155b4853b230676.setContent(html_6dba93b975f04001b07f03a2742e8134);
marker_dacd328ab39a438d95f2c31c34655bfc.bindPopup(popup_928e3d36bd424a8ba155b4853b230676)
;
var marker_a0eccd70c5c54711a972e9d54be3c028 = L.marker(
[23.034350000000078, 72.64652000000007],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_4166b78dffda4993af67ca59c73e97b7 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_a0eccd70c5c54711a972e9d54be3c028.setIcon(icon_4166b78dffda4993af67ca59c73e97b7);
var popup_73e885b819b041f2bb2a80cee9c58609 = L.popup({"maxWidth": "100%"});
var html_bb8bcf55c90f48e2939b240d43ad27e7 = $(`<div id="html_bb8bcf55c90f48e2939b240d43ad27e7" style="width: 100.0%; height: 100.0%;">Neighbourhood-Khodiyarnagar ,Number of Schools =60 ,Mean Rating:4.2</div>`)[0];
popup_73e885b819b041f2bb2a80cee9c58609.setContent(html_bb8bcf55c90f48e2939b240d43ad27e7);
marker_a0eccd70c5c54711a972e9d54be3c028.bindPopup(popup_73e885b819b041f2bb2a80cee9c58609)
;
var marker_5cf3ad3e30aa480a9962ac820a9b4152 = L.marker(
[23.00580959394864, 72.61333409499983],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_7a7990328cab4fc68475c09a64879677 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_5cf3ad3e30aa480a9962ac820a9b4152.setIcon(icon_7a7990328cab4fc68475c09a64879677);
var popup_a08c5d1d72fb4efdbb66f946c7e7fb87 = L.popup({"maxWidth": "100%"});
var html_a324845810594b208056c58c0e010377 = $(`<div id="html_a324845810594b208056c58c0e010377" style="width: 100.0%; height: 100.0%;">Neighbourhood-Khokhra ,Number of Schools =60 ,Mean Rating:4.0</div>`)[0];
popup_a08c5d1d72fb4efdbb66f946c7e7fb87.setContent(html_a324845810594b208056c58c0e010377);
marker_5cf3ad3e30aa480a9962ac820a9b4152.bindPopup(popup_a08c5d1d72fb4efdbb66f946c7e7fb87)
;
var marker_787e2b92c2294751a3b131e31174a5a6 = L.marker(
[22.93802000000005, 72.58586000000008],
{}
).addTo(feature_group_4b5561599ccb4482a15b28a2ead68427);
var icon_955abd68e83b4ea79505321fa8aee422 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_787e2b92c2294751a3b131e31174a5a6.setIcon(icon_955abd68e83b4ea79505321fa8aee422);
var popup_9668c035aa8f4e2fa39de8e422d8f547 = L.popup({"maxWidth": "100%"});
var html_ba895749ad1f47989768f0e182815ef2 = $(`<div id="html_ba895749ad1f47989768f0e182815ef2" style="width: 100.0%; height: 100.0%;">Neighbourhood-Lambha ,Number of Schools =5 ,Mean Rating:4.5</div>`)[0];
popup_9668c035aa8f4e2fa39de8e422d8f547.setContent(html_ba895749ad1f47989768f0e182815ef2);
marker_787e2b92c2294751a3b131e31174a5a6.bindPopup(popup_9668c035aa8f4e2fa39de8e422d8f547)