私はグーグルマップに問題があります..ケースは、マップ全体をロードせず、マップの一部のみをロードし、残りはすでに空白になっています..何が問題である可能性がありますか?..
これがコードです。
<div id="map_addresses" class="map">
<p>This will be replaced with the Google Map.</p>
</div>
$(function()
{
$('#map_addresses').gMap({
controls: {
panControl: true,
zoomControl: true,
mapTypeControl: true,
scaleControl: true,
streetViewControl: true,
},
scrollwheel: true,
zoom: 5,
maptype: 'ROADMAP',
markers:[
{
latitude: 10.318577,
longitude: 123.908062,
html: "Jinisys Software Inc. Sales Office"
},
{
latitude: 10.324213,
longitude: 123.911546,
html: "Jinisys Software Inc. Main Office"
}
]
});
}