postgis mvt矢量切片 django drf mapboxgl

目录

0.前提

1.sql代码

2.django drf后端服务代码

3.具体的应用(整体代码)


        [1] 静态矢量切片可以采用 tippecanoe 生成nginx代理,这种数据是不更新的;

        [2] 动态的矢量切片,一般采用postgis生成基本上矢量切片80%的厂商采用postgis,确实好用!不谈商业的。

        [3] postgis矢量切片使用到的函数ST_AsMVTST_AsMVTGeomST_TileEnvelopeST_TransformST_IntersectsST_SRID。(点击查看每个函数介绍,都是官网文档,很详细

        [4] postgis api参考文档官网Official Manual | PostGIS,有postgis3.0版本以上的,点击html,点击8. PostGIS Reference即可查看矢量处理函数。        

        [5] 矢量切片mvt需要坐标为EPSG:3857,如果想用mvt这种开源标准,就使用ST_Transform统一转换成这个坐标然后入库的数据都设置成EPSG:4326。

        [1] 获取表的字段名称:(zzz替换成传入的表名)【PS:不建议动态查询将1-2结合,不好】

        select column_name from information_schema.columns where table_name=’zzz’;

        [2] 动态获取矢量切片: (1.0.0)替换成传入的z,x,y参数,zzz替换成传入的表名geom替换成geom几何对应字段名称。       

with mvtgeom as (
select ST_AsMVTGeom(ST_Transform(geom, 3857), ST_TileEnvelope(1,0,0)) as geom, gid 
    from 
    zzz, 
    (select ST_SRID(geom) as srid from zzz where geom is not null limit 1) a
    where
      ST_Intersects(geom, ST_Transform(ST_TileEnvelope(1,0,0), srid))
)
select ST_AsMVT(mvtgeom.*, 'zzz', 4096, 'geom') as mvt from mvtgeom;

        基于APIView重写get函数,再注册urls.py

        前端访问  ip/`table_name`/`z`/`x`/`y`,eg:http://127.0.0.1:8080/getmap/zzz/2/1/1 这样就可以接收矢量切片mvt了。

from django.db import connection
from rest_framework.views import APIView
from rest_framework.response import Response

class MapView(APIView):

    def get(self, request, table, z, x, y):
        
        print(table, z, x, y,)
        table_name = table  #'zzz'
        
        # 将数据库的数据导出geojson建议不要太大,太大用 wms服务吧、或者mvt矢量切片)
        # sql = f"""select json_build_object('type', 'FeatureCollection', 'name', '{table_name}', 'features', json_agg(ST_ASGeoJSON(t.*)::json)) from {table_name} AS t """
        
        # 获取表的字段名列表
        # sql = f"""select column_name from information_schema.columns where table_name='{table_name}'"""  # where后面是string 不应被转成对象变量
        # 获取表的字段名字符串
        # sql = f"""select array_to_string(array(select column_name from information_schema.columns where table_name='{table_name}' and column_name != 'geom'), ',');"""
        # 动态矢量切片mvt   gid字段也可替换成前端传入的字段
        geom_name = 'geom'
        sql = f"""with mvtgeom as (
                select ST_AsMVTGeom(ST_Transform({geom_name}, 3857), ST_TileEnvelope({z},{x},{y})) as geom, gid
                from 
                {table_name}, 
                (select ST_SRID({geom_name}) as srid from {table_name} where {geom_name} is not null limit 1) a
                where
                ST_Intersects({geom_name}, ST_Transform(ST_TileEnvelope({z},{x},{y}), srid))
            )
            select ST_AsMVT(mvtgeom.*, '{table_name}', 4096, 'geom') as mvt from mvtgeom;"""
                
        print(sql)
        with connection.cursor() as cursor:
            cursor.execute(sql)
            results = cursor.fetchall()

        return Response(results)

        TODO

        [1] shpgeojson前端上传,后端对数据进行校验校验坐标系强制4326、等),然后采用后端代码shp、geojson导入postgres数据库中。

        [2] jwtpermission

        [3] 前端如何jwt信息 请求数据

        [1] 参考这个项目的sql代码(比国内很多博客写的强太多,如果不考虑权限等,就是部署个后端、数据库手动导入shp数据,那么直接这个开源项目即可前端采用mapboxgl类似的开源库加载api访问部署后的localhost:3000即可查看):https://github.com/tobinbradley/dirt-simple-postgis-http-api/blob/master/routes/mvt.js

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注