src/mapillary/config/api/vector_tiles.py [138:165]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        x: float,
        y: float,
        z: float,
    ) -> str:
        """
        Contain positions of images and sequences with original geometries (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_computed_public/2/{z}/{x}/{y}/"
        )

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



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

        This layer offers,

        1. zoom: 14
        2. geometry: Point
        3. data source: images

        With the following properties,

        1. captured_at, int, timestamp in ms since epoch
        2. compass_angle, int, the compass angle of the image
        3. id, int, ID of the image
        4. sequence_id, string, ID of the sequence this image belongs to
        5. organization_id, int, ID of the organization this image belongs to. It can be absent
        6. is_pano, bool, if it is a panoramic image
        """

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

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



