Created
September 24, 2014 20:19
-
-
Save ryanisinallofus/10c1a8f4248414b4940f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
Polymer('my-directions', { | |
getDirectionsOptions: function() { | |
var directionsOptions = this.super(); | |
directionsOptions["waypoints"] = [{location:'Halifax, NS', stopover:false}, {location:'toronto, ont', stopover:false}]; | |
// other options here | |
return mapOptions; | |
} | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment