这是我的 view.jsp,它只是来自 Google 的示例。在继续之前,我只想让它显示:
<%@ include file="/init.jsp" %>
<p>
<b><liferay-ui:message key="mapsportlet_mapsPortletmvcportlet.caption"/></b>
</p>
<DOCTYPE! html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
html, body {
height: 20%;
margin: 0;
padding: 0;
}
#map {
height: 20%;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDeekwNluL4ssJ3QAFGPSkFHYYQvZoNbVM&callback=initMap"
async defer></script>
</body>
</html>
我在 localhost:8080 上运行 liferay 7 的本地实例。我相信 JavaScript 正在触发,因为我没有正确设置我的 API 密钥,并且我可以在 javascript 控制台中看到它被拒绝。修复我的 API 密钥后,我不再在浏览器的控制台中看到任何错误,但在我的 Portlet 中看不到地图显示。
您发现 view.jsp 有什么问题吗?还是我应该采取另一种方式来解决这个问题?