Skip to content

Instantly share code, notes, and snippets.

@kelso
Last active December 18, 2015 22:19
Show Gist options
  • Save kelso/5854200 to your computer and use it in GitHub Desktop.
Save kelso/5854200 to your computer and use it in GitHub Desktop.
<iframe {{bindAttr href="view.src"}}></iframe>
<!--
I'm getting this src:
href="http://maps.google.com/maps?q=undefined,undefined&amp;num=1&amp;ie=UTF8&amp;t=m&amp;z=14&amp;output=embed"
-->
Checkin.PlaceView = Ember.View.extend({
templateName: 'place',
src: (function() {
return "http://maps.google.com/maps?q=" + this.get('latitude') + "," + this.get('longitude') + "&amp;num=1&amp;ie=UTF8&amp;t=m&amp;z=14&amp;output=embed"
}).property("src")
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment