Skip to content

Commit

Permalink
set boundaries layer properties names
Browse files Browse the repository at this point in the history
  • Loading branch information
brunosmartin committed May 1, 2018
1 parent 0e0f573 commit 5cd2fa2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mapaguarani/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@
name='protected-areas-tile'),

url(urls.tilepath(r'^tiles/cities/'),
ProtobufTileView.as_view(queryset=CtiCity.objects.all(), layer='cities'),
ProtobufTileView.as_view(queryset=CtiCity.objects.all(), layer='boundaries'),
name='cities-tile'),

url(urls.tilepath(r'^tiles/states/'),
ProtobufTileView.as_view(queryset=CtiState.objects.all(), layer='states'),
ProtobufTileView.as_view(queryset=CtiState.objects.all(), layer='boundaries'),
name='states-tile'),

url(urls.tilepath(r'^tiles/countries/'),
ProtobufTileView.as_view(queryset=CtiCountry.objects.all(), layer='countries'),
ProtobufTileView.as_view(queryset=CtiCountry.objects.all(), layer='boundaries'),
name='countries-tile'),
]

Expand Down

0 comments on commit 5cd2fa2

Please sign in to comment.