我在代码中包含 proj4.js JavaScript库时遇到问题。代码如下所示:
<!DOCTYPE html>
<html>
<head>
<title>Proj4js Testing</title>
</head>
<body onload="convertCoordinates()">
<script type="text/javascript" src="proj4.js">
function convertCoordinates() {
var sourceProjection = "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs";
var targetProjection = "+proj=utm +zone=33 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs";
proj4(sourceProjection, targetProjection, [15, 55]);
alert("Done!");
}
</script>
</body>
</html>
但它从来没有给我一条消息说“完成!”。我对JavaScript知之甚少,但我在这段代码中看不到问题。我跟着the user guide on GitHub。
答案 0 :(得分:3)
他们需要分开<script>
个标签:
<script type="text/javascript" src="proj4.js"></script>
<script type="text/javascript" >
function convertCoordinates() {
var sourceProjection = "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs";
var targetProjection = "+proj=utm +zone=33 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs";
proj4(sourceProjection, targetProjection, [15, 55]);
alert("Done!");
}
</script>
答案 1 :(得分:3)
您无法将内联JavaScript代码与外部加载的脚本结合使用。相反,只需将脚本分成两个单独的块:
<script type="text/javascript" src="proj4.js"></script>
<script type="text/javascript">
function convertCoordinates() {
var sourceProjection = "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs";
var targetProjection = "+proj=utm +zone=33 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs";
proj4(sourceProjection, targetProjection, [15, 55]);
alert("Done!");
}
</script>