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.


Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -