I\'m currently working on Rails app that is getting the following error:
You have included the Google Maps API multiple times on this page. This may ca
Adding data-turbolinks-eval="false" to the script tag will tell turbolinks not to re-evaluate it.
data-turbolinks-eval="false"
See https://github.com/turbolinks/turbolinks#working-with-script-elements
Worked in our case, where all our script tags were in as per turbolinks docs.