HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URL's added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using it's URL and the proper URL extention.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAFoFzPJhgcmS4_PhDOgLqyHHB1gARh0aw&extension=.js"></script>
<script src="https://cdn.mapkit.io/v1/infobox.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,700" rel="stylesheet">
<link href="/mapstyle.css" rel="stylesheet" >
<style>
#RussellHall {
height:600px;
width:100%;
}
</style>
<div id='RussellHall'></div>
<script>
google.maps.event.addDomListener(window, 'load', init);
var map, markersArray = [];
function bindInfoWindow(marker, map, location) {
google.maps.event.addListener(marker, 'click', function() {
function close(location) {
location.ib.close();
location.infoWindowVisible = false;
location.ib = null;
}
if (location.infoWindowVisible === true) {
close(location);
} else {
markersArray.forEach(function(loc, index){
if (loc.ib && loc.ib !== null) {
close(loc);
}
});
var boxText = document.createElement('div');
boxText.style.cssText = 'background: #fff;';
boxText.classList.add('md-whiteframe-2dp');
function buildPieces(location, el, part, icon) {
if (location[part] === '') {
return '';
} else if (location.iw[part]) {
switch(el){
case 'photo':
if (location.photo){
return '<div class="iw-photo" style="background-image: url(' + location.photo + ');"></div>';
} else {
return '';
}
break;
case 'iw-toolbar':
return '<div class="iw-toolbar"><h3 class="md-subhead">' + location.title + '</h3></div>';
break;
case 'div':
switch(part){
case 'email':
return '<div class="iw-details"><i class="material-icons" style="color:#4285f4;"><img src="//cdn.mapkit.io/v1/icons/' + icon + '.svg"/></i><span><a href="mailto:' + location.email + '" target="_blank">' + location.email + '</a></span></div>';
break;
case 'web':
return '<div class="iw-details"><i class="material-icons" style="color:#4285f4;"><img src="//cdn.mapkit.io/v1/icons/' + icon + '.svg"/></i><span><a href="' + location.web + '" target="_blank">' + location.web_formatted + '</a></span></div>';
break;
case 'desc':
return '<label class="iw-desc" for="cb_details"><input type="checkbox" id="cb_details"/><h3 class="iw-x-details">Details</h3><i class="material-icons toggle-open-details"><img src="//cdn.mapkit.io/v1/icons/' + icon + '.svg"/></i><p class="iw-x-details">' + location.desc + '</p></label>';
break;
default:
return '<div class="iw-details"><i class="material-icons"><img src="//cdn.mapkit.io/v1/icons/' + icon + '.svg"/></i><span>' + location[part] + '</span></div>';
break;
}
break;
case 'open_hours':
var items = '';
if (location.open_hours.length > 0){
for (var i = 0; i < location.open_hours.length; ++i) {
if (i !== 0){
items += '<li><strong>' + location.open_hours[i].day + '</strong><strong>' + location.open_hours[i].hours +'</strong></li>';
}
var first = '<li><label for="cb_hours"><input type="checkbox" id="cb_hours"/><strong>' + location.open_hours[0].day + '</strong><strong>' + location.open_hours[0].hours +'</strong><i class="material-icons toggle-open-hours"><img src="//cdn.mapkit.io/v1/icons/keyboard_arrow_down.svg"/></i><ul>' + items + '</ul></label></li>';
}
return '<div class="iw-list"><i class="material-icons first-material-icons" style="color:#4285f4;"><img src="//cdn.mapkit.io/v1/icons/' + icon + '.svg"/></i><ul>' + first + '</ul></div>';
} else {
return '';
}
break;
}
} else {
return '';
}
}
boxText.innerHTML =
buildPieces(location, 'photo', 'photo', '') +
buildPieces(location, 'iw-toolbar', 'title', '') +
buildPieces(location, 'div', 'address', 'location_on') +
buildPieces(location, 'div', 'web', 'public') +
buildPieces(location, 'div', 'email', 'email') +
buildPieces(location, 'div', 'tel', 'phone') +
buildPieces(location, 'div', 'int_tel', 'phone') +
buildPieces(location, 'open_hours', 'open_hours', 'access_time') +
buildPieces(location, 'div', 'desc', 'keyboard_arrow_down');
var myOptions = {
alignBottom: true,
content: boxText,
disableAutoPan: true,
maxWidth: 0,
pixelOffset: new google.maps.Size(-140, -40),
zIndex: null,
boxStyle: {
opacity: 1,
width: '280px'
},
closeBoxMargin: '0px 0px 0px 0px',
infoBoxClearance: new google.maps.Size(1, 1),
isHidden: false,
pane: 'floatPane',
enableEventPropagation: false
};
location.ib = new InfoBox(myOptions);
location.ib.open(map, marker);
location.infoWindowVisible = true;
}
});
}
function init() {
var mapOptions = {
center: new google.maps.LatLng(47.657668256926485,-122.3103840002472),
zoom: 15,
gestureHandling: 'auto',
fullscreenControl: false,
zoomControl: true,
disableDoubleClickZoom: false,
mapTypeControl: true,
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR,
},
scaleControl: false,
scrollwheel: false,
streetViewControl: true,
draggable : true,
clickableIcons: false,
mapTypeId: google.maps.MapTypeId.ROADMAP,
styles:
[{"featureType":"all","elementType":"labels.text.fill","stylers":[{"saturation":36},{"color":"#333333"},{"lightness":40}]},{"featureType":"all","elementType":"labels.text.stroke","stylers":[{"visibility":"on"},{"color":"#ffffff"},{"lightness":16}]},{"featureType":"all","elementType":"labels.icon","stylers":[{"visibility":"off"}]},{"featureType":"administrative","elementType":"geometry.fill","stylers":[{"color":"#fefefe"},{"lightness":20}]},{"featureType":"administrative","elementType":"geometry.stroke","stylers":[{"color":"#fefefe"},{"lightness":17},{"weight":1.2}]},{"featureType":"landscape","elementType":"geometry","stylers":[{"color":"#f5f5f5"},{"lightness":20}]},{"featureType":"poi","elementType":"geometry","stylers":[{"color":"#f5f5f5"},{"lightness":21}]},{"featureType":"poi.park","elementType":"geometry","stylers":[{"color":"#dedede"},{"lightness":21}]},{"featureType":"road","elementType":"labels.text","stylers":[{"color":"#92c6d4"},{"gamma":"0.81"},{"weight":"0.62"}]},{"featureType":"road.highway","elementType":"geometry.fill","stylers":[{"color":"#ffffff"},{"lightness":17}]},{"featureType":"road.highway","elementType":"geometry.stroke","stylers":[{"color":"#ffffff"},{"lightness":29},{"weight":0.2}]},{"featureType":"road.arterial","elementType":"geometry","stylers":[{"color":"#ffffff"},{"lightness":18}]},{"featureType":"road.local","elementType":"geometry","stylers":[{"color":"#ffffff"},{"lightness":16}]},{"featureType":"transit","elementType":"geometry","stylers":[{"color":"#f2f2f2"},{"lightness":19}]},
{
"featureType": "poi.attraction",
"elementType": "geometry.fill",
"stylers": [
{
"visibility": "on"
}
]
},
{
"featureType": "poi.park",
"elementType": "geometry.fill",
"stylers": [
{
"visibility": "on"
},
{
"color": "#d4f1a8"
}
]
},
{
"featureType": "poi.school",
"elementType": "geometry.fill",
"stylers": [
{
"color": "#d4f1a8"
}
]
},
{
"featureType": "water",
"elementType": "geometry.fill",
"stylers": [
{
"hue": "#008aff"
},
{
"saturation": "-16"
},
{
"lightness": "59"
}
]
}
]
}
var mapElement = document.getElementById('RussellHall');
var map = new google.maps.Map(mapElement, mapOptions);
var locations = [
{"title":"Orange King","address":"","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"Closed","time":"2300","lat":47.658204,"lng":-122.31276700000001,"photo":"https://lh6.googleusercontent.com/-l6HaL2rK5Mc/VyhKDfpoIHI/AAAAAAAAAC8/ERZqwAQZ7MwHwD2VWRB7swUtRccZZcLHwCJkC/w1280-h853-k/","vicinity":"1411 Northeast 42nd Street, Seattle","open_hours":[{"day":"Monday","hours":"10:30am–9:30pm"},{"day":"Tuesday","hours":"10:30am–9:30pm"},{"day":"Wednesday","hours":"10:30am–9:30pm"},{"day":"Thursday","hours":"10:30am–9:30pm"},{"day":"Friday","hours":"10:30am–9:30pm"},{"day":"Saturday","hours":"3–9pm"},{"day":"Sunday","hours":"Closed"}],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":false,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Cafe Allegro","address":"","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"Closed","time":"2300","lat":47.6587739,"lng":-122.31269070000002,"photo":"https://lh3.googleusercontent.com/-Kp7YMOvSIrM/WLHQLGIbBbI/AAAAAAAACuc/-borV9qxZqcWvcx0e0-VYzhy0FEn8PY7QCLIB/w1280-h853-k/","vicinity":"4214 University Way Northeast, Seattle","open_hours":[{"day":"Monday","hours":"6:30am–10pm"},{"day":"Tuesday","hours":"6:30am–10pm"},{"day":"Wednesday","hours":"6:30am–10pm"},{"day":"Thursday","hours":"6:30am–10pm"},{"day":"Friday","hours":"6:30am–10pm"},{"day":"Saturday","hours":"7:30am–10pm"},{"day":"Sunday","hours":"8am–10pm"}],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":false,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Pho Than Brothers","address":"","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"Closed","time":"2300","lat":47.6585501,"lng":-122.3133057,"photo":"https://lh6.googleusercontent.com/-leiYYQW3ZzM/V_2GyA0jzDI/AAAAAAAAOS4/7nxS6evCssY4896qFCOUZ12AisUnMKAYQCJkC/w1280-h853-k/","vicinity":"4207 University Way Northeast, Seattle","open_hours":[{"day":"Monday","hours":"10am–9pm"},{"day":"Tuesday","hours":"10am–9pm"},{"day":"Wednesday","hours":"10am–9pm"},{"day":"Thursday","hours":"10am–9pm"},{"day":"Friday","hours":"10am–9pm"},{"day":"Saturday","hours":"10am–9pm"},{"day":"Sunday","hours":"10am–9pm"}],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":false,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Finn MacCool’s Irish Public House","address":"","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"Closed","time":"2300","lat":47.658867,"lng":-122.31339000000003,"photo":"https://lh4.googleusercontent.com/-7K-blL3Flxw/WNFV3VXrDmI/AAAAAAAAh9Q/PLZ9hFa04awwj6v-oxMoe2epSgUtf4vuACJkC/w1280-h853-k/","vicinity":"4217 University Way Northeast, Seattle","open_hours":[{"day":"Monday","hours":"10am–2am"},{"day":"Tuesday","hours":"10am–2am"},{"day":"Wednesday","hours":"10am–2am"},{"day":"Thursday","hours":"10am–2am"},{"day":"Friday","hours":"10am–2am"},{"day":"Saturday","hours":"10am–2am"},{"day":"Sunday","hours":"10am–2am"}],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":false,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Neptune Music Co","address":"","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"Closed","time":"2300","lat":47.661102,"lng":-122.314146,"photo":"https://lh4.googleusercontent.com/-zXzHgZqjdOg/VtEj4MC34zI/AAAAAAAALEM/KWa4XF_8LyY9sqEISstliNMotUWDIi5FACJkC/w1280-h853-k/","vicinity":"4344 Brooklyn Avenue Northeast, Seattle","open_hours":[{"day":"Monday","hours":"11am–7:30pm"},{"day":"Tuesday","hours":"11am–7:30pm"},{"day":"Wednesday","hours":"11am–7:30pm"},{"day":"Thursday","hours":"11am–7:30pm"},{"day":"Friday","hours":"11am–7:30pm"},{"day":"Saturday","hours":"11am–7:30pm"},{"day":"Sunday","hours":"Closed"}],"marker":{"fillColor":"#90CAF9","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":false,"photo":true,"tel":false,"title":true,"web":false}},{"title":"The Varsity Theatre","address":"","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"Closing soon","time":"2300","lat":47.6607164,"lng":-122.31327770000001,"photo":"https://lh6.googleusercontent.com/-17-z-rms4oQ/Vv30d_75t1I/AAAAAAABIZ0/h8mvbm7c6iAOTr7LYCWXxyudjgjob0o0wCJkC/w1280-h853-k/","vicinity":"4329 University Way Northeast, Seattle","open_hours":[{"day":"Monday","hours":"4–11:59pm","$$hashKey":"object:3712"},{"day":"Tuesday","hours":"4–11:59pm","$$hashKey":"object:3713"},{"day":"Wednesday","hours":"4–11:59pm","$$hashKey":"object:3714"},{"day":"Thursday","hours":"4–11:59pm","$$hashKey":"object:3715"},{"day":"Friday","hours":"1–11:59pm","$$hashKey":"object:3716"},{"day":"Saturday","hours":"1–11:59pm","$$hashKey":"object:3717"},{"day":"Sunday","hours":"1–11:59pm","$$hashKey":"object:3718"}],"marker":{"fillColor":"#FFD54F","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":false,"photo":true,"tel":false,"title":true,"web":false}},{"title":"University Book Store","address":"","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"Closed","time":"2300","lat":47.6604239,"lng":-122.31281839999997,"photo":"https://lh3.googleusercontent.com/-KABn1se_iYk/V8c55bfeknI/AAAAAAAAAFc/XQ6gvW05d_cUJak5gFB6Km9h7IQNXR--gCLIB/w1280-h853-k/","vicinity":"4326 University Way Northeast, Seattle","open_hours":[{"day":"Monday","hours":"9am–8pm","$$hashKey":"object:4072"},{"day":"Tuesday","hours":"9am–8pm","$$hashKey":"object:4073"},{"day":"Wednesday","hours":"9am–8pm","$$hashKey":"object:4074"},{"day":"Thursday","hours":"9am–8pm","$$hashKey":"object:4075"},{"day":"Friday","hours":"9am–8pm","$$hashKey":"object:4076"},{"day":"Saturday","hours":"10am–7pm","$$hashKey":"object:4077"},{"day":"Sunday","hours":"12–5pm","$$hashKey":"object:4078"}],"marker":{"fillColor":"#FFD54F","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":false,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Bulldog News","address":"","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"Closed","time":"2300","lat":47.6585451,"lng":-122.31307040000002,"photo":"https://lh5.googleusercontent.com/-DYGAsiYn6s4/VrP3z1tztgI/AAAAAAAAXE0/5k9swL2OI00NFVjhmJiFAcXkWmoCdWPGACJkC/w1280-h853-k/","vicinity":"4208 University Way Northeast, Seattle","open_hours":[{"day":"Monday","hours":"6:30am–7pm"},{"day":"Tuesday","hours":"6:30am–7pm"},{"day":"Wednesday","hours":"6:30am–7pm"},{"day":"Thursday","hours":"6:30am–7pm"},{"day":"Friday","hours":"6:30am–7pm"},{"day":"Saturday","hours":"8am–7pm"},{"day":"Sunday","hours":"8am–7pm"}],"marker":{"fillColor":"#90CAF9","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":false,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Cafe Solstice","address":"4116 University Way NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.657407,"lng":-122.31295999999998,"photo":"https://lh6.googleusercontent.com/--yxctUCxL1I/WGsx-NJBEGI/AAAAAAAAAW8/-hOvI5eQ2KIlbhB0V5-VG_-siH9PNlvRACLIB/w1280-h853-k/","vicinity":"4116 University Way NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Samurai Noodle","address":"4138 University Way NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.657989,"lng":-122.31307779999997,"photo":"https://lh5.googleusercontent.com/-shd0VRNjEhg/V8o3iqiqMSI/AAAAAAAAQLE/yZx-m_lzPvM4FNw3AJiBLxZ6fsu6laqlgCJkC/w1280-h853-k/","vicinity":"4138 University Way NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":true,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Sushi Town","address":"4141 University Way NE #103, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.65807579999999,"lng":-122.31336390000001,"photo":"https://lh6.googleusercontent.com/-L6FShsc0Gxc/WEyIazTZJrI/AAAAAAAAAN0/nnE5SHodZDwlf5nz-KwFTbf2gSZxK2iiwCLIB/w1280-h853-k/","vicinity":"4141 University Way NE #103, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Starbucks","address":"4147 University Way NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6582079,"lng":-122.31335389999998,"photo":"https://lh3.googleusercontent.com/-myAjPWAJElM/V5OdHCwSEeI/AAAAAAAAAS4/YxF3l5KLkgIgJ_yQoneEg2ONn9RovmBLACJkC/w1280-h853-k/","vicinity":"4147 University Way NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Flowers Bar & Restaurant","address":"4247 University Way NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6596712,"lng":-122.3133757,"photo":"https://lh3.googleusercontent.com/-2qRo3dDZE98/WBPhEJ3HHUI/AAAAAAAAa1c/3nZoO7sFDR4PLeG_7ZEch2BV6JuBFBkngCLIB/w1280-h853-k/","vicinity":"4247 University Way NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Jimmy John's","address":"4141 University Way NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6580786,"lng":-122.3135241,"photo":"https://lh6.googleusercontent.com/-czHrWRPB3E8/V699q2Hzt_I/AAAAAAAAKD0/BTPz3rJICZgci8KMd16B6iXYInlahtz_ACJkC/w1280-h853-k/","vicinity":"4141 University Way NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Bartell Drugs University Way Store","address":"4344 University Way NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6611103,"lng":-122.3129917,"photo":"https://lh4.googleusercontent.com/-MDAMofG17Ro/WBN74B7g2kI/AAAAAAAAACQ/sp7UqPxiTs8eC_BSC1LCUQv1rQYzSzoSgCLIB/w1280-h853-k/","vicinity":"4344 University Way NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#90CAF9","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Earthbound Trading Company","address":"4321 University Way NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6604896,"lng":-122.3134298,"photo":"https://lh3.googleusercontent.com/-kqmjSl5yGSk/WQQNBNoAz8I/AAAAAAAAP8c/W6BW_k8uR0QhkxIEeqWIP6uSGFwcTVRJQCJkC/w1280-h853-k/","vicinity":"4321 University Way NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#90CAF9","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Crossroads Trading Co.","address":"4300 University Way NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6599093,"lng":-122.3129763,"photo":"https://lh3.googleusercontent.com/-QqlrBxFAwtE/Vv3ztAJG_7I/AAAAAAABDXk/V8ZH5q5UGIcUAMaUFESTiqevIzNqMA_awCJkC/w1280-h853-k/","vicinity":"4300 University Way NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#90CAF9","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Magus Books","address":"1408 NE 42nd St, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.65843599999999,"lng":-122.31269900000001,"photo":"https://lh4.googleusercontent.com/-QJO4gbaM--g/WNPYmTcIbCI/AAAAAAAASJw/rhqggxyhjoEBnV1w2c3ooG-jd2CiKB-nACLIB/w1280-h853-k/","vicinity":"1408 NE 42nd St, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#90CAF9","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"University Food & Beverage","address":"4203 University Way NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.65847009999999,"lng":-122.31332199999997,"photo":"https://lh5.googleusercontent.com/-MZPLU-2oA1k/Vv2eAwBKC3I/AAAAAAABBOg/nXDmVQZyhBIqw_CBIH68byqfcwlbAGFOgCJkC/w1280-h853-k/","vicinity":"4203 University Way NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#90CAF9","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Earl's on the Ave","address":"4333 University Way NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6608235,"lng":-122.3132587,"photo":"https://lh4.googleusercontent.com/-z0WXWzvIquQ/VzLeg67W7WI/AAAAAAAAf2k/jJ0YKooOo_UZRulH9DErB7znznzDyZXUgCJkC/w1280-h853-k/","vicinity":"4333 University Way NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#CDDC39","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Meany Hall for the Performing Arts","address":"Meany Hall (Mny), Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.655709,"lng":-122.31056890000002,"photo":"https://lh5.googleusercontent.com/-OrpdVBUp8SU/Vv3LcNI5gBI/AAAAAAABDfY/eDY5CeJY8w0GpcaQQ4qWs30S5tsezMD-wCJkC/w1280-h853-k/","vicinity":"Meany Hall (Mny), Seattle, WA 98105, United States","open_hours":"","marker":{"fillColor":"#FFD54F","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Henry Art Gallery","address":"4100 15th Ave NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.65592969999999,"lng":-122.31162110000002,"photo":"https://lh6.googleusercontent.com/-S5BNNVrzEuo/VMg8qEuY31I/AAAAAAAAAAU/B2rKmi81mAwqUnn6b0xnxCrQYI6fqepCgCJkC/w1280-h853-k/","vicinity":"4100 15th Ave NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#FFD54F","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Cedars in University District","address":"4759 Brooklyn Ave NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6647389,"lng":-122.31449509999999,"photo":"https://lh4.googleusercontent.com/-Bc0hlJShalA/WEIkSZBSjtI/AAAAAAAAkOc/POkEZK0wQ7cLuo1EjzX2I3R7bfQDCXwigCLIB/w1280-h853-k/","vicinity":"4759 Brooklyn Ave NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Sizzle & Crunch","address":"1313 NE 42nd St, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.65820749999999,"lng":-122.313646,"photo":"https://lh4.googleusercontent.com/-KCWgdAKhhJU/WOAX3rRBjaI/AAAAAAAARzE/KLW_RvjlbtgO-mGjT9PUK8aINW9p3LhmQCLIB/w1280-h853-k/","vicinity":"1313 NE 42nd St, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":true,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"MOD Pizza","address":"George F. Russell Jr. Hall, 1414 NE 42nd St #103b, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6584403,"lng":-122.3125925,"photo":"https://lh5.googleusercontent.com/-tZBXth844BI/V64_WnPCYcI/AAAAAAAAAgg/ChrCDRq1iesKVe8z11lhe8UgFSD83NhKACJkC/w1280-h853-k/","vicinity":"George F. Russell Jr. Hall, 1414 NE 42nd St #103b, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Kong Tofu House","address":"George F. Russell Jr. Hall, 1414 NE 42nd St, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6584645,"lng":-122.31235709999999,"photo":"https://lh5.googleusercontent.com/-oRc7cOg2Pyk/V2XfH_h4DeI/AAAAAAAAABM/NymgfISurmw0ddIRMhfmAFj1ndkWURy2ACJkC/w1280-h853-k/","vicinity":"George F. Russell Jr. Hall, 1414 NE 42nd St, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#C0CA33","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Burke Museum of Natural History and Culture","address":"NE 45th St & 17th Ave NE, Seattle, WA 98105, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6606783,"lng":-122.31053800000001,"photo":"https://lh5.googleusercontent.com/-9cnowgiGEI0/WLNvK2HYHBI/AAAAAAAAKow/ponUc3_bGfMAyJWwTk_L8YVpNajzdDWfQCLIB/w1280-h853-k/","vicinity":"NE 45th St & 17th Ave NE, Seattle, WA 98105, United States","open_hours":[],"marker":{"fillColor":"#FFD54F","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Husky Union Building","address":"4001 E Stevens Way NE, Seattle, WA 98195, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6553893,"lng":-122.3050844,"photo":"https://lh5.googleusercontent.com/-O6pBv4rV5cU/VRrEpyditeI/AAAAAAAAAFk/TXXJp_qvfxIJISokeToYFCcf__oF19NjgCJkC/w1280-h853-k/","vicinity":"4001 E Stevens Way NE, Seattle, WA 98195, United States","open_hours":[],"marker":{"fillColor":"#FFD54F","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Husky Stadium","address":"3800 Montlake Blvd NE, Seattle, WA 98195, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6503235,"lng":-122.30157459999998,"photo":"https://lh4.googleusercontent.com/-1_hZOZsfaQI/WAFfwOFuQhI/AAAAAAAAwA0/yxyL1siUpHUUv7Sl1fF-CCUStrUderFaQCLIB/w1280-h853-k/","vicinity":"3800 Montlake Blvd NE, Seattle, WA 98195, United States","open_hours":"","marker":{"fillColor":"#FFD54F","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"UW Light Rail Station","address":"3720 Montlake Blvd NE, Seattle, WA 98195, United States","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.64981280000001,"lng":-122.3037817,"photo":"https://lh6.googleusercontent.com/-LfOYaaK9_UE/WBaGf2RwJkI/AAAAAAAAMHw/I674ZxOfc6Ii7gzwh_AY28R-5fpkfB45wCLIB/w1280-h853-k/","vicinity":"3720 Montlake Blvd NE, Seattle, WA 98195, United States","open_hours":"","marker":{"fillColor":"#FFEB3B","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},
{"title":"Stevens & Memorial Bus Station","address":"Seattle, WA 98105, USA","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6596909,"lng":-122.30882300000002,"vicinity":"United States","open_hours":"","marker":{"fillColor":"#FFEB3B","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Stevens & Pend Oreille Bus Station","address":"Seattle, WA 98105, USA","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.65687560000001,"lng":-122.30490900000001,"vicinity":"United States","open_hours":"","marker":{"fillColor":"#FFEB3B","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"Montlake & 45th Bus Station","address":"Seattle, WA 98105, USA","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.66104129999999,"lng":-122.298904,"vicinity":"United States","open_hours":"","marker":{"fillColor":"#FFEB3B","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"15th & 42nd Bus Station","address":"Seattle, WA 98105, USA","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.65865600000001,"lng":-122.31194299999999,"vicinity":"United States","open_hours":"","marker":{"fillColor":"#FFEB3B","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"University & 43rd Bus Station","address":"University Way NE & NE 43rd St, Seattle, WA 98105, USA","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6597971,"lng":-122.31318340000001,"vicinity":"University Way NE & NE 43rd St, Seattle, WA 98105, USA","open_hours":"","marker":{"fillColor":"#FFEB3B","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"University & 41st Bus Station","address":"Seattle, WA 98105, USA","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6573875,"lng":-122.3131545,"vicinity":"United States","open_hours":"","marker":{"fillColor":"#FFEB3B","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},{"title":"15th & 45th Bus Station","address":"Seattle, WA 98105, USA","desc":"","tel":"","int_tel":"","email":"","web":"","web_formatted":"","open":"","time":"","lat":47.6614876,"lng":-122.31188199999997,"vicinity":"United States","open_hours":"","marker":{"fillColor":"#FFEB3B","fillOpacity":1,"strokeWeight":0,"scale":1.5,"path":"M10.2,0C4.6,0,0,4.6,0,10.2c0,6.9,7.8,6.3,10.2,26.4c2.5-20.1,10.2-19.5,10.2-26.4C20.4,4.6,15.9,0,10.2,0z M10.2,13.9c-2.4,0-4.3-1.9-4.3-4.3s1.9-4.3,4.3-4.3s4.3,1.9,4.3,4.3C14.6,12,12.6,13.9,10.2,13.9z","anchor":{"x":10,"y":30},"origin":{"x":0,"y":0},"style":3},"iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":true,"photo":true,"tel":false,"title":true,"web":false}},
{"title":"Russell Hall","address":"1414 NE 42nd St, Seattle, WA 98105, USA","desc":"","tel":"(206) 547-0144","int_tel":"+1 206-547-0144","email":"","web":"","web_formatted":"","open":"Closed","time":"2300","lat":47.6584286,"lng":-122.31234319999999,"photo":"https://lh4.googleusercontent.com/-dwvh_S2QygY/WOQ3vHYJLYI/AAAAAAAAACg/xv6laiwI-fUgYe4fPdkPtN3EsDbCReWjACLIB/w1280-h853-k/","vicinity":"1414 Northeast 42nd Street, Seattle","open_hours":[{"day":"Monday","hours":"9am–5pm","$$hashKey":"object:5714"},{"day":"Tuesday","hours":"9am–5pm","$$hashKey":"object:5715"},{"day":"Wednesday","hours":"9am–5pm","$$hashKey":"object:5716"},{"day":"Thursday","hours":"9am–5pm","$$hashKey":"object:5717"},{"day":"Friday","hours":"9am–5pm","$$hashKey":"object:5718"},{"day":"Saturday","hours":"Closed","$$hashKey":"object:5719"},{"day":"Sunday","hours":"Closed","$$hashKey":"object:5720"}],"marker":"http://russellhallatuw.com/MapLogo.png","iw":{"address":false,"desc":false,"email":false,"enable":true,"int_tel":false,"open":true,"open_hours":false,"photo":true,"tel":false,"title":true,"web":false}}
];
for (i = 0; i < locations.length; i++) {
marker = new google.maps.Marker({
icon: locations[i].marker,
position: new google.maps.LatLng(locations[i].lat, locations[i].lng, i),
map: map,
title: locations[i].title,
address: locations[i].address,
desc: locations[i].desc,
tel: locations[i].tel,
int_tel: locations[i].int_tel,
vicinity: locations[i].vicinity,
open: locations[i].open,
open_hours: locations[i].open_hours,
photo: locations[i].photo,
time: locations[i].time,
email: locations[i].email,
web: locations[i].web,
iw: locations[i].iw
});
markersArray.push(marker);
if (locations[i].iw.enable === true){
bindInfoWindow(marker, map, locations[i]);
}
}
}
</script>
Also see: Tab Triggers