You have the wrong formatting and possibly bad options:
<script>src="http://maps.googleapis.com/maps/api/js?key=MY_API_KEY=TRUE"></script>
should look something like this:
<script src="http://maps.googleapis.com/maps/api/js?key=MY_API_KEY&sensor=TRUE"></script>
make sure to MY_API_KEYreplace it with your Google Map API key or just ignore this option if you don't need it. Not sure what you want sensorup to TRUE, I just guessed since you had the orphan option=TRUE
source
share