Standardized Zoning on Tiles

If your account is enabled with our Standardized Zoning, you have the ability to create custom raster and vector layers to display the zoning areas.

The standardized zoning tiles contain only the zoning information. You can use the standardized zoning layer in combination with a parcel layer and the Parcels + Standardized Zoning API to retrieve additional details, including zoning attributes.

Sample layer definition with standardized zoning

To create a standardized zoning tile layer, follow the steps for creating a custom layer above. In your custom layer definition, specify the zoning layer with a query for "zoning": true.

The default tile format for a custom layer is raster tiles, and you can use the format parameter in the layer request URL to change the default format for the layer to vector tiles.

POST /api/v1/sources?token=
{
  "query": {
    "zoning": true
  },
  fields: {
    "zoning": ["zoning", "zoning_type", "zoning_subtype"]
  },
  "styles": "Map { background-color: rgba(0,0,0,0); } #loveland { line-color: #69387a; }"
}

The styles property above is optional and is be used to style raster tiles.


Did this page help you?