-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathall_python_world_map.html
More file actions
9924 lines (5784 loc) · 387 KB
/
Copy pathall_python_world_map.html
File metadata and controls
9924 lines (5784 loc) · 387 KB
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 src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_58bc1a4121290f118c093550313fe7ca {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<style>html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
<style>#map {
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
}
</style>
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.Default.css"/>
</head>
<body>
<script>
(function() {
function parseHash() {
var hash = window.location.hash;
if (hash) {
var parts = hash.replace('#', '').split('/');
if (parts.length === 3) {
var zoom = parseInt(parts[0]);
var lat = parseFloat(parts[1]);
var lng = parseFloat(parts[2]);
if (!isNaN(zoom) && !isNaN(lat) && !isNaN(lng)) {
return {zoom: zoom, lat: lat, lng: lng};
}
}
}
return null;
}
var checkMap = setInterval(function() {
for (var key in window) {
if (window[key] instanceof L.Map) {
var map = window[key];
clearInterval(checkMap);
var view = parseHash();
if (view) {
map.setView([view.lat, view.lng], view.zoom);
}
map.on('moveend', function() {
var center = map.getCenter();
var zoom = map.getZoom();
history.replaceState(null, null, '#' + zoom + '/' + center.lat.toFixed(4) + '/' + center.lng.toFixed(4));
});
break;
}
}
}, 100);
})();
</script>
<div class="folium-map" id="map_58bc1a4121290f118c093550313fe7ca" ></div>
</body>
<script>
var map_58bc1a4121290f118c093550313fe7ca = L.map(
"map_58bc1a4121290f118c093550313fe7ca",
{
center: [30.0, 0.0],
crs: L.CRS.EPSG3857,
...{
"zoom": 2,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_7057f955ef9039176d533ad092b43739 = L.tileLayer(
"https://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}",
{
"minZoom": 0,
"maxZoom": 18,
"maxNativeZoom": 18,
"noWrap": false,
"attribution": "Tiles \u0026copy; Esri \u0026mdash; Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012",
"subdomains": "abc",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_7057f955ef9039176d533ad092b43739.addTo(map_58bc1a4121290f118c093550313fe7ca);
var marker_cluster_b0dda7a048f962eb9f8a0a89b595b98b = L.markerClusterGroup(
{
"spiderfyOnMaxZoom": true,
"disableClusteringAtZoom": 12,
}
);
var circle_marker_a6dc50e60e00b069a32eaada0ab8b283 = L.circleMarker(
[34.0522342, -118.2436849],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_b0dda7a048f962eb9f8a0a89b595b98b);
var popup_937e2b1d466737970f2d7cfb4ce15c78 = L.popup({
"maxWidth": "100%",
});
var html_eaa936867fb5dc40b7fdea2ccb707df8 = $(`<div id="html_eaa936867fb5dc40b7fdea2ccb707df8" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/pydata-socal' target='_blank'>PyData SoCal</a></div>`)[0];
popup_937e2b1d466737970f2d7cfb4ce15c78.setContent(html_eaa936867fb5dc40b7fdea2ccb707df8);
circle_marker_a6dc50e60e00b069a32eaada0ab8b283.bindPopup(popup_937e2b1d466737970f2d7cfb4ce15c78)
;
circle_marker_a6dc50e60e00b069a32eaada0ab8b283.bindTooltip(
`<div>
PyData SoCal
</div>`,
{
"sticky": true,
}
);
var circle_marker_985625579ddf4416b268fe5b7fc34132 = L.circleMarker(
[34.0536909, -118.242766],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_b0dda7a048f962eb9f8a0a89b595b98b);
var popup_6605ca9db771f095d3d4023f1adcdc82 = L.popup({
"maxWidth": "100%",
});
var html_f83289ae8d28a14b301642e5bd283363 = $(`<div id="html_f83289ae8d28a14b301642e5bd283363" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/Pyladies-LA' target='_blank'>PyLadies of Los Angeles</a></div>`)[0];
popup_6605ca9db771f095d3d4023f1adcdc82.setContent(html_f83289ae8d28a14b301642e5bd283363);
circle_marker_985625579ddf4416b268fe5b7fc34132.bindPopup(popup_6605ca9db771f095d3d4023f1adcdc82)
;
circle_marker_985625579ddf4416b268fe5b7fc34132.bindTooltip(
`<div>
PyLadies of Los Angeles
</div>`,
{
"sticky": true,
}
);
var circle_marker_3e7c6759dee8b159ce55980bac9e842d = L.circleMarker(
[34.0536909, -118.242766],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_b0dda7a048f962eb9f8a0a89b595b98b);
var popup_7fa4b98298e0a94a49fb6e436e488a16 = L.popup({
"maxWidth": "100%",
});
var html_315957b7d5adfa91bbcc6455289a3242 = $(`<div id="html_315957b7d5adfa91bbcc6455289a3242" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/socalpython' target='_blank'>SoCal Python</a></div>`)[0];
popup_7fa4b98298e0a94a49fb6e436e488a16.setContent(html_315957b7d5adfa91bbcc6455289a3242);
circle_marker_3e7c6759dee8b159ce55980bac9e842d.bindPopup(popup_7fa4b98298e0a94a49fb6e436e488a16)
;
circle_marker_3e7c6759dee8b159ce55980bac9e842d.bindTooltip(
`<div>
SoCal Python
</div>`,
{
"sticky": true,
}
);
marker_cluster_b0dda7a048f962eb9f8a0a89b595b98b.addTo(map_58bc1a4121290f118c093550313fe7ca);
var marker_cluster_322f7a68d49f9d6982f3ed8f37bf7676 = L.markerClusterGroup(
{
"spiderfyOnMaxZoom": true,
"disableClusteringAtZoom": 12,
}
);
var circle_marker_2d96ca3733c3b6ac2ab52c4eb73c341c = L.circleMarker(
[40.7607793, -111.8910474],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_322f7a68d49f9d6982f3ed8f37bf7676);
var popup_6f08ef7c9d9acdc8a5dc3920d0fa6742 = L.popup({
"maxWidth": "100%",
});
var html_637ab4e21c3de63f73160361136076c7 = $(`<div id="html_637ab4e21c3de63f73160361136076c7" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/pydata-slc/' target='_blank'>Salt Lake City PyData Meetup</a></div>`)[0];
popup_6f08ef7c9d9acdc8a5dc3920d0fa6742.setContent(html_637ab4e21c3de63f73160361136076c7);
circle_marker_2d96ca3733c3b6ac2ab52c4eb73c341c.bindPopup(popup_6f08ef7c9d9acdc8a5dc3920d0fa6742)
;
circle_marker_2d96ca3733c3b6ac2ab52c4eb73c341c.bindTooltip(
`<div>
Salt Lake City PyData Meetup
</div>`,
{
"sticky": true,
}
);
var circle_marker_0821aaeb189858c92bef45712333e51b = L.circleMarker(
[40.7596198, -111.886797],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_322f7a68d49f9d6982f3ed8f37bf7676);
var popup_7c7468817da7fdb2fbcb9d63a1c6d74f = L.popup({
"maxWidth": "100%",
});
var html_28826d2d81f62c3b743943590196b884 = $(`<div id="html_28826d2d81f62c3b743943590196b884" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/Salt-Lake-Pyladies' target='_blank'>Salt Lake PyLadies</a></div>`)[0];
popup_7c7468817da7fdb2fbcb9d63a1c6d74f.setContent(html_28826d2d81f62c3b743943590196b884);
circle_marker_0821aaeb189858c92bef45712333e51b.bindPopup(popup_7c7468817da7fdb2fbcb9d63a1c6d74f)
;
circle_marker_0821aaeb189858c92bef45712333e51b.bindTooltip(
`<div>
Salt Lake PyLadies
</div>`,
{
"sticky": true,
}
);
marker_cluster_322f7a68d49f9d6982f3ed8f37bf7676.addTo(map_58bc1a4121290f118c093550313fe7ca);
var marker_cluster_b2102d659c4a8d235f20f276aa2f2f55 = L.markerClusterGroup(
{
"spiderfyOnMaxZoom": true,
"disableClusteringAtZoom": 12,
}
);
var circle_marker_9ef71ca64184876824772f2e9133f487 = L.circleMarker(
[38.6254063, -90.190009],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_b2102d659c4a8d235f20f276aa2f2f55);
var popup_459f069cf500e1b1e2fb9e709566c681 = L.popup({
"maxWidth": "100%",
});
var html_3016f2dc1c9a2fe8c407d80b464b8784 = $(`<div id="html_3016f2dc1c9a2fe8c407d80b464b8784" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/pydata-st-louis' target='_blank'>PyData St. Louis</a></div>`)[0];
popup_459f069cf500e1b1e2fb9e709566c681.setContent(html_3016f2dc1c9a2fe8c407d80b464b8784);
circle_marker_9ef71ca64184876824772f2e9133f487.bindPopup(popup_459f069cf500e1b1e2fb9e709566c681)
;
circle_marker_9ef71ca64184876824772f2e9133f487.bindTooltip(
`<div>
PyData St. Louis
</div>`,
{
"sticky": true,
}
);
var circle_marker_d3651636cc3c8a66c022884d802724cf = L.circleMarker(
[38.6254063, -90.190009],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_b2102d659c4a8d235f20f276aa2f2f55);
var popup_a2515c1fbd32b8c4ed393f96514338ff = L.popup({
"maxWidth": "100%",
});
var html_f3b39fa6e7f4e17b3b04fd2675e797cd = $(`<div id="html_f3b39fa6e7f4e17b3b04fd2675e797cd" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/python-stlouis' target='_blank'>PySTL</a></div>`)[0];
popup_a2515c1fbd32b8c4ed393f96514338ff.setContent(html_f3b39fa6e7f4e17b3b04fd2675e797cd);
circle_marker_d3651636cc3c8a66c022884d802724cf.bindPopup(popup_a2515c1fbd32b8c4ed393f96514338ff)
;
circle_marker_d3651636cc3c8a66c022884d802724cf.bindTooltip(
`<div>
PySTL
</div>`,
{
"sticky": true,
}
);
marker_cluster_b2102d659c4a8d235f20f276aa2f2f55.addTo(map_58bc1a4121290f118c093550313fe7ca);
var marker_cluster_5546e05719aead2039f95c004e0bb748 = L.markerClusterGroup(
{
"spiderfyOnMaxZoom": true,
"disableClusteringAtZoom": 12,
}
);
var circle_marker_9e283c5ca2ee00ab47890ca4691fd4ec = L.circleMarker(
[41.8755616, -87.6244212],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_5546e05719aead2039f95c004e0bb748);
var popup_6bcbbb52e4465a4489ea422c588b11fe = L.popup({
"maxWidth": "100%",
});
var html_265a43093708c08a57b2af8aba1350e5 = $(`<div id="html_265a43093708c08a57b2af8aba1350e5" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/pydatachi' target='_blank'>PyData Chicago</a></div>`)[0];
popup_6bcbbb52e4465a4489ea422c588b11fe.setContent(html_265a43093708c08a57b2af8aba1350e5);
circle_marker_9e283c5ca2ee00ab47890ca4691fd4ec.bindPopup(popup_6bcbbb52e4465a4489ea422c588b11fe)
;
circle_marker_9e283c5ca2ee00ab47890ca4691fd4ec.bindTooltip(
`<div>
PyData Chicago
</div>`,
{
"sticky": true,
}
);
var circle_marker_09ac282c391726fe059d3bf517078501 = L.circleMarker(
[41.8755616, -87.6244212],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_5546e05719aead2039f95c004e0bb748);
var popup_879c76d1c7f45b84e29024b754c28920 = L.popup({
"maxWidth": "100%",
});
var html_2ad1902a9d7c6f702129d05b5e1a5f2a = $(`<div id="html_2ad1902a9d7c6f702129d05b5e1a5f2a" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/Chicago-PyLadies' target='_blank'>Chicago PyLadies</a></div>`)[0];
popup_879c76d1c7f45b84e29024b754c28920.setContent(html_2ad1902a9d7c6f702129d05b5e1a5f2a);
circle_marker_09ac282c391726fe059d3bf517078501.bindPopup(popup_879c76d1c7f45b84e29024b754c28920)
;
circle_marker_09ac282c391726fe059d3bf517078501.bindTooltip(
`<div>
Chicago PyLadies
</div>`,
{
"sticky": true,
}
);
var circle_marker_b1f5de17221d0b1409c6a52262977651 = L.circleMarker(
[41.8755616, -87.6244212],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_5546e05719aead2039f95c004e0bb748);
var popup_d7b18da2639d0c4290cb3eee207a3332 = L.popup({
"maxWidth": "100%",
});
var html_7cc58a3e3e29076ef3d79a655232a84f = $(`<div id="html_7cc58a3e3e29076ef3d79a655232a84f" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/_chipy_' target='_blank'>ChiPy: Chicago's Official Python User Group</a></div>`)[0];
popup_d7b18da2639d0c4290cb3eee207a3332.setContent(html_7cc58a3e3e29076ef3d79a655232a84f);
circle_marker_b1f5de17221d0b1409c6a52262977651.bindPopup(popup_d7b18da2639d0c4290cb3eee207a3332)
;
circle_marker_b1f5de17221d0b1409c6a52262977651.bindTooltip(
`<div>
ChiPy: Chicago's Official Python User Group
</div>`,
{
"sticky": true,
}
);
marker_cluster_5546e05719aead2039f95c004e0bb748.addTo(map_58bc1a4121290f118c093550313fe7ca);
var marker_cluster_a0390b4eee6ea311a1109969df9c65e2 = L.markerClusterGroup(
{
"spiderfyOnMaxZoom": true,
"disableClusteringAtZoom": 12,
}
);
var circle_marker_f26d47164b9fe616a6dbcb9922cf6bf9 = L.circleMarker(
[42.2813722, -83.7484616],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_a0390b4eee6ea311a1109969df9c65e2);
var popup_675324cc3e6d1ce881f8df088d77c5b9 = L.popup({
"maxWidth": "100%",
});
var html_7e499c9d5eaf81b413435458f4663f82 = $(`<div id="html_7e499c9d5eaf81b413435458f4663f82" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/pydata-ann-arbor' target='_blank'>PyData Ann Arbor</a></div>`)[0];
popup_675324cc3e6d1ce881f8df088d77c5b9.setContent(html_7e499c9d5eaf81b413435458f4663f82);
circle_marker_f26d47164b9fe616a6dbcb9922cf6bf9.bindPopup(popup_675324cc3e6d1ce881f8df088d77c5b9)
;
circle_marker_f26d47164b9fe616a6dbcb9922cf6bf9.bindTooltip(
`<div>
PyData Ann Arbor
</div>`,
{
"sticky": true,
}
);
var circle_marker_59d5a52c96cdb02f45f84d89f3460ec4 = L.circleMarker(
[42.2813722, -83.7484616],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_a0390b4eee6ea311a1109969df9c65e2);
var popup_e2fb3870767b3bebffdb687367b96fa6 = L.popup({
"maxWidth": "100%",
});
var html_030feb9028368ee783020a5e74f51a35 = $(`<div id="html_030feb9028368ee783020a5e74f51a35" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/michigan-python' target='_blank'>Michigan Python</a></div>`)[0];
popup_e2fb3870767b3bebffdb687367b96fa6.setContent(html_030feb9028368ee783020a5e74f51a35);
circle_marker_59d5a52c96cdb02f45f84d89f3460ec4.bindPopup(popup_e2fb3870767b3bebffdb687367b96fa6)
;
circle_marker_59d5a52c96cdb02f45f84d89f3460ec4.bindTooltip(
`<div>
Michigan Python
</div>`,
{
"sticky": true,
}
);
marker_cluster_a0390b4eee6ea311a1109969df9c65e2.addTo(map_58bc1a4121290f118c093550313fe7ca);
var marker_cluster_e169c9181bf3756d49af74f1e8f9cc4f = L.markerClusterGroup(
{
"spiderfyOnMaxZoom": true,
"disableClusteringAtZoom": 12,
}
);
var circle_marker_3668de5b0fad55e43a31e05329c9dd88 = L.circleMarker(
[39.7392364, -104.984862],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_e169c9181bf3756d49af74f1e8f9cc4f);
var popup_888a16035db45432e8c432c2205282b0 = L.popup({
"maxWidth": "100%",
});
var html_101ab89778389301503e9a7326ef01b1 = $(`<div id="html_101ab89778389301503e9a7326ef01b1" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/PyData-Denver' target='_blank'>PyData Denver</a></div>`)[0];
popup_888a16035db45432e8c432c2205282b0.setContent(html_101ab89778389301503e9a7326ef01b1);
circle_marker_3668de5b0fad55e43a31e05329c9dd88.bindPopup(popup_888a16035db45432e8c432c2205282b0)
;
circle_marker_3668de5b0fad55e43a31e05329c9dd88.bindTooltip(
`<div>
PyData Denver
</div>`,
{
"sticky": true,
}
);
var circle_marker_daecb5d854457f4d03d9ca8f25f0b183 = L.circleMarker(
[39.7392364, -104.984862],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_e169c9181bf3756d49af74f1e8f9cc4f);
var popup_f78dd6dc67fa61b218733af2c375630c = L.popup({
"maxWidth": "100%",
});
var html_0bb7db935cd17b54607d8e9d21288b11 = $(`<div id="html_0bb7db935cd17b54607d8e9d21288b11" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/denverpython' target='_blank'>Denver Python Users Group</a></div>`)[0];
popup_f78dd6dc67fa61b218733af2c375630c.setContent(html_0bb7db935cd17b54607d8e9d21288b11);
circle_marker_daecb5d854457f4d03d9ca8f25f0b183.bindPopup(popup_f78dd6dc67fa61b218733af2c375630c)
;
circle_marker_daecb5d854457f4d03d9ca8f25f0b183.bindTooltip(
`<div>
Denver Python Users Group
</div>`,
{
"sticky": true,
}
);
marker_cluster_e169c9181bf3756d49af74f1e8f9cc4f.addTo(map_58bc1a4121290f118c093550313fe7ca);
var marker_cluster_6a2d309f66455cc0d857e9fe48526a19 = L.markerClusterGroup(
{
"spiderfyOnMaxZoom": true,
"disableClusteringAtZoom": 12,
}
);
var circle_marker_59b71a401adba87528633b5f0611988b = L.circleMarker(
[41.4996574, -81.6936772],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_6a2d309f66455cc0d857e9fe48526a19);
var popup_d9471047de9df558e1d512283dfdff4e = L.popup({
"maxWidth": "100%",
});
var html_6e6568dace83b8e2b56e22b421a6c2f3 = $(`<div id="html_6e6568dace83b8e2b56e22b421a6c2f3" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/neo-ai' target='_blank'>NEO AI - a PyData Group</a></div>`)[0];
popup_d9471047de9df558e1d512283dfdff4e.setContent(html_6e6568dace83b8e2b56e22b421a6c2f3);
circle_marker_59b71a401adba87528633b5f0611988b.bindPopup(popup_d9471047de9df558e1d512283dfdff4e)
;
circle_marker_59b71a401adba87528633b5f0611988b.bindTooltip(
`<div>
NEO AI - a PyData Group
</div>`,
{
"sticky": true,
}
);
var circle_marker_6cb92178a4bb7d330b300d96029de409 = L.circleMarker(
[41.4996574, -81.6936772],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_6a2d309f66455cc0d857e9fe48526a19);
var popup_4e83ef8faa4b8953948f24950307d4e9 = L.popup({
"maxWidth": "100%",
});
var html_ba56923bc094cea774f0bc9e16668316 = $(`<div id="html_ba56923bc094cea774f0bc9e16668316" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/cleveland-area-python-interest-group' target='_blank'>Cleveland Area Python User Group (CLEpy)</a></div>`)[0];
popup_4e83ef8faa4b8953948f24950307d4e9.setContent(html_ba56923bc094cea774f0bc9e16668316);
circle_marker_6cb92178a4bb7d330b300d96029de409.bindPopup(popup_4e83ef8faa4b8953948f24950307d4e9)
;
circle_marker_6cb92178a4bb7d330b300d96029de409.bindTooltip(
`<div>
Cleveland Area Python User Group (CLEpy)
</div>`,
{
"sticky": true,
}
);
var circle_marker_3b56b870933861b84a74d06e14ff7fd7 = L.circleMarker(
[41.4996574, -81.6936772],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_6a2d309f66455cc0d857e9fe48526a19);
var popup_1750dde5c20b461d2a9d84151c761d7e = L.popup({
"maxWidth": "100%",
});
var html_e3f1e0fb614107cdfe6c3d7425b2ebf0 = $(`<div id="html_e3f1e0fb614107cdfe6c3d7425b2ebf0" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/cle-pyladies' target='_blank'>Cleveland PyLadies</a></div>`)[0];
popup_1750dde5c20b461d2a9d84151c761d7e.setContent(html_e3f1e0fb614107cdfe6c3d7425b2ebf0);
circle_marker_3b56b870933861b84a74d06e14ff7fd7.bindPopup(popup_1750dde5c20b461d2a9d84151c761d7e)
;
circle_marker_3b56b870933861b84a74d06e14ff7fd7.bindTooltip(
`<div>
Cleveland PyLadies
</div>`,
{
"sticky": true,
}
);
marker_cluster_6a2d309f66455cc0d857e9fe48526a19.addTo(map_58bc1a4121290f118c093550313fe7ca);
var circle_marker_7cabcfec3e14b9a62017e9da1efcf16d = L.circleMarker(
[32.7762719, -96.7968559],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(map_58bc1a4121290f118c093550313fe7ca);
var popup_3e445e0b58dc9a10f9dd738695f6c90e = L.popup({
"maxWidth": "100%",
});
var html_dd44db11f6e10639c858e670b0e99ca4 = $(`<div id="html_dd44db11f6e10639c858e670b0e99ca4" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/dallas-data-engineers' target='_blank'>Dallas Data Engineers - a PyData Group</a></div>`)[0];
popup_3e445e0b58dc9a10f9dd738695f6c90e.setContent(html_dd44db11f6e10639c858e670b0e99ca4);
circle_marker_7cabcfec3e14b9a62017e9da1efcf16d.bindPopup(popup_3e445e0b58dc9a10f9dd738695f6c90e)
;
circle_marker_7cabcfec3e14b9a62017e9da1efcf16d.bindTooltip(
`<div>
Dallas Data Engineers - a PyData Group
</div>`,
{
"sticky": true,
}
);
var circle_marker_d39efa68791443fbfb88a801f20bf2fd = L.circleMarker(
[40.4406968, -80.0025666],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(map_58bc1a4121290f118c093550313fe7ca);
var popup_1c94100095bd4ac63cc2c5d1f6aefd22 = L.popup({
"maxWidth": "100%",
});
var html_fecc35215730e7208f29883fe1ff2b0f = $(`<div id="html_fecc35215730e7208f29883fe1ff2b0f" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/pydata-pittsburgh' target='_blank'>PyData Pittsburgh</a></div>`)[0];
popup_1c94100095bd4ac63cc2c5d1f6aefd22.setContent(html_fecc35215730e7208f29883fe1ff2b0f);
circle_marker_d39efa68791443fbfb88a801f20bf2fd.bindPopup(popup_1c94100095bd4ac63cc2c5d1f6aefd22)
;
circle_marker_d39efa68791443fbfb88a801f20bf2fd.bindTooltip(
`<div>
PyData Pittsburgh
</div>`,
{
"sticky": true,
}
);
var marker_cluster_96416f6b38563fcc3723e056916b8794 = L.markerClusterGroup(
{
"spiderfyOnMaxZoom": true,
"disableClusteringAtZoom": 12,
}
);
var circle_marker_76bd22c5c92a078fb05d41354712889d = L.circleMarker(
[33.7544657, -84.3898151],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_96416f6b38563fcc3723e056916b8794);
var popup_08374be2e5946bbc2e9d4e44f777a8b9 = L.popup({
"maxWidth": "100%",
});
var html_748da1df7f38b33dd37c430643bb2864 = $(`<div id="html_748da1df7f38b33dd37c430643bb2864" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/PyData-Atlanta' target='_blank'>PyData Atlanta</a></div>`)[0];
popup_08374be2e5946bbc2e9d4e44f777a8b9.setContent(html_748da1df7f38b33dd37c430643bb2864);
circle_marker_76bd22c5c92a078fb05d41354712889d.bindPopup(popup_08374be2e5946bbc2e9d4e44f777a8b9)
;
circle_marker_76bd22c5c92a078fb05d41354712889d.bindTooltip(
`<div>
PyData Atlanta
</div>`,
{
"sticky": true,
}
);
var circle_marker_d003eca80904290f8bce3ba587a4427a = L.circleMarker(
[33.7544657, -84.3898151],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_96416f6b38563fcc3723e056916b8794);
var popup_acb49be0641bc52116a5308a7480f8bf = L.popup({
"maxWidth": "100%",
});
var html_46605f85095dc1c925f49c018ca22a92 = $(`<div id="html_46605f85095dc1c925f49c018ca22a92" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/python-atlanta' target='_blank'>PyAtl: Atlanta Python Programmers</a></div>`)[0];
popup_acb49be0641bc52116a5308a7480f8bf.setContent(html_46605f85095dc1c925f49c018ca22a92);
circle_marker_d003eca80904290f8bce3ba587a4427a.bindPopup(popup_acb49be0641bc52116a5308a7480f8bf)
;
circle_marker_d003eca80904290f8bce3ba587a4427a.bindTooltip(
`<div>
PyAtl: Atlanta Python Programmers
</div>`,
{
"sticky": true,
}
);
marker_cluster_96416f6b38563fcc3723e056916b8794.addTo(map_58bc1a4121290f118c093550313fe7ca);
var marker_cluster_c7431f9386cfba05e755e7db7b6c7fb2 = L.markerClusterGroup(
{
"spiderfyOnMaxZoom": true,
"disableClusteringAtZoom": 12,
}
);
var circle_marker_0debb77d284aa526cb2635f734d0ca1f = L.circleMarker(
[43.6534817, -79.3839347],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_c7431f9386cfba05e755e7db7b6c7fb2);
var popup_d74c0dfe5c7b4a7d410ff57a1eeaec87 = L.popup({
"maxWidth": "100%",
});
var html_c87dec3da6fa6901d25b3896bd7048e7 = $(`<div id="html_c87dec3da6fa6901d25b3896bd7048e7" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/pydatato' target='_blank'>PyData Toronto</a></div>`)[0];
popup_d74c0dfe5c7b4a7d410ff57a1eeaec87.setContent(html_c87dec3da6fa6901d25b3896bd7048e7);
circle_marker_0debb77d284aa526cb2635f734d0ca1f.bindPopup(popup_d74c0dfe5c7b4a7d410ff57a1eeaec87)
;
circle_marker_0debb77d284aa526cb2635f734d0ca1f.bindTooltip(
`<div>
PyData Toronto
</div>`,
{
"sticky": true,
}
);
var circle_marker_a5c8b6c7af0f4e3fa74adcc52f8f9be5 = L.circleMarker(
[43.6534817, -79.3839347],
{"bubblingMouseEvents": true, "color": "#ee9041", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ee9041", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 0}
).addTo(marker_cluster_c7431f9386cfba05e755e7db7b6c7fb2);
var popup_85ad344c88aadfd5bf91438a26461cb2 = L.popup({
"maxWidth": "100%",
});
var html_55d9bec18005119dd639187cd0e95c75 = $(`<div id="html_55d9bec18005119dd639187cd0e95c75" style="width: 100.0%; height: 100.0%;"><a href='https://www.meetup.com/python-toronto' target='_blank'>Python Toronto</a></div>`)[0];
popup_85ad344c88aadfd5bf91438a26461cb2.setContent(html_55d9bec18005119dd639187cd0e95c75);
circle_marker_a5c8b6c7af0f4e3fa74adcc52f8f9be5.bindPopup(popup_85ad344c88aadfd5bf91438a26461cb2)
;
circle_marker_a5c8b6c7af0f4e3fa74adcc52f8f9be5.bindTooltip(
`<div>
Python Toronto
</div>`,
{
"sticky": true,
}
);
marker_cluster_c7431f9386cfba05e755e7db7b6c7fb2.addTo(map_58bc1a4121290f118c093550313fe7ca);