diff --git a/django/contrib/gis/admin/options.py b/django/contrib/gis/admin/options.py
index 4732e73..f709056 100644
a
|
b
|
class GeoModelAdmin(ModelAdmin):
|
33 | 33 | map_template = 'gis/admin/openlayers.html' |
34 | 34 | openlayers_url = 'http://openlayers.org/api/2.11/OpenLayers.js' |
35 | 35 | point_zoom = num_zoom - 6 |
36 | | wms_url = 'http://labs.metacarta.com/wms/vmap0' |
| 36 | wms_url = 'http://vmap0.tiles.osgeo.org/wms/vmap0' |
37 | 37 | wms_layer = 'basic' |
38 | 38 | wms_name = 'OpenLayers WMS' |
39 | 39 | debug = False |
diff --git a/docs/ref/contrib/gis/tutorial.txt b/docs/ref/contrib/gis/tutorial.txt
index eebd50a..ade5cd8 100644
a
|
b
|
the vertexes to the desired position.
|
755 | 755 | .. _OpenLayers: http://openlayers.org/ |
756 | 756 | .. _Open Street Map: http://openstreetmap.org/ |
757 | 757 | .. _Vector Map Level 0: http://earth-info.nga.mil/publications/vmap0.html |
758 | | .. _Metacarta: http://metacarta.com |
| 758 | .. _OSGeo: http://www.osgeo.org |
759 | 759 | |
760 | 760 | .. _osmgeoadmin-intro: |
761 | 761 | |
… |
… |
With the :class:`~django.contrib.gis.admin.OSMGeoAdmin`, GeoDjango uses
|
766 | 766 | a `Open Street Map`_ layer in the admin. |
767 | 767 | This provides more context (including street and thoroughfare details) than |
768 | 768 | available with the :class:`~django.contrib.gis.admin.GeoModelAdmin` |
769 | | (which uses the `Vector Map Level 0`_ WMS data set hosted at `Metacarta`_). |
| 769 | (which uses the `Vector Map Level 0`_ WMS data set hosted at `OSGeo`_). |
770 | 770 | |
771 | 771 | First, there are some important requirements and limitations: |
772 | 772 | |