Link Search Menu Expand Document

Parking

Overview

The parking available for a vehicle in each city depends on the operating model of that vehicle within the city. The two primary models are Mevo Flex (dockless or free-floating) and Mevo Loop (back to base).

The full list of permitted parking spaces for each city is available on the Mevo Website.

Mevo Flex

Flex Zones (also known as Home Zones or service areas) are the geofenced polygons where it’s possible to end a Mevo Flex trip. Within any Flex Zone, any permitted parking space is somewhere Members can end their trip.

If the queried city operates using the Mevo Flex model, the GeoJSON returned from this endpoint represents the active Mevo Flex Zones as cut-outs from a polygon that fills the whole world. This is designed such that areas outside the Zones can be easily shaded when displaying them.

Mevo Loop

Loop Bases are the groups of parking spaces where Members can pick up and return vehicles. Vehicles must be returned to the same Loop Base from which they’re collected.

If the queried city operates using the Mevo Loop model, the GeoJSON returned from this endpoint includes a point for the location of each Loop Base, as well as the name of that base.

Resource

GET /public/parking/:cityName

Example Request

curl https://api.mevo.co.nz/public/parking/wellington

Response

Status: 200 OK
{
  "type": "geojson",
  "data": {
    "type": "Feature",
    "geometry": {
      "type": "Polygon",
      "coordinates": [
        [
          [-180, 90],
          [-180, -90],
          [180, -90],
          ...
        ],
        [
          [174.813131, -41.328536],
          [174.812305, -41.328514],
          ...
        ]
      ]
    }
  }
}