Skip to content

Commit 621c849

Browse files
Adding PyData Delhi
1 parent 9ae0660 commit 621c849

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

pandas/index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,22 @@ <h3 class="section-title">Locations</h3>
233233
}
234234
);
235235

236+
var pydata_delhi = new google.maps.Marker({
237+
title: "Delhi",
238+
html: "PyData Delhi<br><a href=\"https://www.meetup.com/PyDataDelhi/\">Website</a>",
239+
position: {lat: 28.617024,
240+
lng: 77.2078168},
241+
map: map
242+
});
243+
google.maps.event.addListener(
244+
pydata_delhi,
245+
'click',
246+
function(){
247+
infowindow.setContent(this.html);
248+
infowindow.open(map,this);
249+
}
250+
);
251+
236252
}
237253
</script>
238254
<script async defer with="100%" height="450px"

0 commit comments

Comments
 (0)