作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Symfony 3 开发一个应用程序。我有一个 div,其中显示了 Google map 。
我正在隐藏页面
<div id="page_content" style="display: none">
</div>
然后我这样做了:
$(document).ready(function () {
$('#page_content').fadeIn('slow');
})
This let me show a little animation while the browser is creating the page's doms.
But in this way the div in which there is the map is displayed only if I press the <kbd>F12</kbd> key.
The div in which I'm displaying map:
```html
<div class="md-card-content large-padding">
<div id="displaymap">
<div>
<input id="pac-input" class="controls" type="text" placeholder="Search Box">
<div id="map-canvas" style="width: 100%; height: 375px;">
</div>
</div>
</div>
</div>
JavaScript 函数:
var init_lng = '{{ bien.longitude }}';
var init_lat = '{{ bien.latitude }}';
var marker;
googleMapApiLaunch(init_lng, init_lat);
function googleMapApiLaunch(lng, lat) {
var longitude = $('#sbc_bienbundle_bien_longitude');
var latitude = $('#sbc_bienbundle_bien_latitude');
{% if bien.id != 0 %}
longitude.val(lng);
latitude.val(lat);
{% else %}
if (lat === init_lat && lng === init_lng) {
longitude.val('');
latitude.val('');
} else {
longitude.val(lng);
latitude.val(lat);
}
{% endif %}
lat = parseFloat(lat);
lng = parseFloat(lng);
//map..
var map = new google.maps.Map(document.getElementById('map-canvas'), {
center: {
lat: lat,
lng: lng
},
zoom: 14
});
// Create the search box and link it to the UI element.
var input = document.getElementById('pac-input');
var searchBox = new google.maps.places.SearchBox(input);
map.controls[google.maps.ControlPosition.TOP_LEFT].push(input);
var markers = [];
// Bias the SearchBox results towards current map's viewport.
google.maps.event.addListener(searchBox, 'places_changed', function () {
var places = searchBox.getPlaces();
if (places.length === 0) {
return;
}
// Clear out the old markers.
markers.forEach(function (iMarker) {
iMarker.setMap(null);
});
markers = [];
// For each place, get the icon, name and location.
var bounds = new google.maps.LatLngBounds();
places.forEach(function (place) {
var icon = {
url: place.icon,
size: new google.maps.Size(71, 71),
origin: new google.maps.Point(0, 0),
anchor: new google.maps.Point(17, 34),
scaledSize: new google.maps.Size(25, 25)
};
// Create a marker for each place.
markers.push(new google.maps.Marker({
map: map,
icon: icon,
title: place.name,
position: place.geometry.location
}));
if (place.geometry.viewport) {
// Only geocodes have viewport.
bounds.union(place.geometry.viewport);
} else {
bounds.extend(place.geometry.location);
}
});
map.fitBounds(bounds);
});
//marker..
marker = new google.maps.Marker({
position: {
lat: lat,
lng: lng
},
map: map,
draggable: true
});
//dragend event of maker
google.maps.event.addListener(marker, 'dragend', function () {
//console.log(marker.getPosition());
if (ismapped.is(':checked')) {
longitude.val(marker.getPosition().lng());
latitude.val(marker.getPosition().lat());
}
});
}
我需要做什么才能让 map 显示而不删除 fadeIn('slow')
动画?
最佳答案
您立即调用 googleMapApiLaunch
...只需在 fadeIn 完成时执行即可:
$(document).ready(function () {
$('#page_content').fadeIn('slow', function() {
googleMapApiLaunch(init_lng, init_lat);
);
});
更新:因为您无法直接从主 fadeIn 方法调用 googleMapApiLaunch,所以您可以从那里触发一个事件。然后有一个事件监听器,仅在 map 页面上使用。例如
$(document).ready(function () {
$('#page_content').fadeIn('slow', function() {
$(this).trigger("fadeInComplete");
);
});
然后在你的 map 页面JS中:
$('#page_content').on('fadeInComplete', function () {
googleMapApiLaunch(init_lng, init_lat);
});
关于javascript - 谷歌地图不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44002003/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!