/django/contrib/gis/templates/gis/google/google-map.html
HTML | 12 lines | 12 code | 0 blank | 0 comment | 0 complexity | c709bbe4cd20227ea89ceea35a2d7f25 MD5 | raw file
Possible License(s): BSD-3-Clause
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2<html xmlns="http://www.w3.org/1999/xhtml" {{ gmap.xmlns }}> 3<head> 4 <title>{% block title %}Google Maps via GeoDjango{% endblock %}</title> 5 {{ gmap.style }} 6 {{ gmap.scripts }} 7</head> 8<body {{ gmap.onload }} {{ gmap.onunload }}> 9{% if gmap.dom_ids %}{% for dom_id in gmap.dom_ids %}<div id="{{ dom_id }}" style="width:600px;height:400px;"></div>{% endfor %} 10{% else %}<div id="{{ gmap.dom_id }}" style="width:600px;height:400px;"></div>{% endif %} 11</body> 12</html>