|
0
|
1 |
from django.contrib.gis.sitemaps import GeoRSSSitemap, KMLSitemap, KMZSitemap |
|
|
2 |
from models import City, Country |
|
|
3 |
from feeds import feed_dict |
|
|
4 |
|
|
|
5 |
sitemaps = {'kml' : KMLSitemap([City, Country]), |
|
|
6 |
'kmz' : KMZSitemap([City, Country]), |
|
|
7 |
'georss' : GeoRSSSitemap(feed_dict), |
|
|
8 |
} |