Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const options = {
- // Required: API key
- key: 'HIwXiNGJ1zV2P0EABJJRxzep4cjMpObc', // REPLACE WITH YOUR KEY !!!
- // Put additional console output
- verbose: true,
- // Optional: Initial state of the map
- lat: 50.4,
- lon: 14.3,
- zoom: 5,
- };
- // Initialize Windy API
- windyInit(options, windyAPI => {
- // windyAPI is ready, and contain 'map', 'store',
- // 'picker' and other usefull stuff
- const { map } = windyAPI;
- // .map is instance of Leaflet map
- L.popup()
- .setLatLng([50.4, 14.3])
- .setContent('Hi, I'm Filipe Fernandes, and this is my world.')
- .openOn(map);
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement