google maps httpsから表示されない?

https内のページに置いた場合、
単純に、httpsの時の場合の指定をしなければいけないだけだった。


表示されなかったケース:
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></scrip

t>

表示されたケース:
<script src="https://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></scrip

t>

読み込みページに依存する、以下の方法でも表示された。
<script src="//maps.google.com/maps/api/js?sensor=false" type="text/javascript"></scrip

t>