We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I am trying to use it with an angular-cli project. I manage to import the javascript file with the instruction in my typescript source :
import * as wmts from 'assets/LeafletWMTS';
But then I got an error when creating the wmts tilelayer
L.tileLayer.wmts(urlTemplate, options)
give and error wmts does not exist in type "typeof tileLayer"
Thanks for help
The text was updated successfully, but these errors were encountered:
you don't need that plugin anymore, exemple with angular-cli: use ngx-leaflet and the code below:
ignMap = L.tileLayer('https://wxs.ign.fr/' + 'your key' + '/geoportail/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=' + 'GEOGRAPHICALGRIDSYSTEMS.MAPS.SCAN25TOUR' + '&STYLE=normal&TILEMATRIXSET=PM&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg', { opacity: 0.5 }); options = { layers: [ this.ignMap ], zoom: 15, center: L.latLng([45.419364, 5.347022]) };
Sorry, something went wrong.
No branches or pull requests
Hi,
I am trying to use it with an angular-cli project.
I manage to import the javascript file with the instruction in my typescript source :
But then I got an error when creating the wmts tilelayer
give and error wmts does not exist in type "typeof tileLayer"
Thanks for help
The text was updated successfully, but these errors were encountered: