mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
378 B
HTML
13 lines
378 B
HTML
5 years ago
|
{% extends "gis/openlayers.html" %}
|
||
|
{% load l10n %}
|
||
|
|
||
|
{% block options %}{{ block.super }}
|
||
|
options['default_lon'] = {{ default_lon|unlocalize }};
|
||
|
options['default_lat'] = {{ default_lat|unlocalize }};
|
||
|
options['default_zoom'] = {{ default_zoom|unlocalize }};
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block base_layer %}
|
||
|
var base_layer = new ol.layer.Tile({source: new ol.source.OSM()});
|
||
|
{% endblock %}
|