Server IP : 85.214.239.14 / Your IP : 18.116.118.214 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /srv/modoboa/env/lib64/python3.5/site-packages/django/contrib/gis/templates/gis/ |
Upload File : |
{% load i18n l10n %} <style type="text/css">{% block map_css %}{% get_current_language_bidi as LANGUAGE_BIDI %} #{{ id }}_map { width: {{ map_width }}px; height: {{ map_height }}px; } #{{ id }}_map .aligned label { float: inherit; } #{{ id }}_div_map { position: relative; vertical-align: top; float: {{ LANGUAGE_BIDI|yesno:"right,left" }}; } {% if not display_raw %}#{{ id }} { display: none; }{% endif %} {% endblock %} </style> <div id="{{ id }}_div_map"> <div id="{{ id }}_map"></div> {% if not disabled %}<span class="clear_features"><a href="javascript:{{ module }}.clearFeatures()">{% trans "Delete all Features" %}</a></span>{% endif %} {% if display_raw %}<p>{% trans "Debugging window (serialized value)" %}</p>{% endif %} <textarea id="{{ id }}" class="vSerializedField required" cols="150" rows="10" name="{{ name }}">{{ serialized }}</textarea> <script type="text/javascript"> {% block map_options %}var map_options = {};{% endblock %} {% block base_layer %} var base_layer = new ol.layer.Tile({ source: new ol.source.XYZ({ attributions: "NASA Worldview", maxZoom: 8, url: "https://map1{a-c}.vis.earthdata.nasa.gov/wmts-webmerc/" + "BlueMarble_ShadedRelief_Bathymetry/default/%7BTime%7D/" + "GoogleMapsCompatible_Level8/{z}/{y}/{x}.jpg" }) }); {% endblock %} {% block options %}var options = { base_layer: base_layer, geom_name: '{{ geom_type }}', id: '{{ id }}', map_id: '{{ id }}_map', map_options: map_options, map_srid: {{ map_srid|unlocalize }}, name: '{{ name }}' }; {% endblock %} var {{ module }} = new MapWidget(options); </script> </div>