Skip to content

Instantly share code, notes, and snippets.

@bburky
Created December 1, 2013 08:04
Show Gist options
  • Save bburky/7729743 to your computer and use it in GitHub Desktop.
Save bburky/7729743 to your computer and use it in GitHub Desktop.
Map Instagram images using IPython and follium
Display the source blob
Display the rendered blob
Raw
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
"input": [
"import ConfigParser\n",
"import os\n",
"from IPython.display import HTML\n",
"import folium\n",
"import json\n",
"from instagram.client import InstagramAPI"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 1
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Put in ~/.instagram_creds the following with correct creds:\n",
"\n",
" [instagram]\n",
" secret = XXXXXXXXXXX"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Login to Instagram"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"config = ConfigParser.ConfigParser()\n",
"config.read(os.path.expanduser(\"~/.instagram_creds\"))\n",
"secrets = dict(config.items('instagram'))\n",
"\n",
"instagram = InstagramAPI(access_token=secrets['secret'])"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Define some helper functions"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Folium wants to save its maps to files on disk. This works for my purposes though, but requires HTML5 srcdoc and doesn't support all of folium's features. Should work in non-IE browsers. This also uses the private `Map._build_map` function from folium which may not be stable between versions."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def inline_map(m):\n",
" m._build_map()\n",
" return HTML('<iframe srcdoc=\"{srcdoc}\" style=\"width: 100%; height: 510px; border: none\"></iframe>'.format(srcdoc=m.HTML.replace('\"', '&quot;')))"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 3
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"For a result generate an HTML tooltip and add it to the map."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def plot_instagram(instagram_map, result):\n",
" lon = result.location.point.longitude\n",
" lat = result.location.point.latitude\n",
" html = '<a style=\"color: black; font-weight: bold\" href=\"http://instagram.com/{username}\"><img style=\"float: left; width: 60px; margin: 0 6px 6px 0\" src=\"{profile_picture}\">{full_name} ({username})</a><br><img src=\"{img}\"><br><a style=\"color: #999; display: block; text-align: right\" href=\"{link}\">{created_time}</a>'.format(\n",
" full_name = result.user.full_name.encode('ascii', 'xmlcharrefreplace'),\n",
" username = result.user.username,\n",
" profile_picture = result.user.profile_picture,\n",
" created_time = result.created_time.ctime(),\n",
" link=result.link,\n",
" img=result.images['thumbnail'].url)\n",
" escaped = json.dumps(html)[1:-1]\n",
" instagram_map.simple_marker([lat, lon], popup=escaped)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 4
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Search and map"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"These are coordinates of the center of TU."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"lat, lng = [36.1514, -95.946]"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 5
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Search Instagram using the GET /media/search api specifing lat and lng. Not sure what the maximum for `count` is. I seem to get just under 100 results with this."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"results = instagram.media_search(count=1000, lat=lat, lng=lng)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 6
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Map the results."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"instagram_map = folium.Map(location=[lat, lng], zoom_start=16)\n",
"for result in results:\n",
" plot_instagram(instagram_map, result)\n",
"inline_map(instagram_map)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<iframe srcdoc=\"<!DOCTYPE html>\n",
"<head>\n",
" <link rel=&quot;stylesheet&quot; href=&quot;http://cdn.leafletjs.com/leaflet-0.5/leaflet.css&quot; />\n",
" <script src=&quot;http://cdn.leafletjs.com/leaflet-0.5/leaflet.js&quot;></script>\n",
" \n",
" \n",
" \n",
" \n",
"\n",
"\n",
"<style>\n",
"\n",
"#map {\n",
" position:absolute;\n",
" top:0;\n",
" bottom:0;\n",
" right:0;\n",
" left:0;\n",
"}\n",
"\n",
"</style>\n",
"</head>\n",
"<body>\n",
"\n",
" <div id=&quot;map&quot; style=&quot;width: 960px; height: 500px&quot;></div>\n",
"\n",
"<script>\n",
"\n",
"\n",
"\n",
"var map = L.map('map').setView([36.1514, -95.946], 16);\n",
"\n",
"L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {\n",
" maxZoom: 18,\n",
" attribution: 'Map data (c) <a href=&quot;http://openstreetmap.org&quot;>OpenStreetMap</a> contributors'\n",
"}).addTo(map);\n",
"\n",
"\n",
"var marker_1 = L.marker([36.153052747, -95.948703066]);\n",
"marker_1.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/ahmedalsiyabi95\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_442440357_75sq_1385884517.jpg\\&quot;>&#1605;&#1608;&#1606;&#1608;&#1604;&#1608;&#1670; (ahmedalsiyabi95)</a><br><img src=\\&quot;http://distilleryimage9.s3.amazonaws.com/a0630b225a5d11e398200e56170da01a_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXw8FShZnN/\\&quot;>Sun Dec 1 07:53:12 2013</a>&quot;);\n",
"map.addLayer(marker_1)\n",
"\n",
"var marker_2 = L.marker([36.153039294, -95.948656546]);\n",
"marker_2.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/ahmedalsiyabi95\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_442440357_75sq_1385884517.jpg\\&quot;>&#1605;&#1608;&#1606;&#1608;&#1604;&#1608;&#1670; (ahmedalsiyabi95)</a><br><img src=\\&quot;http://distilleryimage8.s3.amazonaws.com/49ca67745a5d11e3acd112a47252e48b_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXwqWOBZm4/\\&quot;>Sun Dec 1 07:50:46 2013</a>&quot;);\n",
"map.addLayer(marker_2)\n",
"\n",
"var marker_3 = L.marker([36.153061884, -95.948654199]);\n",
"marker_3.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/ahmedalsiyabi95\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_442440357_75sq_1385884517.jpg\\&quot;>&#1605;&#1608;&#1606;&#1608;&#1604;&#1608;&#1670; (ahmedalsiyabi95)</a><br><img src=\\&quot;http://distilleryimage9.s3.amazonaws.com/779f00165a5c11e39e3f120abdccd260_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXv_TdhZmR/\\&quot;>Sun Dec 1 07:44:54 2013</a>&quot;);\n",
"map.addLayer(marker_3)\n",
"\n",
"var marker_4 = L.marker([36.150975, -95.943633333]);\n",
"marker_4.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/alexaknox\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_3529451_75sq_1377757299.jpg\\&quot;>Alexa Knox (alexaknox)</a><br><img src=\\&quot;http://distilleryimage4.s3.amazonaws.com/87776c765a5211e3a4ff123301a82bd2_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXn2QwRZLs/\\&quot;>Sun Dec 1 06:33:45 2013</a>&quot;);\n",
"map.addLayer(marker_4)\n",
"\n",
"var marker_5 = L.marker([36.151164849, -95.943989335]);\n",
"marker_5.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/alexaknox\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_3529451_75sq_1377757299.jpg\\&quot;>Alexa Knox (alexaknox)</a><br><img src=\\&quot;http://distilleryimage2.s3.amazonaws.com/1f4176925a5211e3a885128a5757cbf9_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXng61RZLO/\\&quot;>Sun Dec 1 06:30:50 2013</a>&quot;);\n",
"map.addLayer(marker_5)\n",
"\n",
"var marker_6 = L.marker([36.151147232, -95.943976733]);\n",
"marker_6.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/alexaknox\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_3529451_75sq_1377757299.jpg\\&quot;>Alexa Knox (alexaknox)</a><br><img src=\\&quot;http://distilleryimage7.s3.amazonaws.com/03831fdc5a5211e3aacd12e8ce7ae5be_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXnbPPRZLD/\\&quot;>Sun Dec 1 06:30:04 2013</a>&quot;);\n",
"map.addLayer(marker_6)\n",
"\n",
"var marker_7 = L.marker([36.150272167, -95.947646667]);\n",
"marker_7.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/wannabebackbencher\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_274453778_75sq_1381098107.jpg\\&quot;>Zane Cawthon (wannabebackbencher)</a><br><img src=\\&quot;http://distilleryimage2.s3.amazonaws.com/19aa0c865a5111e39c050e6131a83e4d_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXmrWEuwxO/\\&quot;>Sun Dec 1 06:23:32 2013</a>&quot;);\n",
"map.addLayer(marker_7)\n",
"\n",
"var marker_8 = L.marker([36.148997167, -95.944611667]);\n",
"marker_8.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/carlosharrissr\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_1559712_75sq_1366222716.jpg\\&quot;>Carlos \\&quot;Glossy\\&quot; Harris &#128262; (carlosharrissr)</a><br><img src=\\&quot;http://distilleryimage10.s3.amazonaws.com/00c234b05a4111e3b8c61207f57a3820_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXZfYkyaQu/\\&quot;>Sun Dec 1 04:28:18 2013</a>&quot;);\n",
"map.addLayer(marker_8)\n",
"\n",
"var marker_9 = L.marker([36.158734918, -95.938343776]);\n",
"marker_9.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/britty2495\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_241799680_75sq_1385143528.jpg\\&quot;>Brittany Havens (britty2495)</a><br><img src=\\&quot;http://distilleryimage11.s3.amazonaws.com/cc8e9aa65a3d11e3ae740ea73095e8aa_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXW3aDSSRD/\\&quot;>Sun Dec 1 04:05:22 2013</a>&quot;);\n",
"map.addLayer(marker_9)\n",
"\n",
"var marker_10 = L.marker([36.15255, -95.939575]);\n",
"marker_10.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/janinnah\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_175524603_75sq_1377423070.jpg\\&quot;>Joana de Almeida&#10024; (janinnah)</a><br><img src=\\&quot;http://distilleryimage4.s3.amazonaws.com/4fc124bc5a2e11e3bc9c1289cb7ab5b8_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXKLajx_Ic/\\&quot;>Sun Dec 1 02:14:30 2013</a>&quot;);\n",
"map.addLayer(marker_10)\n",
"\n",
"var marker_11 = L.marker([36.150375, -95.942086667]);\n",
"marker_11.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/rsm777\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_372699782_75sq_1384967545.jpg\\&quot;>Ryan Martinez (rsm777)</a><br><img src=\\&quot;http://distilleryimage9.s3.amazonaws.com/2b193a045a2a11e382810ee93d32a936_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXGyMVSrxJ/\\&quot;>Sun Dec 1 01:44:50 2013</a>&quot;);\n",
"map.addLayer(marker_11)\n",
"\n",
"var marker_12 = L.marker([36.150588833, -95.943213333]);\n",
"marker_12.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/rsm777\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_372699782_75sq_1384967545.jpg\\&quot;>Ryan Martinez (rsm777)</a><br><img src=\\&quot;http://distilleryimage8.s3.amazonaws.com/497929925a2911e3aecf122f74ca7044_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXGD-_Sr_w/\\&quot;>Sun Dec 1 01:38:32 2013</a>&quot;);\n",
"map.addLayer(marker_12)\n",
"\n",
"var marker_13 = L.marker([36.149649094, -95.944340911]);\n",
"marker_13.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/aubrey_ann\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_6520970_75sq_1377663705.jpg\\&quot;>Aubrey Ann Hercyk (aubrey_ann)</a><br><img src=\\&quot;http://distilleryimage3.s3.amazonaws.com/d7196bf25a2611e3a326128d1742166d_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXEDs_Dy4_/\\&quot;>Sun Dec 1 01:21:01 2013</a>&quot;);\n",
"map.addLayer(marker_13)\n",
"\n",
"var marker_14 = L.marker([36.15411046, -95.951206908]);\n",
"marker_14.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/antoniavwnuck\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_280080625_75sq_1376155186.jpg\\&quot;>Antonia von Wnuck (antoniavwnuck)</a><br><img src=\\&quot;http://distilleryimage3.s3.amazonaws.com/62e9def65a2611e3918e12a55282bfd1_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXDr6KCcjv/\\&quot;>Sun Dec 1 01:17:46 2013</a>&quot;);\n",
"map.addLayer(marker_14)\n",
"\n",
"var marker_15 = L.marker([36.151632913, -95.945148468]);\n",
"marker_15.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/ahmedalsiyabi95\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_442440357_75sq_1385884517.jpg\\&quot;>&#1605;&#1608;&#1606;&#1608;&#1604;&#1608;&#1670; (ahmedalsiyabi95)</a><br><img src=\\&quot;http://distilleryimage0.s3.amazonaws.com/5c996b7c5a2411e3a99c12ff1b20f24a_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hXCBwbhZpQ/\\&quot;>Sun Dec 1 01:03:17 2013</a>&quot;);\n",
"map.addLayer(marker_15)\n",
"\n",
"var marker_16 = L.marker([36.1494445, -95.948096667]);\n",
"marker_16.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/svicks91\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_330892966_75sq_1376171592.jpg\\&quot;>Samantha Vickers (svicks91)</a><br><img src=\\&quot;http://distilleryimage8.s3.amazonaws.com/8d6a103e5a1b11e398f612e173ceb082_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hW6z5VLlxI/\\&quot;>Sun Dec 1 00:00:13 2013</a>&quot;);\n",
"map.addLayer(marker_16)\n",
"\n",
"var marker_17 = L.marker([36.146555138, -95.948567195]);\n",
"marker_17.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/amandachea\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_33597184_75sq_1385013408.jpg\\&quot;>Amanda Chea (amandachea)</a><br><img src=\\&quot;http://distilleryimage6.s3.amazonaws.com/7f18d5425a1b11e3bb0e1278ed1a3b5d_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hW6w9ooiR6/\\&quot;>Sat Nov 30 23:59:49 2013</a>&quot;);\n",
"map.addLayer(marker_17)\n",
"\n",
"var marker_18 = L.marker([36.155666667, -95.945166667]);\n",
"marker_18.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/the_kersten_k\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_226130930_75sq_1383168753.jpg\\&quot;>Kersten k (the_kersten_k)</a><br><img src=\\&quot;http://distilleryimage4.s3.amazonaws.com/9ceef3605a1811e3b7a80e4fe823d780_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hW4ZyXDowo/\\&quot;>Sat Nov 30 23:39:10 2013</a>&quot;);\n",
"map.addLayer(marker_18)\n",
"\n",
"var marker_19 = L.marker([36.149727833, -95.944733333]);\n",
"marker_19.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/katie_j789\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_656737789_75sq_1384079505.jpg\\&quot;>Katie Jackson (katie_j789)</a><br><img src=\\&quot;http://distilleryimage3.s3.amazonaws.com/e854fc925a1711e3af8a12ef4638d7eb_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hW30zLK5lj/\\&quot;>Sat Nov 30 23:34:07 2013</a>&quot;);\n",
"map.addLayer(marker_19)\n",
"\n",
"var marker_20 = L.marker([36.149423341, -95.948347421]);\n",
"marker_20.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/stelviafreire\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_39673138_75sq_1382585312.jpg\\&quot;>Stelvia Freire (stelviafreire)</a><br><img src=\\&quot;http://distilleryimage6.s3.amazonaws.com/37f142f25a1711e39ef30ecb098d5c88_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hW3QrSMQ9S/\\&quot;>Sat Nov 30 23:29:12 2013</a>&quot;);\n",
"map.addLayer(marker_20)\n",
"\n",
"var marker_21 = L.marker([36.149563833, -95.943496667]);\n",
"marker_21.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/emilyc_98\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_20574797_75sq_1385867731.jpg\\&quot;>em cox.&#9875;&#65039;&#128149; (emilyc_98)</a><br><img src=\\&quot;http://distilleryimage11.s3.amazonaws.com/8c9f3a405a1511e3be76120767b6cfad_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hW15KPyvmr/\\&quot;>Sat Nov 30 23:17:15 2013</a>&quot;);\n",
"map.addLayer(marker_21)\n",
"\n",
"var marker_22 = L.marker([36.153048766, -95.948700132]);\n",
"marker_22.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/ahmedalsiyabi95\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_442440357_75sq_1385884517.jpg\\&quot;>&#1605;&#1608;&#1606;&#1608;&#1604;&#1608;&#1670; (ahmedalsiyabi95)</a><br><img src=\\&quot;http://distilleryimage2.s3.amazonaws.com/3189226a5a1511e3b2e912fba4e20b68_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hW1mgcBZkK/\\&quot;>Sat Nov 30 23:14:42 2013</a>&quot;);\n",
"map.addLayer(marker_22)\n",
"\n",
"var marker_23 = L.marker([36.1572227, -95.945081467]);\n",
"marker_23.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/peppermintfingerbangs\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_178177129_75sq_1379266135.jpg\\&quot;>Kylie (peppermintfingerbangs)</a><br><img src=\\&quot;http://distilleryimage9.s3.amazonaws.com/ccbc09c25a1111e3b73d12cdff6fa9c1_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWy0k2IUsd/\\&quot;>Sat Nov 30 22:50:24 2013</a>&quot;);\n",
"map.addLayer(marker_23)\n",
"\n",
"var marker_24 = L.marker([36.151632913, -95.945148468]);\n",
"marker_24.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/ahmedalsiyabi95\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_442440357_75sq_1385884517.jpg\\&quot;>&#1605;&#1608;&#1606;&#1608;&#1604;&#1608;&#1670; (ahmedalsiyabi95)</a><br><img src=\\&quot;http://distilleryimage10.s3.amazonaws.com/bba96e905a1111e3a5f80e94f3273902_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWyxFHBZuS/\\&quot;>Sat Nov 30 22:49:56 2013</a>&quot;);\n",
"map.addLayer(marker_24)\n",
"\n",
"var marker_25 = L.marker([36.149238833, -95.943345]);\n",
"marker_25.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/mojitous\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_556533004_75sq_1384988085.jpg\\&quot;>Mojo J (mojitous)</a><br><img src=\\&quot;http://distilleryimage2.s3.amazonaws.com/4c114f3a5a1111e396a212dd559b4989_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWyaOZLvTu/\\&quot;>Sat Nov 30 22:46:48 2013</a>&quot;);\n",
"map.addLayer(marker_25)\n",
"\n",
"var marker_26 = L.marker([36.148277105, -95.953111661]);\n",
"marker_26.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/i_love_everything_bones_447\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_629888754_75sq_1384175656.jpg\\&quot;>i_love_everything_bones_447 (i_love_everything_bones_447)</a><br><img src=\\&quot;http://distilleryimage11.s3.amazonaws.com/f03ae7ca5a1011e3be511244bbeab6f1_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWyHasOq6P/\\&quot;>Sat Nov 30 22:44:14 2013</a>&quot;);\n",
"map.addLayer(marker_26)\n",
"\n",
"var marker_27 = L.marker([36.14985007, -95.940362205]);\n",
"marker_27.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/kaelynnjustyne\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_35602468_75sq_1382468496.jpg\\&quot;>Kaelynn Lemke (kaelynnjustyne)</a><br><img src=\\&quot;http://distilleryimage11.s3.amazonaws.com/d4cf403a5a1011e3b74b1270dd981a11_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWyBzPJpYj/\\&quot;>Sat Nov 30 22:43:28 2013</a>&quot;);\n",
"map.addLayer(marker_27)\n",
"\n",
"var marker_28 = L.marker([36.148860675, -95.943603516]);\n",
"marker_28.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/meeshafree\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_272840177_75sq_1366388551.jpg\\&quot;>Michelle Freeman (meeshafree)</a><br><img src=\\&quot;http://distilleryimage9.s3.amazonaws.com/7bf1be985a1011e3bc5f0e4e836c9c84_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWxvmfAsod/\\&quot;>Sat Nov 30 22:40:59 2013</a>&quot;);\n",
"map.addLayer(marker_28)\n",
"\n",
"var marker_29 = L.marker([36.149234665, -95.944329305]);\n",
"marker_29.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/msschmaus\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/anonymousUser.jpg\\&quot;>Ms Schmaus (msschmaus)</a><br><img src=\\&quot;http://distilleryimage3.s3.amazonaws.com/bb5059c45a0f11e384d312f739c0d23a_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWxIJqO2u7/\\&quot;>Sat Nov 30 22:35:36 2013</a>&quot;);\n",
"map.addLayer(marker_29)\n",
"\n",
"var marker_30 = L.marker([36.151632913, -95.945148468]);\n",
"marker_30.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/ahmedalsiyabi95\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_442440357_75sq_1385884517.jpg\\&quot;>&#1605;&#1608;&#1606;&#1608;&#1604;&#1608;&#1670; (ahmedalsiyabi95)</a><br><img src=\\&quot;http://distilleryimage4.s3.amazonaws.com/4c92ecc25a0f11e382571237dd8c84df_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWwxeKBZqU/\\&quot;>Sat Nov 30 22:32:30 2013</a>&quot;);\n",
"map.addLayer(marker_30)\n",
"\n",
"var marker_31 = L.marker([36.151632913, -95.945148468]);\n",
"marker_31.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/mwhipple14\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_734168028_75sq_1385849844.jpg\\&quot;>Melinda Whipple (mwhipple14)</a><br><img src=\\&quot;http://distilleryimage2.s3.amazonaws.com/47b0e6505a0f11e38a2d121a7ff3b48e_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWwweIL1WS/\\&quot;>Sat Nov 30 22:32:22 2013</a>&quot;);\n",
"map.addLayer(marker_31)\n",
"\n",
"var marker_32 = L.marker([36.148860675, -95.943603516]);\n",
"marker_32.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/shawnbourdo\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_237393505_75sq_1366416917.jpg\\&quot;>Shawn Bourdo (shawnbourdo)</a><br><img src=\\&quot;http://distilleryimage10.s3.amazonaws.com/b22dd58e5a0e11e3aebc12b0053a3b07_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWwR2fNsiy/\\&quot;>Sat Nov 30 22:28:11 2013</a>&quot;);\n",
"map.addLayer(marker_32)\n",
"\n",
"var marker_33 = L.marker([36.1492195, -95.943375]);\n",
"marker_33.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/mojitous\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_556533004_75sq_1384988085.jpg\\&quot;>Mojo J (mojitous)</a><br><img src=\\&quot;http://distilleryimage9.s3.amazonaws.com/9872f4825a0c11e38cd3120e91405c8a_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWujuWrvcF/\\&quot;>Sat Nov 30 22:13:09 2013</a>&quot;);\n",
"map.addLayer(marker_33)\n",
"\n",
"var marker_34 = L.marker([36.151632913, -95.945148468]);\n",
"marker_34.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/michaelball13\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_308278261_75sq_1373004086.jpg\\&quot;>&#128519;&#127482;&#127480;Michael Ball&#128526; (michaelball13)</a><br><img src=\\&quot;http://distilleryimage11.s3.amazonaws.com/caafecfa5a0911e3a8cf0a628e3be35e_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWsQugMvi3/\\&quot;>Sat Nov 30 21:53:05 2013</a>&quot;);\n",
"map.addLayer(marker_34)\n",
"\n",
"var marker_35 = L.marker([36.148784724, -95.94424909]);\n",
"marker_35.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/allietturtle\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_9705348_75sq_1333971644.jpg\\&quot;>Allie Thomas (allietturtle)</a><br><img src=\\&quot;http://distilleryimage6.s3.amazonaws.com/60aab8625a0911e39ed7120829958d13_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWr7A1hXeW/\\&quot;>Sat Nov 30 21:50:07 2013</a>&quot;);\n",
"map.addLayer(marker_35)\n",
"\n",
"var marker_36 = L.marker([36.1464652, -95.948480023]);\n",
"marker_36.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/amandachea\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_33597184_75sq_1385013408.jpg\\&quot;>Amanda Chea (amandachea)</a><br><img src=\\&quot;http://distilleryimage7.s3.amazonaws.com/f24a88725a0611e3ab340ef324447c91_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWp7jPoiTn/\\&quot;>Sat Nov 30 21:32:43 2013</a>&quot;);\n",
"map.addLayer(marker_36)\n",
"\n",
"var marker_37 = L.marker([36.148860675, -95.943603516]);\n",
"marker_37.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/untmaplehall\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_254269248_75sq_1374191312.jpg\\&quot;>Maple Hall (untmaplehall)</a><br><img src=\\&quot;http://distilleryimage0.s3.amazonaws.com/4b07038e5a0511e3861412da7d715eee_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWok3cwmY8/\\&quot;>Sat Nov 30 21:20:53 2013</a>&quot;);\n",
"map.addLayer(marker_37)\n",
"\n",
"var marker_38 = L.marker([36.1481695, -95.943978333]);\n",
"marker_38.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/dlbsjfc\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_202004090_75sq_1382628847.jpg\\&quot;>Dusty Baker (dlbsjfc)</a><br><img src=\\&quot;http://distilleryimage1.s3.amazonaws.com/676e1ff45a0411e3bc6e1239bdb24391_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWn2QSP-yl/\\&quot;>Sat Nov 30 21:14:31 2013</a>&quot;);\n",
"map.addLayer(marker_38)\n",
"\n",
"var marker_39 = L.marker([36.148860675, -95.943603516]);\n",
"marker_39.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/michaelball13\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_308278261_75sq_1373004086.jpg\\&quot;>&#128519;&#127482;&#127480;Michael Ball&#128526; (michaelball13)</a><br><img src=\\&quot;http://distilleryimage5.s3.amazonaws.com/5e1426ba5a0411e38c000e4efbc22637_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWn0VuMvpx/\\&quot;>Sat Nov 30 21:14:15 2013</a>&quot;);\n",
"map.addLayer(marker_39)\n",
"\n",
"var marker_40 = L.marker([36.151632913, -95.945148468]);\n",
"marker_40.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/kebblack\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_4951236_75sq_1385608934.jpg\\&quot;>Kathleen Black (kebblack)</a><br><img src=\\&quot;http://distilleryimage1.s3.amazonaws.com/962d80e05a0011e3bae5122554e9122d_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWkuHNk1Sl/\\&quot;>Sat Nov 30 20:47:11 2013</a>&quot;);\n",
"map.addLayer(marker_40)\n",
"\n",
"var marker_41 = L.marker([36.1484856, -95.9531656]);\n",
"marker_41.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/kitty_meeeoowww\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_23474660_75sq_1385391956.jpg\\&quot;>Kitty_meeeoowww (kitty_meeeoowww)</a><br><img src=\\&quot;http://distilleryimage8.s3.amazonaws.com/704ac6e45a0011e3b5190ec30aeead7b_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWkmWrSNRk/\\&quot;>Sat Nov 30 20:46:08 2013</a>&quot;);\n",
"map.addLayer(marker_41)\n",
"\n",
"var marker_42 = L.marker([36.149214462, -95.944178113]);\n",
"marker_42.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/tgdreiling\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_11883959_75sq_1374809074.jpg\\&quot;>tgdreiling (tgdreiling)</a><br><img src=\\&quot;http://distilleryimage3.s3.amazonaws.com/08c4cbac59fe11e390a51214bb11cadd_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWioS4veB3/\\&quot;>Sat Nov 30 20:28:55 2013</a>&quot;);\n",
"map.addLayer(marker_42)\n",
"\n",
"var marker_43 = L.marker([36.151011167, -95.946861667]);\n",
"marker_43.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/angpyle\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_465092612_75sq_1373804021.jpg\\&quot;>Angie Carpenter Pyle (angpyle)</a><br><img src=\\&quot;http://distilleryimage0.s3.amazonaws.com/dbd87f1659f911e3b02d12f8f480b5a7_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWfNYPqNfo/\\&quot;>Sat Nov 30 19:59:02 2013</a>&quot;);\n",
"map.addLayer(marker_43)\n",
"\n",
"var marker_44 = L.marker([36.148630371, -95.944363251]);\n",
"marker_44.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/dnkelly25\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_25034066_75sq_1385186886.jpg\\&quot;>Danielle Kelly &#916;&#918; (dnkelly25)</a><br><img src=\\&quot;http://distilleryimage8.s3.amazonaws.com/9da978b259f911e38be1124d9f8f64ba_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWfApMP47Y/\\&quot;>Sat Nov 30 19:57:17 2013</a>&quot;);\n",
"map.addLayer(marker_44)\n",
"\n",
"var marker_45 = L.marker([36.158438791, -95.946891904]);\n",
"marker_45.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/gumika12\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_245493456_75sq_1384374813.jpg\\&quot;>Gulmira Zhabagina (gumika12)</a><br><img src=\\&quot;http://distilleryimage8.s3.amazonaws.com/7550fb3859f911e3a5870ad1d5d3af2d_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWe4YatgZY/\\&quot;>Sat Nov 30 19:56:10 2013</a>&quot;);\n",
"map.addLayer(marker_45)\n",
"\n",
"var marker_46 = L.marker([36.151632913, -95.945148468]);\n",
"marker_46.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/tiffanylacount\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_6161337_75sq_1310070763.jpg\\&quot;>tiffanylacount (tiffanylacount)</a><br><img src=\\&quot;http://distilleryimage5.s3.amazonaws.com/0ec0178c59f911e3972312101460c605_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWejYCFOhF/\\&quot;>Sat Nov 30 19:53:18 2013</a>&quot;);\n",
"map.addLayer(marker_46)\n",
"\n",
"var marker_47 = L.marker([36.1491555, -95.9441]);\n",
"marker_47.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/compton517\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_24787234_75sq_1329959346.jpg\\&quot;>compton517 (compton517)</a><br><img src=\\&quot;http://distilleryimage9.s3.amazonaws.com/5d833daa59f811e39120125915e24b8e_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWd_E-IuxF/\\&quot;>Sat Nov 30 19:48:20 2013</a>&quot;);\n",
"map.addLayer(marker_47)\n",
"\n",
"var marker_48 = L.marker([36.148860675, -95.943603516]);\n",
"marker_48.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/samrwalker\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_617314_75sq_1337986959.jpg\\&quot;>Sam Walker (samrwalker)</a><br><img src=\\&quot;http://distilleryimage2.s3.amazonaws.com/ad971e1259f611e3815e12cd270dc62a_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWcmnnpC7u/\\&quot;>Sat Nov 30 19:36:16 2013</a>&quot;);\n",
"map.addLayer(marker_48)\n",
"\n",
"var marker_49 = L.marker([36.148860675, -95.943603516]);\n",
"marker_49.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/matthew8295\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_10023418_75sq_1383505023.jpg\\&quot;>Matthew Tygart (matthew8295)</a><br><img src=\\&quot;http://distilleryimage3.s3.amazonaws.com/a56cc12059f511e39a601240b0ffa245_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWbwhMNW5D/\\&quot;>Sat Nov 30 19:28:52 2013</a>&quot;);\n",
"map.addLayer(marker_49)\n",
"\n",
"var marker_50 = L.marker([36.148860675, -95.943603516]);\n",
"marker_50.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/michaelball13\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_308278261_75sq_1373004086.jpg\\&quot;>&#128519;&#127482;&#127480;Michael Ball&#128526; (michaelball13)</a><br><img src=\\&quot;http://distilleryimage3.s3.amazonaws.com/2a530fc659f511e3ac54129e12f3c781_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWbXTtsvi_/\\&quot;>Sat Nov 30 19:25:26 2013</a>&quot;);\n",
"map.addLayer(marker_50)\n",
"\n",
"var marker_51 = L.marker([36.148860675, -95.943603516]);\n",
"marker_51.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/shawnbourdo\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_237393505_75sq_1366416917.jpg\\&quot;>Shawn Bourdo (shawnbourdo)</a><br><img src=\\&quot;http://distilleryimage5.s3.amazonaws.com/edea012059f411e392db12e25f465f4f_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWbK7-Nsp5/\\&quot;>Sat Nov 30 19:23:44 2013</a>&quot;);\n",
"map.addLayer(marker_51)\n",
"\n",
"var marker_52 = L.marker([36.148860675, -95.943603516]);\n",
"marker_52.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/_itslilabro\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_16849327_75sq_1384633858.jpg\\&quot;>Lila Dole (_itslilabro)</a><br><img src=\\&quot;http://distilleryimage6.s3.amazonaws.com/dae2659659f311e3916c120c289588fb_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWaSnCQ6DC/\\&quot;>Sat Nov 30 19:16:03 2013</a>&quot;);\n",
"map.addLayer(marker_52)\n",
"\n",
"var marker_53 = L.marker([36.148860675, -95.943603516]);\n",
"marker_53.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/carlosharrissr\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_1559712_75sq_1366222716.jpg\\&quot;>Carlos \\&quot;Glossy\\&quot; Harris &#128262; (carlosharrissr)</a><br><img src=\\&quot;http://distilleryimage6.s3.amazonaws.com/730e2fb859f311e3a936126cf26d5925_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWZ9WIyadG/\\&quot;>Sat Nov 30 19:13:09 2013</a>&quot;);\n",
"map.addLayer(marker_53)\n",
"\n",
"var marker_54 = L.marker([36.148860675, -95.943603516]);\n",
"marker_54.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/tcnorwood\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_175841480_75sq_1356455243.jpg\\&quot;>Tanner Norwood (tcnorwood)</a><br><img src=\\&quot;http://distilleryimage1.s3.amazonaws.com/4b2a353259f311e3bb0412471930331e_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWZ1LRlyQZ/\\&quot;>Sat Nov 30 19:12:02 2013</a>&quot;);\n",
"map.addLayer(marker_54)\n",
"\n",
"var marker_55 = L.marker([36.148860675, -95.943603516]);\n",
"marker_55.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/carlosharrissr\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_1559712_75sq_1366222716.jpg\\&quot;>Carlos \\&quot;Glossy\\&quot; Harris &#128262; (carlosharrissr)</a><br><img src=\\&quot;http://distilleryimage11.s3.amazonaws.com/02654a9e59f311e39885122d78e4e495_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWZmRcyacj/\\&quot;>Sat Nov 30 19:10:00 2013</a>&quot;);\n",
"map.addLayer(marker_55)\n",
"\n",
"var marker_56 = L.marker([36.149525, -95.944846667]);\n",
"marker_56.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/emilyc_98\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_20574797_75sq_1385867731.jpg\\&quot;>em cox.&#9875;&#65039;&#128149; (emilyc_98)</a><br><img src=\\&quot;http://distilleryimage2.s3.amazonaws.com/a82928c659f111e3bf250ee929a7ce16_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWYfXVyvhG/\\&quot;>Sat Nov 30 19:00:19 2013</a>&quot;);\n",
"map.addLayer(marker_56)\n",
"\n",
"var marker_57 = L.marker([36.150959136, -95.946567433]);\n",
"marker_57.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/michaelball13\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_308278261_75sq_1373004086.jpg\\&quot;>&#128519;&#127482;&#127480;Michael Ball&#128526; (michaelball13)</a><br><img src=\\&quot;http://distilleryimage9.s3.amazonaws.com/8d64a1b059f011e3b02d12f8f480b5a7_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWXldKsvrt/\\&quot;>Sat Nov 30 18:52:25 2013</a>&quot;);\n",
"map.addLayer(marker_57)\n",
"\n",
"var marker_58 = L.marker([36.152343284, -95.946017504]);\n",
"marker_58.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/michaelball13\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_308278261_75sq_1373004086.jpg\\&quot;>&#128519;&#127482;&#127480;Michael Ball&#128526; (michaelball13)</a><br><img src=\\&quot;http://distilleryimage1.s3.amazonaws.com/f4b1ce6659ef11e3bea912e9cead6b42_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWXGLkMvqh/\\&quot;>Sat Nov 30 18:48:08 2013</a>&quot;);\n",
"map.addLayer(marker_58)\n",
"\n",
"var marker_59 = L.marker([36.148860675, -95.943603516]);\n",
"marker_59.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/meangreenfb\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_496077289_75sq_1376884115.jpg\\&quot;>Mean Green Football (meangreenfb)</a><br><img src=\\&quot;http://distilleryimage0.s3.amazonaws.com/f451810059ef11e380730e38cba17858_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWXGGkI8oY/\\&quot;>Sat Nov 30 18:48:08 2013</a>&quot;);\n",
"map.addLayer(marker_59)\n",
"\n",
"var marker_60 = L.marker([36.148860675, -95.943603516]);\n",
"marker_60.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/rehkop\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_446683656_75sq_1376626303.jpg\\&quot;>Lucas Rehkop (rehkop)</a><br><img src=\\&quot;http://distilleryimage7.s3.amazonaws.com/55cc57ee59ef11e38320127b8422322d_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWWlo2uSVv/\\&quot;>Sat Nov 30 18:43:42 2013</a>&quot;);\n",
"map.addLayer(marker_60)\n",
"\n",
"var marker_61 = L.marker([36.149058333, -95.944121667]);\n",
"marker_61.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/rehkop\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_446683656_75sq_1376626303.jpg\\&quot;>Lucas Rehkop (rehkop)</a><br><img src=\\&quot;http://distilleryimage9.s3.amazonaws.com/04b5a1d059ef11e3a04212b20ca0275e_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWWVCBuSU9/\\&quot;>Sat Nov 30 18:41:26 2013</a>&quot;);\n",
"map.addLayer(marker_61)\n",
"\n",
"var marker_62 = L.marker([36.1479195, -95.942313333]);\n",
"marker_62.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/nuggetonkhits\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_24246411_75sq_1363309032.jpg\\&quot;>Nugget (nuggetonkhits)</a><br><img src=\\&quot;http://distilleryimage5.s3.amazonaws.com/fd4ebc3a59ec11e395700e5732f13ed1_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWUqqIFhMN/\\&quot;>Sat Nov 30 18:26:54 2013</a>&quot;);\n",
"map.addLayer(marker_62)\n",
"\n",
"var marker_63 = L.marker([36.1500805, -95.94992]);\n",
"marker_63.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/antoniavwnuck\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_280080625_75sq_1376155186.jpg\\&quot;>Antonia von Wnuck (antoniavwnuck)</a><br><img src=\\&quot;http://distilleryimage11.s3.amazonaws.com/609d8c2259ec11e3ba591293cad68979_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWUKkTCcuX/\\&quot;>Sat Nov 30 18:22:31 2013</a>&quot;);\n",
"map.addLayer(marker_63)\n",
"\n",
"var marker_64 = L.marker([36.151188833, -95.94403]);\n",
"marker_64.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/ashtonleary\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_3204660_75sq_1376484179.jpg\\&quot;>Ashton Leary (ashtonleary)</a><br><img src=\\&quot;http://distilleryimage6.s3.amazonaws.com/7a8a441e59eb11e380ff12cff1291c8a_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWTbcpSNQa/\\&quot;>Sat Nov 30 18:16:05 2013</a>&quot;);\n",
"map.addLayer(marker_64)\n",
"\n",
"var marker_65 = L.marker([36.148860675, -95.943603516]);\n",
"marker_65.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/tulsahurricanepics\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_341440447_75sq_1373680559.jpg\\&quot;>tulsahurricanepics (tulsahurricanepics)</a><br><img src=\\&quot;http://distilleryimage5.s3.amazonaws.com/2e89022c59e511e3ad1b121481e60c34_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWORTxBwGh/\\&quot;>Sat Nov 30 17:31:01 2013</a>&quot;);\n",
"map.addLayer(marker_65)\n",
"\n",
"var marker_66 = L.marker([36.147783911, -95.941873751]);\n",
"marker_66.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/nuggetonkhits\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_24246411_75sq_1363309032.jpg\\&quot;>Nugget (nuggetonkhits)</a><br><img src=\\&quot;http://distilleryimage6.s3.amazonaws.com/c0ca97e659e411e3b4c80e7f48f161ad_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hWN61WFhAW/\\&quot;>Sat Nov 30 17:27:57 2013</a>&quot;);\n",
"map.addLayer(marker_66)\n",
"\n",
"var marker_67 = L.marker([36.155833333, -95.953333333]);\n",
"marker_67.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/long707story\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_316669668_75sq_1379647499.jpg\\&quot;>Ahmed Al-hidi (long707story)</a><br><img src=\\&quot;http://distilleryimage4.s3.amazonaws.com/ee44ebac59d211e382ff12775b1718f3_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hV_UbgyPfA/\\&quot;>Sat Nov 30 15:20:22 2013</a>&quot;);\n",
"map.addLayer(marker_67)\n",
"\n",
"var marker_68 = L.marker([36.146290689, -95.952466037]);\n",
"marker_68.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/owlanddrum\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_198936406_75sq_1343246025.jpg\\&quot;>Owl And Drum (owlanddrum)</a><br><img src=\\&quot;http://distilleryimage1.s3.amazonaws.com/77c1650e59ce11e3a915121401fa8311_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hV7qcWlfwZ/\\&quot;>Sat Nov 30 14:48:25 2013</a>&quot;);\n",
"map.addLayer(marker_68)\n",
"\n",
"var marker_69 = L.marker([36.145952395, -95.952363694]);\n",
"marker_69.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/owlanddrum\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_198936406_75sq_1343246025.jpg\\&quot;>Owl And Drum (owlanddrum)</a><br><img src=\\&quot;http://distilleryimage6.s3.amazonaws.com/65531f1259c811e385290eef395711aa_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hV2sGFFf5y/\\&quot;>Sat Nov 30 14:04:57 2013</a>&quot;);\n",
"map.addLayer(marker_69)\n",
"\n",
"var marker_70 = L.marker([36.154207354, -95.951213027]);\n",
"marker_70.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/reneiii13\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_416551835_75sq_1375626620.jpg\\&quot;>Renata Kuricova (reneiii13)</a><br><img src=\\&quot;http://distilleryimage8.s3.amazonaws.com/62897930599a11e3b59a0ebb7344746f_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hVQ_zKHLFc/\\&quot;>Sat Nov 30 08:35:36 2013</a>&quot;);\n",
"map.addLayer(marker_70)\n",
"\n",
"var marker_71 = L.marker([36.153929369, -95.951301288]);\n",
"marker_71.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/reneiii13\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_416551835_75sq_1375626620.jpg\\&quot;>Renata Kuricova (reneiii13)</a><br><img src=\\&quot;http://distilleryimage9.s3.amazonaws.com/5b0c0c14599911e3abe112bbcb4e2daa_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hVQJ1jHLEh/\\&quot;>Sat Nov 30 08:28:14 2013</a>&quot;);\n",
"map.addLayer(marker_71)\n",
"\n",
"var marker_72 = L.marker([36.1484347, -95.9531674]);\n",
"marker_72.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/kitty_meeeoowww\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_23474660_75sq_1385391956.jpg\\&quot;>Kitty_meeeoowww (kitty_meeeoowww)</a><br><img src=\\&quot;http://distilleryimage7.s3.amazonaws.com/d417d5ce599011e399600eb5e76a152c_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hVJKxKSNWj/\\&quot;>Sat Nov 30 07:27:11 2013</a>&quot;);\n",
"map.addLayer(marker_72)\n",
"\n",
"var marker_73 = L.marker([36.147883333, -95.941596667]);\n",
"marker_73.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/bambam3117\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_185328188_75sq_1340401630.jpg\\&quot;>bambam3117 (bambam3117)</a><br><img src=\\&quot;http://distilleryimage6.s3.amazonaws.com/fe675b00598c11e3abff0e20f0e703f7_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hVGBt8sdfS/\\&quot;>Sat Nov 30 06:59:44 2013</a>&quot;);\n",
"map.addLayer(marker_73)\n",
"\n",
"var marker_74 = L.marker([36.147569818, -95.944182873]);\n",
"marker_74.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/tulsajenny\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_705946689_75sq_1385228179.jpg\\&quot;>Jenny Geren Cork (tulsajenny)</a><br><img src=\\&quot;http://distilleryimage5.s3.amazonaws.com/e917b534598b11e3a49812c91642242b_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hVFI7Kmmpx/\\&quot;>Sat Nov 30 06:51:59 2013</a>&quot;);\n",
"map.addLayer(marker_74)\n",
"\n",
"var marker_75 = L.marker([36.149372167, -95.947953333]);\n",
"marker_75.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/stelviafreire\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_39673138_75sq_1382585312.jpg\\&quot;>Stelvia Freire (stelviafreire)</a><br><img src=\\&quot;http://distilleryimage6.s3.amazonaws.com/28838da0598311e399e912f9d13bfdc0_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hU9-DcsQ_q/\\&quot;>Sat Nov 30 05:49:20 2013</a>&quot;);\n",
"map.addLayer(marker_75)\n",
"\n",
"var marker_76 = L.marker([36.1484705, -95.9531365]);\n",
"marker_76.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/kitty_meeeoowww\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_23474660_75sq_1385391956.jpg\\&quot;>Kitty_meeeoowww (kitty_meeeoowww)</a><br><img src=\\&quot;http://distilleryimage8.s3.amazonaws.com/9f819b66598011e3be071265523e6823_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hU75IzSNZA/\\&quot;>Sat Nov 30 05:31:11 2013</a>&quot;);\n",
"map.addLayer(marker_76)\n",
"\n",
"var marker_77 = L.marker([36.150395904, -95.948758122]);\n",
"marker_77.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/fadzli_rosli\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_519695575_75sq_1385783323.jpg\\&quot;>fadzli rosli (fadzli_rosli)</a><br><img src=\\&quot;http://distilleryimage9.s3.amazonaws.com/f9e13286596e11e3a96f12453be7651f_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hUtb7UiQI1/\\&quot;>Sat Nov 30 03:24:52 2013</a>&quot;);\n",
"map.addLayer(marker_77)\n",
"\n",
"var marker_78 = L.marker([36.156155728, -95.937559409]);\n",
"marker_78.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/ashley_pattynl\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_15236764_75sq_1384015082.jpg\\&quot;>ashley_pattynl (ashley_pattynl)</a><br><img src=\\&quot;http://distilleryimage0.s3.amazonaws.com/d672d856596211e3962312f43f382231_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hUjfhpG5To/\\&quot;>Sat Nov 30 01:57:59 2013</a>&quot;);\n",
"map.addLayer(marker_78)\n",
"\n",
"var marker_79 = L.marker([36.156189255, -95.937559661]);\n",
"marker_79.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/ashley_pattynl\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_15236764_75sq_1384015082.jpg\\&quot;>ashley_pattynl (ashley_pattynl)</a><br><img src=\\&quot;http://distilleryimage2.s3.amazonaws.com/31696ffa596211e38d3812fdbeaf1ce5_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hUi9uhm5S6/\\&quot;>Sat Nov 30 01:53:22 2013</a>&quot;);\n",
"map.addLayer(marker_79)\n",
"\n",
"var marker_80 = L.marker([36.147621, -95.952654]);\n",
"marker_80.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/jmart0923\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_179529662_75sq_1369658821.jpg\\&quot;>jmart0923 (jmart0923)</a><br><img src=\\&quot;http://distilleryimage11.s3.amazonaws.com/70385fb2595c11e3a9da12f5459fb803_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hUeQBASN8z/\\&quot;>Sat Nov 30 01:12:10 2013</a>&quot;);\n",
"map.addLayer(marker_80)\n",
"\n",
"var marker_81 = L.marker([36.154002913, -95.948576563]);\n",
"marker_81.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/taykeefe\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_247501923_75sq_1352082272.jpg\\&quot;>Taylor Keefe (taykeefe)</a><br><img src=\\&quot;http://distilleryimage11.s3.amazonaws.com/00e338a4595b11e3b0bd0a3bc8d24d2b_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hUdEyXHhP3/\\&quot;>Sat Nov 30 01:01:54 2013</a>&quot;);\n",
"map.addLayer(marker_81)\n",
"\n",
"var marker_82 = L.marker([36.154016177, -95.948516887]);\n",
"marker_82.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/taykeefe\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_247501923_75sq_1352082272.jpg\\&quot;>Taylor Keefe (taykeefe)</a><br><img src=\\&quot;http://distilleryimage4.s3.amazonaws.com/29f86012595a11e3bea912e9cead6b42_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hUcYxVnhO0/\\&quot;>Sat Nov 30 00:55:53 2013</a>&quot;);\n",
"map.addLayer(marker_82)\n",
"\n",
"var marker_83 = L.marker([36.15397975, -95.948496114]);\n",
"marker_83.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/taykeefe\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_247501923_75sq_1352082272.jpg\\&quot;>Taylor Keefe (taykeefe)</a><br><img src=\\&quot;http://distilleryimage8.s3.amazonaws.com/e9c78b26595911e38c200e1bc264082d_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hUcLoAHhOg/\\&quot;>Sat Nov 30 00:54:06 2013</a>&quot;);\n",
"map.addLayer(marker_83)\n",
"\n",
"var marker_84 = L.marker([36.1496055, -95.948386667]);\n",
"marker_84.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/svicks91\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_330892966_75sq_1376171592.jpg\\&quot;>Samantha Vickers (svicks91)</a><br><img src=\\&quot;http://distilleryimage6.s3.amazonaws.com/f416920a594c11e39b7312f78eececd9_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hURkKWrl2u/\\&quot;>Fri Nov 29 23:21:19 2013</a>&quot;);\n",
"map.addLayer(marker_84)\n",
"\n",
"var marker_85 = L.marker([36.148206262, -95.953174339]);\n",
"marker_85.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/i_love_everything_bones_447\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_629888754_75sq_1384175656.jpg\\&quot;>i_love_everything_bones_447 (i_love_everything_bones_447)</a><br><img src=\\&quot;http://distilleryimage11.s3.amazonaws.com/8f80c3f4593011e39e3c1216422729ed_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hT6TjlOq5P/\\&quot;>Fri Nov 29 19:58:05 2013</a>&quot;);\n",
"map.addLayer(marker_85)\n",
"\n",
"var marker_86 = L.marker([36.158311167, -95.94673]);\n",
"marker_86.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/gumika12\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_245493456_75sq_1384374813.jpg\\&quot;>Gulmira Zhabagina (gumika12)</a><br><img src=\\&quot;http://distilleryimage4.s3.amazonaws.com/e55a44fe592f11e398200e56170da01a_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hT5wtatgdM/\\&quot;>Fri Nov 29 19:53:19 2013</a>&quot;);\n",
"map.addLayer(marker_86)\n",
"\n",
"var marker_87 = L.marker([36.148364428, -95.953238166]);\n",
"marker_87.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/i_love_everything_bones_447\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_629888754_75sq_1384175656.jpg\\&quot;>i_love_everything_bones_447 (i_love_everything_bones_447)</a><br><img src=\\&quot;http://distilleryimage2.s3.amazonaws.com/5a96ea16592f11e3a98f123cdd6bb467_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hT5USkuq3e/\\&quot;>Fri Nov 29 19:49:26 2013</a>&quot;);\n",
"map.addLayer(marker_87)\n",
"\n",
"var marker_88 = L.marker([36.148257591, -95.953143714]);\n",
"marker_88.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/i_love_everything_bones_447\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_629888754_75sq_1384175656.jpg\\&quot;>i_love_everything_bones_447 (i_love_everything_bones_447)</a><br><img src=\\&quot;http://distilleryimage4.s3.amazonaws.com/f800f910592d11e3b7d2127ea6e65569_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hT4Lq9Oq18/\\&quot;>Fri Nov 29 19:39:32 2013</a>&quot;);\n",
"map.addLayer(marker_88)\n",
"\n",
"var marker_89 = L.marker([36.146477833, -95.94995]);\n",
"marker_89.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/jlandrum3\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_143561242_75sq_1355801599.jpg\\&quot;>jlandrum3 (jlandrum3)</a><br><img src=\\&quot;http://distilleryimage1.s3.amazonaws.com/aa76a5c8592d11e389640e102d0902b2_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hT37ymk22R/\\&quot;>Fri Nov 29 19:37:21 2013</a>&quot;);\n",
"map.addLayer(marker_89)\n",
"\n",
"var marker_90 = L.marker([36.147943223, -95.938541014]);\n",
"marker_90.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/ambersneadphotography\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_1622158_75sq_1384565452.jpg\\&quot;>Amber Snead (ambersneadphotography)</a><br><img src=\\&quot;http://distilleryimage11.s3.amazonaws.com/f6d17c96592711e3a0e20e2682207b63_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hTzQ2wob4_/\\&quot;>Fri Nov 29 18:56:33 2013</a>&quot;);\n",
"map.addLayer(marker_90)\n",
"\n",
"var marker_91 = L.marker([36.156013182, -95.937214447]);\n",
"marker_91.bindPopup(&quot;<a style=\\&quot;color: black; font-weight: bold\\&quot; href=\\&quot;http://instagram.com/ashley_pattynl\\&quot;><img style=\\&quot;float: left; width: 60px; margin: 0 6px 6px 0\\&quot; src=\\&quot;http://images.ak.instagram.com/profiles/profile_15236764_75sq_1384015082.jpg\\&quot;>ashley_pattynl (ashley_pattynl)</a><br><img src=\\&quot;http://distilleryimage6.s3.amazonaws.com/a2f43bbe592111e3b3990e08ecb8f410_5.jpg\\&quot;><br><a style=\\&quot;color: #999; display: block; text-align: right\\&quot; href=\\&quot;http://instagram.com/p/hTuFG3G5SW/\\&quot;>Fri Nov 29 18:11:15 2013</a>&quot;);\n",
"map.addLayer(marker_91)\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"</script>\n",
"\n",
"</body>\" style=\"width: 100%; height: 510px; border: none\"></iframe>"
],
"metadata": {},
"output_type": "pyout",
"prompt_number": 7,
"text": [
"<IPython.core.display.HTML at 0x1041a6910>"
]
}
],
"prompt_number": 7
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment