src/mapillary/config/api/vector_tiles.py [29:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        x: float,
        y: float,
        z: float,
    ) -> str:
        """
        Contain positions of images and sequences with original
        geometries (not computed) for the layer 'overview'

        This layer offers,

        1. zoom: 0 - 5 (inclusive)
        2. geometry: Point
        3. data source: images

        With the following properties,

        1. captured_at, int, timestamp in ms since epoch
        2. id, int, ID of the image
        3. sequence_id, string, ID of the sequence this image belongs to
        4. is_pano, bool, if it is a panoramic image
        """

        return f"https://tiles.mapillary.com/maps/vtp/mly1_public/2/{z}/{x}/{y}/"

    @staticmethod
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/mapillary/config/api/vector_tiles.py [55:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        x: float,
        y: float,
        z: float,
    ) -> str:
        """
        Contain positions of images and sequences with original geometries (not computed) for the
        layer 'sequence'

        This layer offers,

        1. zoom: 6 - 14 (inclusive)
        2. geometry: LineString
        3. data source: images captured in a single collection, sorted by captured_at

        With the following properties,

        1. captured_at, int, timestamp in ms since epoch
        2. id, string, ID  of the sequence (the legacy sequence key)
        3. image_id, int, ID of the 'best' (first) image representing the sequence
        4. organization_id, int, ID of the organization this image belongs to. It can be absent
        5. is_pano, bool, if it is a panoramic sequence
        """

        return f"https://tiles.mapillary.com/maps/vtp/mly1_public/2/{z}/{x}/{y}/"

    @staticmethod
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



