0
私は長い間、ソリューションを探していましたが、解決策が見つかりませんでした。phonegap jquery mobile google maps apiディスプレイグレー
私はこれらのソリューションを試しましたが、いずれも機能しませんでした。
- Google map trigger resize。
- 変更の折り返しdivの高さ、幅100%(オーバーフロー、表示、すべてのオプションの位置指定)
- GoogleマップのAPIコールバックを使用します。
私のCSSファイル
.content_location{
padding: 0;
padding-bottom: 50px;
margin: auto;
position: absolute !important;
right: 0 !important;
left: 0 !important;
width: 95%;
height: 35vh;
overflow: visible;
}
#content_location{
width: 100%;
height: 100%;
overflow: visible;
}
私JavaScriptがファイル
function showContent(index){
...
var lat= goodslist[index]['latitude'];
var lng= goodslist[index]['longitude'];
var currentmapposition= new google.maps.LatLng(lat, lng);
var mapoptions= {
center: currentmapposition,
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var infowindow= new google.maps.InfoWindow();
var latlngbounds= new google.maps.LatLngBounds();
if(!map){
map= new google.maps.Map(document.getElementById('content_location'), mapoptions);
}
else{
map.setOptions(mapoptions);
}
if(marker) marker.setMap(null);
var tmpmarker = new google.maps.Marker({
position: currentmapposition,
map: map
});
marker= tmpmarker;
google.maps.event.addListener(marker, 'click', (function(marker){
return function(){
infowindow.setContent(goodslist[index]['goodsname'] + ' : ' + goodslist[index]['address']);
infowindow.open(map, marker);
}
})(marker));
google.maps.event.trigger(map,'resize');
$('#content_location').trigger('create');
}
私のHTMLファイル
<div class="content_location">
<div id="content_location"></div>
</div>