私はページを持っています、そして最初にグーグルマップは隠されたdivの中にあります。リンクをクリックした後、divを表示しますが、マップの左上だけが表示されます。
クリック後にこのコードを実行してみました:
map0.onResize();
または:
google.maps.event.trigger(map0, 'resize')
何か案は。これは、非表示のマップを含むdivを表示した後の画像です。
私はページを持っています、そして最初にグーグルマップは隠されたdivの中にあります。リンクをクリックした後、divを表示しますが、マップの左上だけが表示されます。
クリック後にこのコードを実行してみました:
map0.onResize();
または:
google.maps.event.trigger(map0, 'resize')
何か案は。これは、非表示のマップを含むdivを表示した後の画像です。
回答:
自分でテストしたところ、次のように取り組みました。かなり簡単です。説明が必要な場合はお知らせください
HTML
<div id="map_canvas" style="width:700px; height:500px; margin-left:80px;" ></div>
<button onclick="displayMap()">Show Map</button>
CSS
<style type="text/css">
#map_canvas {display:none;}
</style>
JavaScript
<script>
function displayMap()
{
document.getElementById( 'map_canvas' ).style.display = "block";
initialize();
}
function initialize()
{
// create the map
var myOptions = {
zoom: 14,
center: new google.maps.LatLng( 0.0, 0.0 ),
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map( document.getElementById( "map_canvas" ),myOptions );
}
</script>
私は同じ問題を抱えていましたが、divを表示するときに電話をかけるgoogle.maps.event.trigger(map, 'resize');
と問題が解決するようです。
google.maps.event.trigger($("#div_ID")[0], 'resize');
利用可能な変数マップがない場合は、div
GMAPを含むの最初の要素(愚かなことをしない限り)にする必要があります。
ブートストラップタブ内にGoogleマップがありましたが、正しく表示されませんでした。これは私の修正でした。
// Previously stored my map object(s) in googleMaps array
$('a[href="#profileTab"]').on('shown', function() { // When tab is displayed...
var map = googleMaps[0],
center = map.getCenter();
google.maps.event.trigger(map, 'resize'); // fixes map display
map.setCenter(center); // centers map correctly
});
'a[href="#profileTab"]'
しましstep-2
た。
呼び出すだけでは不十分google.maps.event.trigger(map, 'resize');
です。マップの中心もリセットする必要があります。
var map;
var initialize= function (){
...
}
var resize = function () {
if (typeof(map) == "undefined") {) {
// initialize the map. You only need this if you may not have initialized your map when resize() is called.
initialize();
} else {
// okay, we've got a map and we need to resize it
var center = map.getCenter();
google.maps.event.trigger(map, 'resize');
map.setCenter(center);
}
}
Angular(ng-showまたはui-bootstrap collapse)
$ watchはng-showが更新される前に起動できるので(divは非表示のままであるため)、ng-showにバインドされた値ではなく、要素の可視性に直接バインドします。
scope.$watch(function () { return element.is(':visible'); },
function () {
resize();
}
);
jQuery .show()
組み込みのコールバックを使用する
$("#myMapDiv").show(speed, function() { resize(); });
ブートストラップ3モーダル
$('#myModal').on('shown.bs.modal', function() {
resize();
})
iframeコードをコピーして貼り付けてGoogleマップを挿入し、Google Maps APIを使用したくない場合、これは簡単な解決策です。非表示のマップを表示するときに、次のJavaScript行を実行するだけです。iframe HTMLコードを取得して同じ場所に挿入するだけなので、再度レンダリングされます。
document.getElementById("map-wrapper").innerHTML = document.getElementById("map-wrapper").innerHTML;
jQueryバージョン:
$('#map-wrapper').html( $('#map-wrapper').html() );
HTML:
....
<div id="map-wrapper"><iframe src="https://www.google.com/maps/..." /></div>
....
次の例は、Bootstrap 3タブで最初に非表示にされたマップに対して機能します。
<script>
$(document).ready( function() {
/* Detects when the tab is selected */
$('a[href="#tab-id"]').on('shown.bs.tab', function() {
/* When the tab is shown the content of the wrapper
is regenerated and reloaded */
$('#map-wrapper').html( $('#map-wrapper').html() );
});
});
</script>
https://www.google.com/maps/embed/v1/place?..
同じ問題がありましたgoogle.maps.event.trigger(map, 'resize')
が、うまくいきませんでした。
私がやったことは、タイマーを表示して地図を更新した後に地図を更新することでしたdiv
...
//CODE WORKING
var refreshIntervalId;
function showMap() {
document.getElementById('divMap').style.display = '';
refreshIntervalId = setInterval(function () { updateMapTimer() }, 300);
}
function updateMapTimer() {
clearInterval(refreshIntervalId);
var map = new google.maps.Map(....
....
}
それがより便利な方法かどうかはわかりませんが、うまくいきます!
jQueryを使用すると、次のようなことができます。これにより、すぐには表示されないタブにあるUmbraco CMSでGoogleマップを読み込むことができました。
function waitForVisibleMapElement() {
setTimeout(function () {
if ($('#map_canvas').is(":visible")) {
// Initialize your Google Map here
} else {
waitForVisibleMapElement();
};
}, 100);
};
waitForVisibleMapElement();
私のソリューションは非常にシンプルで効率的です:
HTML
<div class="map-wrap">
<div id="map-canvas"></div>
</div>
CSS
.map-wrap{
height:0;
width:0;
overflow:hidden;
}
jquery
$('.map-wrap').css({ height: 'auto', width: 'auto' }); //For showing your map
$('.map-wrap').css({ height: 0, width: 0 }); //For hiding your map
私の解決策は:
CSS:
.map {
height: 400px;
border: #ccc solid 1px;
}
jQuery:
$('.map').width(555); // width of map canvas
非表示のdivが表示された後にのみマップが読み込まれるのが好きではありませんでした。たとえば、カルーセルでは、それは実際には機能しません。
この私の解決策は、非表示要素にクラスを追加して非表示にし、代わりに絶対位置で非表示にしてから、マップをレンダリングし、マップのロード後にクラスを削除することです。
ブートストラップカルーセルでテスト済み。
HTML
<div class="item loading"><div id="map-canvas"></div></div>
CSS
.loading { display: block; position: absolute; }
JS
$(document).ready(function(){
// render map //
google.maps.event.addListenerOnce(map, 'idle', function(){
$('.loading').removeClass('loading');
});
}
マップを表示する場合は、このコード行を使用してください。
$("#map_view").show("slow"); // use id of div which you want to show.
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&callback=initialize";
document.body.appendChild(script);
最初の投稿。私のgoogleMap divは、タブがクリックされるまで、{display:none}のコンテナーdiv内にありました。OPと同じ問題がありました。これは私のために働きました:
google.maps.event.addDomListener(window, 'load', setTimeout(initialize, 1));
このコードをコードの内側と末尾に貼り付けます。コンテナーのdivタブがクリックされ、非表示のdivが表示されます。重要なことは、initializeを呼び出す前にコンテナーdivを表示する必要があるということです。
ここや他のページで提案されているいくつかの解決策を試しましたが、うまくいきませんでした。これで問題が解決するかどうかお知らせください。ありがとう。
このコードをdivの前に追加するか、それをjsファイルに渡します。
<script>
$(document).on("pageshow","#div_name",function(){
initialize();
});
function initialize() {
// create the map
var myOptions = {
zoom: 14,
center: new google.maps.LatLng(0.0, 0.0),
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("div_name"), myOptions);
}
</script>
このイベントはdivが読み込まれた後にトリガーされるため、F5キーを押す必要なくマップコンテンツを更新します
地図を表示したら、住所をジオコーディングしてから地図の中心を設定します。google.maps.event.trigger(map, 'resize');
私のために動作しませんでした。
私は使用しなければなりませんでした map.setZoom(14);
以下のコード:
document.getElementById('map').style.display = 'block';
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'address': input.value }, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker2 = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
map.setZoom(14);
marker2.addListener('dragend', function (event) {
$('#lat').val(event.latLng.lat());
$('#lng').val(event.latLng.lng());
});
}
});
function init_map() {
var myOptions = {
zoom: 16,
center: new google.maps.LatLng(0.0, 0.0),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('gmap_canvas'), myOptions);
marker = new google.maps.Marker({
map: map,
position: new google.maps.LatLng(0.0, 0.0)
});
infowindow = new google.maps.InfoWindow({
content: 'content'
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map, marker);
});
infowindow.open(map, marker);
}
google.maps.event.addDomListener(window, 'load', init_map);
jQuery(window).resize(function() {
init_map();
});
jQuery('.open-map').on('click', function() {
init_map();
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src='https://maps.googleapis.com/maps/api/js?v=3.exp'></script>
<button type="button" class="open-map"></button>
<div style='overflow:hidden;height:250px;width:100%;'>
<div id='gmap_canvas' style='height:250px;width:100%;'></div>
</div>