UsageΒΆ

To use django geohash cluster in a project, add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'geohash_cluster.apps.GeohashClusterConfig',
    ...
)

Add django geohash cluster’s URL patterns:

from geohash_cluster import urls as geohash_cluster_urls


urlpatterns = [
    ...
    url(r'^', include(geohash_cluster_urls)),
    ...
]