我正在使用google-maps-api开发应用。一周前一切正常,但今天,在不改变代码的情况下,它突然停止工作......
当我启动地图时,没有任何反应,我只看到我的应用背景。
的index.html
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=*myKey*">
</script>
...
<div role="main" class="ui-content" id="map-canvas"
style="position:absolute; width:100%; height:100%; "></div>
index.js
function map(x, y) {
var defaultLatLng = new google.maps.LatLng(x, y);
drawMap(defaultLatLng); // Failed to find location, show default map
function drawMap(defaultLatLng) {
var myOptions = {
zoom: 13,
center: defaultLatLng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
console.log("DRAW MAP START");
var map = new google.maps.Map(document.getElementById("map-canvas"), myOptions);
console.log("DRAW MAP END");
}
}
没有出现错误,我只得到两个输出。 我希望,你可以帮助我。
谢谢!
Ps:我尝试了一个新的Api键,但它仍然没有工作......
编辑: Im soo dump ...:D 我试过身高:200px;不料,我的css -.-
出了问题