Thank you for sharing these details.
To show the map and the map markers using the shortcodes, you can follow these steps:
1. Please remove the "Map" block from the page.
2. Below the search filters in the view ( where you'd like to show the map), include a "Fields and Text" block, that will hold the map shortcode.
In the simplest form, you can add the map's shortcode like this:
[wpv-map-render map_id="map-1" map_height="300px"][/wpv-map-render]
Feel free to adjust the shortcodes attributes as needed, based on this documentation:
https://toolset.com/documentation/programmer-reference/maps/maps-shortcodes/#wpv-map-render
As a result, a map will start showing at your desired place, but, it will not be linked to the view's results, yet.
3. To link the map with the view's results to show the map markers, please include another "Fields and Text" block, making sure that this block is placed within the "View Loop" block.
The shortcode for the map markers in this block will look like this:
[wpv-map-marker map_id='map-1' marker_id='marker-[wpv-post-id]' marker_field='wpcf-address'][/wpv-map-marker]
The "map_id" value in both shortcodes should be the same and the supported attributes for this map marker shortcode can be viewed here:
https://toolset.com/documentation/programmer-reference/maps/maps-shortcodes/#wpv-map-marker
This will show the map markers from the view's results using location from the custom field "address", on the map.