javascript - How to include proj4js into your project -
i don't understand how include proj4.js project. following documentation should add
<script src="lib/proj4js-combined.js"></script>
in code. if add .html file .js file (in use proj4js functions) not see it. , can not add .js file .js file , not .html file.. how did it? thanks
if load them in order (in html file):
<html> <head> <script src="lib/proj4js-combined.js"></script> <script src="myfolder/js-file-with-proj4js-functions.js"></script> </head> <body> ...
then js file able see needs library.