Please try to specify your question, it sounds too general.
However when you want to display a tilemap, one approach is to create as much sf::Sprites as the resolution can display. Then you load your resources into sf::Images and set the sprite's images accordingly.
When you move the map (tile-based), you reassign the sprite's images. For smooth movements (ergo pixel-wise), take a look at sf::View.