⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
usr
/
share
/
psa-horde
/
js
/
map
/
View File Name :
owm.js
/** * OpenWeatherMap layer (See http://openweathermap.org/tile_map#list) * * Copyright 2015-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (GPL). If you * did not receive this file, see http://www.fsf.org/copyleft/gpl.html. * * @author Michael J. Rubinsky
* */ HordeMap.Owm = Class.create( { initialize: function(opts) { }, getLayers: function(layer) { return { 'clouds': new OpenLayers.Layer.XYZ( 'OpenWeatherMap Cloud Map', ['http://a.tile.openweathermap.org/map/clouds/${z}/${x}/${y}.png', 'http://b.tile.openweathermap.org/map/clouds/${z}/${x}/${y}.png', 'http://c.tile.openweathermap.org/map/clouds/${z}/${x}/${y}.png'], { 'isBaseLayer': false, 'sphericalMercator': true, 'opacity': 0.5 } ), 'precipitation': new OpenLayers.Layer.XYZ( 'OpenWeatherMap Precipitation Map', ['http://a.tile.openweathermap.org/map/precipitation/${z}/${x}/${y}.png', 'http://b.tile.openweathermap.org/map/precipitation/${z}/${x}/${y}.png', 'http://c.tile.openweathermap.org/map/precipitation/${z}/${x}/${y}.png'], { 'isBaseLayer': false, 'sphericalMercator': true, 'opacity': 0.5 } ), 'rain': new OpenLayers.Layer.XYZ( 'OpenWeatherMap Rain Map', ['http://a.tile.openweathermap.org/map/rain/${z}/${x}/${y}.png', 'http://b.tile.openweathermap.org/map/rain/${z}/${x}/${y}.png', 'http://c.tile.openweathermap.org/map/rain/${z}/${x}/${y}.png'], { 'isBaseLayer': false, 'sphericalMercator': true, 'opacity': 0.5 } ), 'snow': new OpenLayers.Layer.XYZ( 'OpenWeatherMap Snow Map', ['http://a.tile.openweathermap.org/map/snow/${z}/${x}/${y}.png', 'http://b.tile.openweathermap.org/map/snow/${z}/${x}/${y}.png', 'http://c.tile.openweathermap.org/map/snow/${z}/${x}/${y}.png'], { 'isBaseLayer': false, 'sphericalMercator': true, 'opacity': 0.5 } ), 'pressure_cntr': new OpenLayers.Layer.XYZ( 'OpenWeatherMap Sea-Level Pressure Map', ['http://a.tile.openweathermap.org/map/pressure_cntr/${z}/${x}/${y}.png', 'http://b.tile.openweathermap.org/map/pressure_cntr/${z}/${x}/${y}.png', 'http://c.tile.openweathermap.org/map/pressure_cntr/${z}/${x}/${y}.png'], { 'isBaseLayer': false, 'sphericalMercator': true, 'opacity': 0.5 } ), 'wind': new OpenLayers.Layer.XYZ( 'OpenWeatherMap Wind Map', ['http://a.tile.openweathermap.org/map/wind/${z}/${x}/${y}.png', 'http://b.tile.openweathermap.org/map/wind/${z}/${x}/${y}.png', 'http://c.tile.openweathermap.org/map/wind/${z}/${x}/${y}.png'], { 'isBaseLayer': false, 'sphericalMercator': true, 'opacity': 0.5 } ) }; } });