如何将proj4js包含到您的项目中

时间:2015-04-23 09:34:57

标签: javascript html proj4js

我真的不明白如何将proj4.js包含到我的项目中。按照文档我应该添加

<script src="lib/proj4js-combined.js"></script>
代码中的

。但是如果我将它添加到.html文件中,我的.js文件(我将在其中使用proj4js函数)将无法看到它。我无法将其添加到我的.js文件中,因为它是.js文件,而不是.html文件。 你是怎么做到的? 感谢

2 个答案:

答案 0 :(得分:0)

将其添加到您的html文件中,然后在其后添加您的其他js文件(将使用第一个js文件的文件)。

像这样:

<head>
    <script src="1stfile.js" type="text/javascript"></script>
    <script src="secondfile.js" type="text/javascript"></script>
</head> 

答案 1 :(得分:0)

如果您只是按顺序加载它们(在您的html文件中):

<html>
    <head>
        <script src="lib/proj4js-combined.js"></script>
        <script src="myfolder/js-file-with-proj4js-functions.js"></script>
    </head> 
<body>
    ...

然后你的js文件将能够从库中看到它所需的一切。