The Weather Forecast Map Tiles are structured according to the Web Map Tile Service (WMTS) protocol. This makes weather tiles easily added to all the common mapping frameworks. This way you can easily integrate the Weather Forecast Tiles as an overay for any map in your product.
Whereas most weather maps show the weather forecast for a specific country or region, these tiles can be used to show the weather anywhere in the world, at any scale desired!
Tiles can be requested for either current weather or for weather at every hour up to 7 days in the future. These tiles can become the basis for any forecasting application.
Current weather data is updated every 30 minutes and new forecast data is updated every 6 hours. This happens automatically and the tiles you request always use the latest information.
No more endless lists of weather locations on your phone.
No more switching between forecast apps and maps to plan the next destination for your trip.
This weather map is designed to give you the weather forecast for up to 7 days from anywhere in the world, at any
zoom level,
and can be added on top of any existing map.
Do you want to integrate Weather Forecast Map tiles into your application? It is made available through RapidAPI for secure payment and easy monitoring of API usage.
Recommended | |||
Basic |
Pro |
Ultra |
|
Price per 1,000 tiles |
Free |
1$ |
1.5$ |
Tiles | 1,000 / day | Unlimited | Unlimited |
Rate Limit | 5 / second | 10 / second | Unlimited |
More Info | More Info | More Info |
How to add Weather Forecast Map Tiles to your project using
Leaflet:
const map = L.map('map');
L.tileLayer('https://weather-forecast-map-tiles.p.rapidapi.com/tile/{z}/{x}/{y}?rapidapi-key=YOUR_KEY&time=30&unit=metric')
.addTo(map);
OpenLayers:
const weatherTiles = new ol.source.XYZ({
url: "https://weather-forecast-map-tiles.p.rapidapi.com/tile/{z}/{x}/{y}?rapidapi-key=YOUR_KEY&time=30&unit=metric
});
const tileLayer = new ol.layer.Tile({
source: weatherTiles
});
map.addLayer(tileLayer);
Or any other framework using the url:
"https://weather-forecast-map-tiles.p.rapidapi.com/tile/{z}/{x}/{y}?rapidapi-key=YOUR_KEY&time=30&unit=metric"