場所を取得し、マーカーを Google マップに表示する Web パーツがあります。今のところ、ページに表示するマップを取得しようとしていますが、それも機能していません。aspx ファイルに配置したコードは次のとおりです。
<div id="LocationWebPart">
<h3>Locations:</h3>
<hr />
<div id="LocationMap" style="width:250px;height:300;"></div>
<div id="locations">
</div>
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
<script src="/_layouts/website/scripts/gmap3.min.js" type="text/javascript" ></script>
<script type="text/JavaScript">
$(document).ready(function () {
$('#LocationMap').gmap3( {
actions: 'init',
options: {
center: [41.896254, -86.621529],
zoom: 11
}
});
});
</script>
</div>
それを test.html で実行すると、正常に動作します。Firebug は、gmap3.min.js スクリプトがあることも示しています。
また、に置き換えても何も$(document).ready()
し_spBodyOnLoadFunctionNames.push()
ません